input:focus { background: #FFE4C4; color: black; }
        select:focus { background: #FFE4C4; color: black; }
        input.radio:focus { background: #FFE4C4; color: black; }
        input.textarea:focus { background: #FFE4C4; color: black; }
        
        input {color: black;}
        select {color: black;}
        textarea {color: black;}
        .is-disabled {
            background-color: #F8F8FF;
            color: black !important;   
        }
		
		.tbl_shadow {
/*-moz-box-shadow: 3px 3px 5px #b9b9b9;
  -webkit-box-shadow: 3px 3px 5px #b9b9b9;       
  box-shadow: 3px 3px 5px #b9b9b9;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);*/
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
   
}

.tbl_shadow1 {

 box-shadow: -1px 2px 8px 0px gray;
   
}

.tbl_shadowheader {

  box-shadow: 0px 2px 1px 0px #b9b9b9;
   
}


/*custom font*/
@import url(http://fonts.googleapis.com/css?family=Merriweather+Sans);

* {margin: 0; padding: 0;}

html, body {min-height: 100%;}

body {
font-family: "Lucida Grande","Lucida Sans Unicode", Tahoma, Sans-Serif;
font-size:	12px;
}

.breadcrumb {
	/*centering*/
	display: inline-block;
	margin-top: 1px;
	padding-bottom: 0px;
	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; 
	margin-bottom: -2px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
}

.breadcrumb a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	margin-bottom: 0px;
	line-height: 22px;
	color: white;
	/*need more margin on the left of links to accomodate the numbers*/
	padding: 5 8px 5 50px;
	padding-top: 5px;
	padding-bottom: 3px;
	background: #666;
	background: linear-gradient(#666, #333);
	position: relative;
}
/*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*/
.breadcrumb a:first-child {
	padding-left: 40px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb a:first-child:before {
	left: 14px;
}
.breadcrumb a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

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

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -18px; /*half of square's length*/
	/*same dimension as the line-height of .breadcrumb a */
	width: 36px; 
	height: 30px;
	/*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 0px rgba(0, 0, 0, 0.1), 
		3px -3px 0 0px 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;
	padding-top: 1px;
	padding-bottom: 0px;
	margin-bottom: 0px;
}
/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
	content: none;
}
/*we will use the :before element to show numbers*/
.breadcrumb a:before {
	content: '\0000a0' counter(flag);
	counter-increment: flag;
	/*some styles now*/
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	line-width: 20px;
	margin: 5px 0;
	margin-bottom: 0px;
	position: absolute;
	top: 0;
	left: 25px;
	background: #444;
	background: linear-gradient(#444, #222);
	font-weight: bold;
	padding-bottom: 0px;
}


.flat a, .flat a:after {
	background: #faf9a8;
	color: black;
	transition: all 0.5s;
}
.flat a:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
}
.flat a:hover, .flat a.active, 
.flat a:hover:after, .flat a.active:after{
	background: #0177f9;
}






hr {
border: solid #dddddd;
border-width: 1px 0 0;
clear: both;
margin: 0.71111rem 0 1.05556rem;
height: 0;
}



input#cust_email{
background-image:url(../../images/black_mail.png);
background-repeat:no-repeat;
background-position:6px;
border:1px solid #DADADA;

padding-left:25px;
height:25px;
}


input#cust_phone{
background-image:url(../../images/black_phone1.png);
background-repeat:no-repeat;
background-position:6px;
border:1px solid #DADADA;

padding-left:25px;
height:25px;
}


input#user_email{
background-image:url(../../images/black_mail.png);
background-repeat:no-repeat;
background-position:6px;
border:1px solid #DADADA;

padding-left:25px;
height:25px;
}

input#user_phone{
background-image:url(../../images/black_phone1.png);
background-repeat:no-repeat;
background-position:6px;
border:1px solid #DADADA;

padding-left:25px;
height:25px;
}

inputother{
border:1px solid #DADADA;
margin-top:40px;
}


div#container {
  display: table;
  
  /* I want the whole search box
     to be exactly this wide. */
  width: 100%;
  
  margin: 0px auto 0;
}
div#container div.cell {
  display: table-cell;
}
div#container div.cell:last-child {
  /* Makes sure this cell is only wide enough
     for the button label. */
  width: 1px;
}

input[type=search], div.button {  
  width: 100%;
  height: 35px;

  -moz-box-sizing: border-box;
  box-sizing: border-box;
  
  font-family: inherit;
  font-size: inherit;
}

input[type=search] {
  margin: 0;
  padding: 0 10px;
  border:1px solid #DADADA;
  background-color: #f8f8f8;
  
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

div.button {
  line-height: 35px;

  margin: 0;
  padding: 0 20px;

  color: #fff;
  background-color: #0177f9;
  font-weight: bold;
  
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  
  white-space: nowrap;
}



.progress > span {
position: relative;
float: left;
margin: 0 -1px;
min-width: 30px;
height: 18px;
line-height: 16px;
text-align: right;
background: #cccccc;
border: 1px solid;
border-color: #bfbfbf #b3b3b3 #9e9e9e;
border-radius: 10px;
background-image: -webkit-linear-gradient(top, #f0f0f0, #dbdbdb 70%, #cccccc);
background-image: -moz-linear-gradient(top, #f0f0f0, #dbdbdb 70%, #cccccc);
background-image: -o-linear-gradient(top, #f0f0f0, #dbdbdb 70%, #cccccc);
background-image: linear-gradient(to bottom, #f0f0f0, #dbdbdb 70%, #cccccc);
-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}


.container { }
.copyright { margin-top: 50px; font-size: 12px; text-transform: }
.copyright a { text-decoration: none; padding: 5px;background: #c0392b; color: #FFFFFF; }
.copyright a:hover { background: transparent; color: #c0392b; }

.button {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  
  padding-top: 3px;
  padding-left: 40px;
  padding-right: 10px;
  padding-bottom: 3px;
  
  position: relative;

  text-decoration: none;
  
  letter-spacing: 1px;
  margin-bottom: 15px;
  
  
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  

  -moz-box-shadow:0px 2px 2px rgba(0,0,0,0.2);
  -webkit-box-shadow:0px 2px 2px rgba(0,0,0,0.2);
  box-shadow:0px 2px 2px rgba(0,0,0,0.2);

}

.button span {
  position: absolute;
  left: 0;
  width: 30px;
  padding-left: 5px;
}

.button:hover span, .button.active span {
 
}

.button:active {
  margin-top: 2px;
  margin-bottom: 13px;

  -moz-box-shadow:0px 1px 0px rgba(255,255,255,0.5);
-webkit-box-shadow:0px 1px 0px rgba(255,255,255,0.5);
box-shadow:0px 1px 0px rgba(255,255,255,0.5);

}

.button.orange {
  background: #FF7F00;
}

.button.purple {
  background: #8e44ad;
}

.button.turquoise {
  background: #1abc9c;
}

.button.red {
  background: #e74c3c;
}

.settingfocusx {
    border: 2px solid #AA88FF;
    background-color: #9f9b9b;
}

/* ALERTS */
/* inspired by Twitter Bootstrap */

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #eed3d7;
  border-radius: 4px;
  position: absolute;
  bottom: 0px;
  right: 21px;
  /* Each alert has its own width */
  float: right; 
  clear: right;
  z-index:1000;
}

.alert-red {
  color: white;
  background-color: #DA4453;
}
.alert-green {
  color: white;
  background-color: #37BC9B;
}
.alert-blue {
  color: white;
  background-color: #4A89DC;
}
.alert-yellow {
  color: white;
  background-color: #F6BB42;
}
.alert-orange {
  color:white;
  background-color: #E9573F;
}