.font-bold{
	font-weight:bold;
}
/** Breadcrump **/
/*custom font*/

.breadcrumps {
	/*centering*/
	display: inline-block;
	box-shadow: 0px 6px 15px 1px rgba(0, 0, 0, 0.30);
	overflow: hidden;
	border-radius: 5px;
	/*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
	counter-reset: flag;
	width: 100%;
	background: #ddd;
	margin-bottom: 30px;
	
}

.breadcrumps > a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 12px;
	line-height: 36px;
	color: white;
	/*need more margin on the left of links to accomodate the numbers*/
	padding: 0 16px 0 60px;
	background: #666;
	background: linear-gradient(#666, #333);
	position: relative;
	font-weight: bold;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumps > a:first-child {
	padding-left: 55px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumps > > a:first-child:before {
	left: 14px;
}
.breadcrumps > a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

/*hover/active styles*/
.breadcrumps > a.active, .breadcrumps > a:hover{
	background: #333;
	background: linear-gradient(#333, #000);
}
.breadcrumps > a.active:after, .breadcrumps > a:hover:after {
	background: #333;
	background: linear-gradient(135deg, #333, #000);
}

/*adding the arrows for the breadcrumpss using rotated pseudo elements*/
.breadcrumps > a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -18px; /*half of square's length*/
	/*same dimension as the line-height of .breadcrumps a */
	width: 36px; 
	height: 36px;
	/*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
	transform: scale(0.707) rotate(45deg);
	/*we need to prevent the arrows from getting buried under the next link*/
	z-index: 1;
	/*background same as links but the gradient will be rotated to compensate with the transform applied*/
	background: #666;
	background: linear-gradient(135deg, #666, #333);
	/*stylish arrow design using box shadow*/
	box-shadow: 
		2px -2px 0 2px rgba(137, 137, 137, 0.4),
		3px -3px 0 2px rgba(255, 255, 255, 0.1)
	/*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
	border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.breadcrumps > a:last-child:after {
	content: none;
}
/*we will use the :before element to show numbers*/
.breadcrumps > a:before {
	content: counter(flag);
	counter-increment: flag;
	/*some styles now*/
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: 8px 0;
	position: absolute;
	top: 0;
	left: 30px;
	background: #444;
	background: linear-gradient(#444, #222);
	font-weight: bold;
	text-align:center;
	background: rgb(245, 245, 245) !important;
}


.flat > a, .flat > a:after {
	background: #ddd;
	color: rgb(87, 87, 87);
	transition: all 0.5s;
}
.flat > a:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
}

.flat > a:hover:before, .flat > a.active:before{	
	color: rgb(87, 87, 87);
}
.flat > a:hover, .flat > a.active, 
.flat > a:hover:after, .flat > a.active:after{
	background: #94B91E;
	color: #FFF;
	font-weight: bold;
}

/** FORM & TABLE Style **/

.property_wrapper > form.input-form{
	background: #F8F8F8;
	padding: 30px 30px 20px 30px;
	font: 12px Arial, Helvetica, sans-serif;
	color: #666;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border: 1px solid #ddd;
		
}
.property_wrapper table tr {
background: none;
}
.property_wrapper form h2{

	font: 24px "Trebuchet MS", Arial, Helvetica, sans-serif;
padding: 20px 0px 20px 40px;
display: block;
margin: -30px -30px 10px -30px;
color: #FFF;
background: #9DC45F;
text-shadow: 1px 1px 1px #949494;
border-radius: 5px 5px 0px 0px;
-webkit-border-radius: 5px 5px 0px 0px;
-moz-border-radius: 5px 5px 0px 0px;
border-bottom: 1px solid #89AF4C;
}
.property_wrapper table td, .property_wrapper table th {
	width: auto;
	text-align: left;
}


/** Table Style **/
.property_wrapper table, .property_wrapper td, .property_wrapper th{ border:none;}
.compared_cma_table tr td, .history_table tr td, .uploaded_cma_table tr td, .camparison-table tr td, .uploaded_cma_table, .compared_cma_table, .camparison-table { border:1.5px solid #ddd; }
.history_table, .uploaded_cma_table, .compared_cma_table, .camparison-table { width: 99.9% !important; background:#FAFAFA; }
.history_table  th, .compared_cma_table  th, .uploaded_cma_table th, .camparison-table th{ border:none; background: #E78C00; font-weight:bold; color: #fff;}
.uploaded_cma_table .td_actions a,.uploaded_cma_table .td_actions{ font-size:14px; }
.uploaded_cma_table .sortable:hover{cursor:pointer;}
.mls-import-table th{font-size:10px;}
.mls-import-table tr td{padding:5px 5px; font-size:12px;}
.mls-import-table tr td img{padding:0; margin:0;}

/** Result Page **/
#presentation-selection h2{
	font: 24px "Trebuchet MS", Arial, Helvetica, sans-serif;
	padding: 20px 0px 20px 40px;
	display: block;
	color: #FFF;
	background: #94B91E;
	text-shadow: 1px 1px 1px #949494;
	-moz-border-radius: 5px 5px 0px 0px;
	border-bottom: 1px solid #94B91E;
}

/** Property Title **/
.prop-title{font-size:20px;display:block; margin-bottom:20px;}