/*custom font*/
/*@import url(https://fonts.googleapis.com/css?family=Montserrat);*/


@font-face {
    font-family: 'helvetica_ce_35_thinregular';
    src: url('../font/helvetica_neue_ce_35_thin_0-webfont.eot');
    src: url('../font/helvetica_neue_ce_35_thin_0-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/helvetica_neue_ce_35_thin_0-webfont.woff2') format('woff2'),
         url('../font/helvetica_neue_ce_35_thin_0-webfont.woff') format('woff'),
         url('../font/helvetica_neue_ce_35_thin_0-webfont.ttf') format('truetype'),
         url('../font/helvetica_neue_ce_35_thin_0-webfont.svg#helvetica_ce_35_thinregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'helvetica_neuece_75_bold';
    src: url('../font/helveticaneuece-bold-webfont.eot');
    src: url('../font/helveticaneuece-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/helveticaneuece-bold-webfont.woff2') format('woff2'),
         url('../font/helveticaneuece-bold-webfont.woff') format('woff'),
         url('../font/helveticaneuece-bold-webfont.ttf') format('truetype'),
         url('../font/helveticaneuece-bold-webfont.svg#helvetica_neuece_75_bold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helvetica_ce_55_romanregular';
    src: url('../font/helvetica_neue_ce_55_roman_0-webfont.eot');
    src: url('../font/helvetica_neue_ce_55_roman_0-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/helvetica_neue_ce_55_roman_0-webfont.woff2') format('woff2'),
         url('../font/helvetica_neue_ce_55_roman_0-webfont.woff') format('woff'),
         url('../font/helvetica_neue_ce_55_roman_0-webfont.ttf') format('truetype'),
         url('../font/helvetica_neue_ce_55_roman_0-webfont.svg#helvetica_ce_55_romanregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*basic reset*/
* {margin: 0; padding: 0;} 

html {
	height: 100%;
	/*Image only BG fallback*/
	
	/*background = gradient + image pattern combo*/
	/*background: 
		linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6));*/
}

body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #686868; 
    line-height: 22px;
}
a{text-decoration: none; color: #000080;}
strong{font-weight: bold;}
/*form styles*/
#msform {
	width: /*70%*/ 980px;
	margin: 25px auto;
	text-align: center;
	position: relative;
}
#msform fieldset {
	background: white;
	border: 0 none;
	/*border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);*/
	padding: 20px 0px;
	box-sizing: border-box;
	width: /*80%*/ 100%;
	margin: 0 /*10%*/;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#msform input, #msform textarea {
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
    font-size: 15px;
     font-family: Arial, Helvetica, sans-serif;   
}
/*buttons*/
#msform .action-button {
	width: auto;
	background: #008000 ;
	color: white;
	border: 0 none;
	border-radius: 4px;
	cursor: pointer;
	padding: 10px 25px;
	margin: 0 5px;
    font-size: 16px;
     font-family: 'helvetica_neuece_75_bold';
    -webkit-appearance: none;
}
#msform .action-button:hover, #msform .action-button:focus {
	/*box-shadow: 0 0 0 2px white, 0 0 0 3px #000080;*/
    background: #000080;
}
/*headings*/
.fs-title {
	margin-bottom: 10px;
     color: #000080;
    font-family: 'helvetica_ce_55_romanregular';
    font-size: 22px;
    font-weight: normal;
    text-transform: uppercase
}
.fs-subtitle {
	font-weight: normal;
	margin-top:20px;
    font-weight: bold;
}
/*progressbar*/
#progressbar {
	margin-bottom: 20px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	text-transform: uppercase;
	font-size: 9px;
	width: 20%;
	float: left;
	position: relative;
    line-height: normal;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #fff;
	background: #000080;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: #dddfe7 ;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: #27AE60;
	color: white;
}


.rows{
	display: inline-block;
	clear: both;
	width: 100%;
	float: left;
	margin: 0 0 /*15px*/ 0;
	/*border-bottom: 1px solid #ccc;*/
}
ol li{list-style-type: decimal; display: list-item; clear: both;
	width:99%;
	float: left;
	margin: 0 0 0 1%;
    padding: 18px 0 16px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
}
#msform ol{display: inline-block; width: 98%; padding:0 1% 15px;}
#msform ol li input,  #msform ol li textarea{
    margin-bottom: 0;
    margin-top: 4px;
}
#msform ol li input[type="radio"]{/* -webkit-appearance: none;  */-webkit-border-radius:100px; width: auto !important; padding: 5px 7px; margin-right: 10px}
@media screen and (-webkit-min-device-pixel-ratio:0) {
    #msform ol li input[type="radio"]{padding: 0; width: 13px !important; height: 13px; border-color:#686868;}
}


.rows.finalans p{
    width: 100%;
    margin: 0 0 20px;
}
.rows.finalans ul.images{display: inline-block; width: 100%}
.rows.finalans ul.images li{width: 24.6%; display: inline-block; text-align: center; vertical-align: top;}
.rows.finalans ul.images li img{width: 100%}
.rows.finalans ul.images li h3{color: #000080; display: inline-block; padding-bottom: 5px; padding-top: 5px; font-family: 'helvetica_neuece_75_bold'; text-transform: uppercase;}
.rows.finalans ul.images li p{text-align: center}

ol li p{
	float:left;
	width: 50%;
	text-align: left;
    padding-top: 2px;
}
.rows p{
	float:left;
	width: 48%;
	text-align: left;
}
.rows input, ol li input{
	float:left;
	width: 10% !important;
}
.rows label{
	font-weight: normal;
    margin-bottom: 20px;
    display: block;
}
ol li label{
	font-weight: normal;
    display: block;
}

.ans_data{
	display:none;
}

.detailform{width: 400px; margin: 10px auto 0}

/*Header*/
.main {
    margin: 0 auto;
    position: relative;
}
.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}
.wrap:after {
    clear: both;
    content: ".";
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    overflow: hidden;
}
body .main {
    width: 980px;
}
.header-right {
    display: table;
    float: right;
    text-align: right;
    width: auto;
    padding-top: 21px;
}
#ja-header {
    background: #dddfe7 none repeat scroll 0 0;
    display: block;
    padding: 10px 0 6px;
}
#ja-header {
    position: relative;
    z-index: 10;
}

#msform h4{text-align: left; margin-bottom: 5px; font-weight: bold;}

h1.logo, div.logo-text {
    float: left;
    position: relative;
    z-index: 1;
    width: 130px;
}
h1.logo img, div.logo-text img{width: 100%}
h1.logo a span {
    position: absolute;
    top: -1000px;
}
.header-right .top-menu li::after {
    content: "|";
    padding: 0 8px;
    font-size: 14px;
}
.header-right .top-menu li {
    list-style: outside none none;
    display: inline-block;
    line-height: normal;
    font-family: 'helvetica_neuece_75_bold';
    font-size: 16px;
}
.header-right .top-menu li:last-child::after {
    display: none;
}
.header-right .top-menu a {
    color: #000080;
    vertical-align: text-bottom;
    
}

/*Footer*/
#ja-footer {
    background: #e6e6e6 none repeat scroll 0 0;
    border-top: 2px solid #000080;
    padding:10px 0;
    font-size: 12px;
    color: #000080;
}
#ja-poweredby{width:250px; float:left}

#ja-footer .ja-footnav{ margin: 5px 0; font-size:14px; line-height:24px; overflow: hidden; position: relative;}

#ja-footer .ja-footnav ul{  margin: 0 0 0 17px; }

#ja-footer .ja-footnav ul li { margin: 0;	padding: 0;  list-style:none; width: 25%; float:left; }

#ja-footer .ja-footnav ul li:first-child{ margin:0; padding:0; border:none; }

#ja-footer .ja-footnav ul li a{ color:#000080; display: list-item; list-style: disc outside none;}

#ja-footer .ja-footnav ul li a:hover{ color:#008000;}

#ja-footer .ja-copyright {
    display: block;
    float: left;
    margin-top: 25px;
    width: 100%;
}

.detaillist{display: inline-block; width: 100%; margin-bottom: 20px;}
.detaillist li{list-style-type: disc; text-align: left; margin-left: 20px; padding-bottom: 5px;}
.detaillist li:last-child{padding-bottom: 0}
#msform h6 {
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
    margin-top: 10px;
}
i{font-style: italic;}
/*****Responsive****/

@media (max-width: 1199px) {
  
    
}

@media (max-width: 991px) {
     body .main{width: 96%; margin-left:2%; margin-right: 2%}
    #msform{width: 96%; margin-left:2%; margin-right: 2%}
     
    .rows.finalans ul.images li{width: 24.5%;}
    .rows.finalans ul.images li p{}
    
     #ja-poweredby{width: 150px;}
    #ja-footer .ja-footnav ul li{width: 33%;}
}

@media (max-width: 767px) {
    .rows.finalans ul.images li {
        width: 24.4%;
    }
    
    #ja-footer .ja-copyright{margin-top: 15px;}
     #ja-footer .ja-footnav ul li{width: 50%;}
}

@media (max-width: 639px) {
    #msform fieldset {
        padding: 10px 0;
    }
    .rows.finalans ul.images li {
        width: 49.5%;
    }
    .rows.finalans ul.images li strong{font-size: 14px;}
    .fs-subtitle{margin-bottom: 20px;}
    
    .detailform{width: 100%;}
    #ja-footer .ja-footnav, #ja-footer .ja-copyright{width: 100%;}
    
    ol li{margin: 0 0 0 2%; width: 98%;}
}

@media (max-width: 479px) {
    .rows.finalans ul.images li {
        width: 49.2%;
    }
    #msform input, #msform textarea{
        margin-right: 5px
    }
    .rows.finalans ul.images li h3{font-size: 14px;}
    #progressbar{margin-bottom: 10px;}
    
    .detailform{width: 99%}
    ol li{margin: 0 0 0 5%; width: 95%; padding: 10px 0}
    ol li p{width: 100%;}
    ol li p:nth-child(2n) {
        padding-top: 10px;
    }
}