@charset "utf-8";

/* CSS Document */

.curve_textbox { 
    -webkit-border-radius: 5px; 
    -moz-border-radius: 5px; 
    border-radius: 5px; 
    border: 1px solid #848484; 
    outline:0; 
    height:25px; 
    width: 275px; 
 }
 
 .curve_image {
	display: block;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	
}

.curve_textarea {
	border: 2px solid #C2C2C2;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	height: 150px;
	width: 500px;
}

.image_textarea {
	background:#FFFFFF url(images/searchtext.png) no-repeat 85px 8px;
	border: 1px solid #CCCCCC;
	width: 500px;
	height: 150px;
}


.double_textarea {
	border: 3px double #CCCCCC;
	width: 500px;
	height: 150px;
}

.highlight_textbox { 
    border: 1px solid #c4c4c4; 
    height: 25px; 
    width: 175px; 
    font-size: 13px; 
    -moz-border-radius: 4px; 
    -webkit-border-radius: 4px; 
    border-radius: 4px; 
    -moz-box-shadow: 0px 0px 8px #d9d9d9; 
    -webkit-box-shadow: 0px 0px 8px #d9d9d9; 
	box-shadow: 0px 0px 8px #d9d9d9; 

} 

.highlight_textbox:focus { 
    outline: none; 
    border: 1px solid #7bc1f7; 
    -moz-box-shadow: 0px 0px 8px #7bc1f7; 
    -webkit-box-shadow: 0px 0px 8px #7bc1f7; 
    box-shadow: 0px 0px 8px #7bc1f7; 

}

.drop_select {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 10px #E8E8E8 inset;
    height: 30px;
    width: 110px;
}

.search_textbox { 
    background: #FFF url(../imgs/icons/search.png) no-repeat 4px 4px; 
    outline:0; 
    padding-left: 25px;
	border: 1px solid #c2c2c2;
	border-radius: 4px;
    height:25px; 
    width: 275px; 
  } 
  
  
.radio_btn {
  width: 28px;
  height: 28px;
  position: relative;
  margin: 20px auto;
  background: #fcfff4;
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
}
.radio_btn label {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 4px;
  left: 4px;
  cursor: pointer;
  background: -webkit-linear-gradient(top, #222222 0%, #45484d 100%);
  background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
}
.radio_btn label:after {
  content: '';
  width: 9px;
  height: 5px;
  position: absolute;
  top: 5px;
  left: 4px;
  border: 3px solid #fcfff4;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.radio_btn label:hover::after {
  opacity: 0.3;
}
.radio_btn input[type=checkbox] {
  visibility: hidden;
}
.radio_btn input[type=checkbox]:checked + label:after {
  opacity: 1;
}

/* end radio_btn */