/* GLOBALS */
.form-1 {
    /* Size & position */
    width: 300px;
    /*margin: 30px auto 30px;*/
    padding: 10px;
    position: relative; /* For the submit button positioning */

    /* Styles */
    box-shadow: 
        0 0 1px rgba(0, 0, 0, 0.3), 
        0 3px 7px rgba(0, 0, 0, 0.3), 
        inset 0 1px rgba(255,255,255,1),
        inset 0 -3px 2px rgba(0,0,0,0.25);
    border-radius: 5px;
    background: white; /* Fallback */
    background: -moz-linear-gradient(#eeefef, #ffffff 10%);
    background: -ms-linear-gradient(#eeefef, #ffffff 10%);
    background: -o-linear-gradient(#eeefef, #ffffff 10%);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#eeefef), color-stop(0.1, #ffffff));
    background: -webkit-linear-gradient(#eeefef, #ffffff 10%);
    background: linear-gradient(#eeefef, #ffffff 10%);
}

.form-1 .field {
    position: relative; /* For the icon positioning */
}

.form-1 .field i {
    /* Size and position */
    left: 0px;
    top: 0px;
    position: absolute;
    height: 36px;
    width: 36px;

    /* Line */
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.7);

    /* Styles */
    color: #777777;
    text-align: center;
    line-height: 42px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    pointer-events: none;
}

.form-1 input[type=text],
.form-1 input[type=password] {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    /* Size and position */
    width: 100%;
    padding: 10px 18px 10px 45px;

    /* Styles */
    border: none; /* Remove the default border */
    box-shadow: 
        inset 0 0 5px rgba(0,0,0,0.1),
        inset 0 3px 2px rgba(0,0,0,0.1);
    border-radius: 3px;
    background: #f9f9f9;
    color: #777;
    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -ms-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
}

.form-1 input[type=text] {
    margin-bottom: 10px;
}

.form-1 input[type=text]:hover ~ i,
.form-1 input[type=password]:hover ~ i {
    color: #52cfeb;
}

.form-1 input[type=text]:focus ~ i,
.form-1 input[type=password]:focus ~ i {
    color: #42A2BC;
}

.form-1 input[type=text]:focus,
.form-1 input[type=password]:focus,
.form-1 button[type=submit]:focus {
    outline: none;
}

.form-1 .submit {
    /* Size and position */
    width: 65px;
    height: 65px;
    position: absolute;
    top: 17px;
    right: -25px;
    padding: 10px;
    z-index: 2;

    /* Styles */
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 
        0 0 2px rgba(0,0,0,0.1),
        0 3px 2px rgba(0,0,0,0.1),
        inset 0 -3px 2px rgba(0,0,0,0.2);
}

.form-1 .submit:after {
    /* Size and position */
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: -2px;
    left: 30px;

    /* Styles */
    background: #ffffff;
    
    /* Other masks trick */
    box-shadow: 0 62px white, -32px 31px white;
}

.form-1 button {
    /* Size and position */
    width: 100%;
    height: 100%;
    margin-top: -1px;

    /* Icon styles */
    font-size: 1.4em;
    line-height: 1.75;
    color: white;

    /* Styles */
    border: none; /* Remove the default border */
    border-radius: inherit;
    background: #52cfeb; /* Fallback */
    /*background: -moz-linear-gradient(#52cfeb, #42A2BC);
    background: -ms-linear-gradient(#52cfeb, #42A2BC);
    background: -o-linear-gradient(#52cfeb, #42A2BC);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#52cfeb), to(#42A2BC));
    background: -webkit-linear-gradient(#52cfeb, #42A2BC);
    background: linear-gradient(#52cfeb, #42A2BC); */
  /*  background: #013777;*/
  background: #1759D4;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.3),
        0 1px 2px rgba(0,0,0,0.35),
        inset 0 3px 2px rgba(255,255,255,0.2),
        inset 0 -3px 2px rgba(0,0,0,0.1);

    cursor: pointer;
}

.form-1 button:hover,
.form-1 button[type=submit]:focus {
    background: #52cfeb;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.form-1 button:active {
    background: #42A2BC;
    box-shadow: 
        inset 0 0 5px rgba(0,0,0,0.3),
        inset 0 3px 4px rgba(0,0,0,0.3);
}

/*******************************/


body.ie6 .form-1,
body.ie7 .form-1,
body.ie8 .form-1 {	
	padding: 10px;
	text-align: center; 
	width: 300px;
	position: relative;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	box-shadow: 
        0 0 1px rgba(0, 0, 0, 0.3), 
        0 3px 7px rgba(0, 0, 0, 0.3), 
        inset 0 1px rgba(255,255,255,1),
        inset 0 -3px 2px rgba(0,0,0,0.25);
	border-radius: 5px;
	background: white;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#eeefef), to(#ffffff));
	background: -webkit-linear-gradient(#eeefef, #ffffff 10%);
	background: -moz-linear-gradient(#eeefef, #ffffff 10%);
	background: -ms-linear-gradient(#eeefef, #ffffff 10%);
	background: -o-linear-gradient(#eeefef, #ffffff 10%);
	background: linear-gradient(#eeefef, #ffffff 10%);
	-pie-background: linear-gradient(#eeefef, #ffffff 10%);
	behavior: url(../pie/PIE.htc);
	
	zoom: 1;
   filter: progid:DXImageTransform.Microsoft.Shadow(Color=#cccccc, Strength=5, Direction=0),
         progid:DXImageTransform.Microsoft.Shadow(Color=#cccccc, Strength=5, Direction=90),
         progid:DXImageTransform.Microsoft.Shadow(Color=#cccccc, Strength=5, Direction=180),
         progid:DXImageTransform.Microsoft.Shadow(Color=#cccccc, Strength=5, Direction=270);
	
}

body.ie6 .form-1 input[type=text],
body.ie6 .form-1 input[type=password],
body.ie7 .form-1 input[type=text],
body.ie7 .form-1 input[type=password],
body.ie8 .form-1 input[type=text],
body.ie8 .form-1 input[type=password] {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    /* Size and position */
    width: 100%;
    padding: 10px 18px 10px 45px;

    /* Styles */
    border: none; /* Remove the default border */
    box-shadow: 
        inset 0 0 5px rgba(0,0,0,0.1),
        inset 0 3px 2px rgba(0,0,0,0.1);
    border-radius: 3px;
    background: #f9f9f9;
    color: #777;
    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -ms-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
    
    zoom: 1;
   filter: progid:DXImageTransform.Microsoft.Shadow(Color=#cccccc, Strength=5, Direction=0),
         progid:DXImageTransform.Microsoft.Shadow(Color=#cccccc, Strength=5, Direction=90),
         progid:DXImageTransform.Microsoft.Shadow(Color=#cccccc, Strength=5, Direction=180),
         progid:DXImageTransform.Microsoft.Shadow(Color=#cccccc, Strength=5, Direction=270);
}


body.ie6 .form-1 .field i,
body.ie7 .form-1 .field i,
body.ie8 .form-1 .field i {
	
	border-right: 1px solid #c2c2c2;
	margin-top: 5px;
	
}

/**************************************************/
.bodyContainer {
	width: 850px;
	margin: 0 auto;
}
#Madison General InsuranceLogo {
	margin: 0 auto 0 auto;
}
#bannerLogo {
	width: 100%;
	height: auto;
}
.cols33 {
	width: 33%;
	padding: 5px;
	float: left;
}

.cols66 {
	width: 66%;
	padding: 5px;
	float: left;
}

.loginBody {
	padding: 10px;
	background: #EDECF1;
}
.imageSize {
	width: 100%;
	height: 41vh;
	max-height: 41vh;
	max-width: 100%;
	margin: 0 auto;
}
.imageSizeIE {
	width: 100%;
	height: 200px;
}
.imageSize1 {
	width: 100%;
	height : 100%;
	max-height: 100%;
	max-width: 100%;
	margin: 0 auto;
}
.imageSize1IE {
	width: 364px;
	height: 200px;
}
.subBody {
	padding: 10px;
	background: #FFFFFF;
}
.loginMain {
	/*background: #013777;*/
	margin-top: 10px;
	background: #1759D4;
}

.rEdge {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px; /* future proofing */
	-khtml-border-radius: 10px; /* for old Konqueror browsers */
}

.pullLeft {
	float: left;
}
.pullRight {
	float: right;
}

/**************************/

#emiratesLogo {
	width: 100%;
    height: auto;
    margin: 0 auto;
}
.ielogo {
	/*width: 850px;
	margin-left: auto;
	margin-right: auto;*/
}
.logonBg {
	/*background: url(../images/loginIEBg.png) no-repeat;
	width: 850px;
	height: 485px;
	margin-left: auto;
	margin-right: auto;
	top: 0;*/
}
.logonBgC {
	background: url(../images/loginIEBgC.png) no-repeat;
	width: 850px;
	height: 485px;
	margin-left: auto;
	margin-right: auto;
	top: 0;
}
.ieForm {
	position: relative;
	top: 355px;
	left: 0px;
	width: 300px;
	text-align: left;
}
.ieField {
	margin-left: 100px;
}
.ieSubmit {
	margin-top: -60px;
	margin-left: 260px;
}
.ieLink {
	margin-top: 320px;
	margin-left: 320px;
	width: 300px;
	z-index: 9000;
}
.ieError {
	color: red; 
	font-weight: bold;
	background: #ffffff;
	margin-left: 325px;
	margin-top: -115px;
	width: 250px;
}
.ieErrorC {
	color: red; 
	font-weight: bold;
	background: #ffffff;
	margin-left: 325px;
	margin-top: -50px;
	width: 250px;
}
.ieloginFooter {
	width: 850px;
	margin-left: auto;
	margin-right: auto;
}

input[type=text],
input[type=text]:hover,
input[type=text]:focus,
input[type=text]:active
{
    border: 0;
    outline: none;
    outline-offset: 0;
}

input[type=password],
input[type=password]:hover,
input[type=password]:focus,
input[type=password]:active
{
    border: 0;
    outline: none;
    outline-offset: 0;
}

/*******************************/
h3{
	color: #505050;
}
h2, h3,h4,h5,h6{
    font-weight: normal;
}
h3{ 
	background:url(../images/heading.png) repeat-x;
	 /* IE6-9 */
	border-radius:5px;
    color: #FFFEFA;
    font-family: "Trebuchet MS";
    font-size: 18px;
    font-weight: normal;
    height: 30px;
    margin: 0;
    padding: 0 0 0 8px;
    position: relative;
    text-transform: uppercase;
}

h3 span {
    background: url("../images/heading_bg.png") no-repeat scroll 10px 30px transparent;
    display: block;
    line-height: 32px;
    padding-bottom: 9px;
    padding-left: 10px; position:relative; z-index:30;color: #FFFEFA; font-size: 18px; padding-right:10px
}

#footer {
    /*background: #031b49 url(../images/footer_bg.jpg) repeat-x;
    color: #A6A6A6;
    width: 100%;
    text-align: center;
    border-top: 5px solid #f2b71d; */
    font-family: Arial;
	background: #00285E;
	font-size: 12px;
	color: #ffffff;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
	width: 100%;   
}
.footer_contact h4 {
    background: url(../images/contact_footer.jpg) no-repeat;
    margin-top: -45px;
    color: #f3b71b;
    width: 217px;
    height: 45px;
    position: relative;
    padding-top: 20px;
    font: 18px Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    margin-bottom: 0px;
    float: right;
    margin-right: 30px;
}

.footer_contact p {
	width: 217px;
	color: #ffffff;
	text-align: left;
	position: relative;
	float: right;
	margin-right: 30px;
}

.follow_us{ margin-top: 60px; margin-left: 30%; }
.follow_us h3{ font:20px Arial, Helvetica, sans-serif; color:#f0b81d; text-align:left; width:200px; float:left; background:none; padding:0; margin:0; text-transform:none}
.follow_us .follow_us_img{  width:380px}
.follow_us .follow_us_img img{ padding-right:10px; float:left}