/* For CN Responsive Web Design forms */
form {
	*/* With these codes padding and border does not increase it's width and gives intuitive style.*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	width: 90%;
}
label {
	display: block;
	font-family: "Lato", sans-serif; 
  	font-size: 14px;
  	text-align: left;
  	line-height: 150%;
  	color: #002E5C;
  	padding: 4px;
	margin-top: 15px;
}
input[type=text],input[type=email],input[type=tel],input[type=number],input[type=password],select{
	margin-bottom: 0px;
	margin-top: 5px;
	width:100%;
	padding: 15px;
	border-radius:5px;
	border:1px solid #002E5C;
	font-size: 16px;
}
.frmErr{
	color: red;
}
.RWDFormLabelValue{
	margin-top: 10px;
	margin-left: 15px;
}
.RWDFormLabelValue ol {
	margin-top: 10px;
	margin-left: 25px;
}
.rwdbutton {
	margin-top: 25px;
	margin-bottom: 20px;
	width:100%;
	padding: 15px;
	border-radius:5px;
	border:1px solid #002E5C;
  	background-color: #002E5C; 
	color: aliceblue;
	font-size:15px;
	cursor:pointer;
}
.rwdbutton:hover {
	background-color: #b78c01;
}
input[type=radio]
{
	margin: 4px 6px 10px 10px;
	float: left;
}
.radiolabel {
	display: block;
  	font-size: 14px;
  	font-weight: normal;
  	text-align: left;
  	line-height: 110%;
  	color: #002E5C;
  	padding: 4px;
	margin-top: 15px;
}
textarea{
	width:100%;
	padding: 15px;
	margin-top: 10px;
	border:1px solid #002E5C;
	border-radius:5px;
	margin-bottom: 5px;
	resize:none;
	font-size: 16px;
	overflow-y: visible;
}
input[type=text]:focus,input[type=tel]:focus,input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,textarea:focus,select:focus,input[type=text]:hover,input[type=tel]:hover,input[type=email]:hover,input[type=number]:hover,input[type=password]:hover,textarea:hover,select:hover{
  	border-color: #b78c01;
	font-size: 16px;
}
a.tooltip {
    	outline: none;
        text-decoration: none;
  	font-weight: normal;
        position: relative;
	margin-left: 5px;
	margin-top: 5px;
}
a.tooltip strong {
	line-height: 30px;
}
a.tooltip > span {
	width: 175px;
	padding: 10px 20px;
	margin-top: 0;
	margin-left: -120px;
	opacity: 0;
	visibility: hidden;
	z-index: 10;
	position: absolute;
	font-family: Arial;
	font-size: 12px;
	font-style: normal;
	border-radius: 3px;
	box-shadow: 2px 2px 2px #999;
	-webkit-transition-property: opacity, margin-top, visibility, margin-left;
	-webkit-transition-duration: 0.4s, 0.3s, 0.4s, 0.3s;
	-webkit-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
	transition-property: opacity, margin-top, visibility, margin-left;
        transition-duration: 0.4s, 0.3s, 0.4s, 0.3s;
        transition-timing-function: 
        ease-in-out, ease-in-out, ease-in-out, ease-in-out;
}
/*a.tooltip > span:hover,*/
a.tooltip:hover > span {
	opacity: 1;
	text-decoration: none;
	visibility: visible;
	overflow: visible;
	margin-top: 50px;
      	display: inline;
	margin-left: -90px;
}
a.tooltip span b {
	width: 15px;
	height: 15px;
	margin-left: 40px;
	margin-top: -19px;
	display: block;
	position: absolute;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-box-shadow: inset -1px 1px 0 #fff;
	-moz-box-shadow: inset 0 1px 0 #fff;
	-o-box-shadow: inset 0 1px 0 #fff;
	box-shadow: inset 0 1px 0 #fff;
	display: none\0/;
	*display: none;
} 
a.tooltip > span {
	color: #000000; 
	background: #FBF5E6;
	background: -webkit-linear-gradient(top, #FBF5E6, #FFFFFF);
	background: linear-gradient(top, #FBF5E6, #FFFFFF);	    
	border: 1px solid #CFB57C;	     
}  
a.tooltip span b {
	background: #FBF5E6;
	border-top: 1px solid #CFB57C;
	border-right: 1px solid #CFB57C;
}
@media all and (max-width: 550px) {
	/* define mobile specific styles come here */
	.rwdformimage {
		width: 95%;
	}
}
