/* CSS Document */
html, body{
  	font-family: 'Open Sans', sans-serif;
    font-size: 100%;
	transition: background-color 0.5s ease;
  	background: #fff url(../images/pattern_bg.png) left repeat;
	margin:0px;
	padding:0px;
	text-align:center;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

ul{
	list-style:none;
	margin:0px;
	padding:0px;
}

body a{
	font-size:15px;
	text-decoration:none;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	
}

a:hover{
	text-decoration:underline;
	
}

h1,h2,h3,h4,h5,h6{
	margin:0px;
	padding:0px;
}

ul, ol{
	margin:0px;
	padding:0px;
}

img{
	border-width:0px;
}

.full{
	width:100%;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}



.clear{
	clear:both;
}

::-webkit-scrollbar {
  width: 6px; 
   background-color:#CCCCCC;
  -webkit-border-radius: 80px;
}
::-webkit-scrollbar:hover {
  background-color: rgba(0,0,0,0.61);
}

::-webkit-scrollbar-thumb:vertical {
  background: #CC9933;
  -webkit-border-radius: 80px;
}
/*::-webkit-scrollbar-thumb:vertical:active {
  background: rgba(0,0,0,0.61);
  -webkit-border-radius: 80px;
}*/


/*=================header=====================*/

header{
	width:100%;	
}

.top{
	width:100%;
	background:#333;
	height:5px;	
}

.header{
	width:100%;	
	background:rgba(255,255,255,0.9);
	padding:5px 0px;
}

.header .logo{
	height:90px;
	float:left;	
}

.header .name{
    height: 48px;
    float: left;
    margin-left: 10px;
    margin-top: 2%;
}

.header .right{	
	float:right;
}

.call{
	display: inline-block;
    vertical-align: top;
	background:#333;
	padding:5px;
	margin-top:-5px;
	border-bottom-left-radius:8px;	
	border-bottom-right-radius:8px;
}

.call .call_col{
	display:table-cell;
	vertical-align:top;
	padding:4px;
	border-right:1px solid #CCC;
	font-size:13px;
	color:#FFF;	
}

.call .call_col:last-child{	
	border-right:0px solid #CCC;
}

.social{
	display: inline-block;
    margin-bottom: 5px;
    vertical-align: top;
    margin-top: -5px;
}

.social .social_col{
	display:table-cell;
	vertical-align:top;
	float:right;
	margin-top:3px;
	border-radius:100%;	
	margin-right:8px;
	border:1px solid #CCC;
}

.social .social_col img{
	width:28px;
	height:auto;
	border-radius:100%;	
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

.social .social_col:hover img{
	background:#C9F911;	
}

/*================top-link=================*/

.top-link{
	background: #edbf39;
    padding: 6px 0px;
    margin-top: 7px;
}

.top-link li{
	display: inline-block;
    border-right: 1px solid #5f5f5f;
    padding: 5px 13px 5px 7px;
}

.top-link li:last-child{
    border-right: 0px solid #edbf3b;
}

.top-link li a{
	color: #750000;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}

.top-link li a:hover{
	color: #333333;
}

/*================menu=================*/

.menu{
	width:100%;
	text-align:left;
	background: -webkit-linear-gradient(rgb(208, 234, 89) , rgb(122, 174, 76)); /* For Safari 5.1 to 6.0 */
  	background: -o-linear-gradient(rgb(208, 234, 89) , rgb(122, 174, 76)); /* For Opera 11.1 to 12.0 */
  	background: -moz-linear-gradient(rgb(208, 234, 89) , rgb(122, 174, 76)); /* For Firefox 3.6 to 15 */
  	background: linear-gradient(rgb(208, 234, 89) , rgb(122, 174, 76)); /* Standard syntax */
	//border-right:1px solid #CCC;	
	overflow:hidden;
}

.menu ul{
	margin:1px 0px;
	padding:0px;	
}

.menu ul li{
	//line-height:10px;
	display:table-cell;
	border-right:1px solid #FFF
}

.menu ul li:hover{
	background:#1C4501;
}

.menu ul > li:hover > a{
	color:#FFF;	
}

.menu ul li a{
	display:block;
	font-size:13px;
	padding:13px 18px;
	color:#1C4501;
	text-decoration:none;
}

.menu ul li a:hover{
	color:#FFF;	
}

.menu ul .menu_active > a{
	color:#FFF;	
	background:#1C4501;
}

.menu ul ul{
	min-width:200px;
	padding:5px;
	background:#FFF;
	position:absolute;
	z-index:5;
	margin-top:-1px;
	visibility:hidden;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	
}



.menu ul li:hover ul{
	/* Chrome, Safari, Opera */
    -webkit-animation-name: left-ani;
    -webkit-animation-duration: 0.2s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: alternate;
    /* Standard syntax */
	
    animation-name: left-ani;
    animation-duration: 0.2s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: alternate;
}

@-webkit-keyframes left-ani {
    from { margin-left:50px; }
    to { margin-left:0px;}
}
/* Standard syntax */
@keyframes left-ani {
   from { margin-left:50px; }
    to { margin-left:0px;}
}

.menu ul ul li{
	display:block;	
}

.menu ul ul li a{
	padding:10px;
	display:block;	
	line-height:18px;		
}

/*================slide=================*/

#slide{
	width:100%;	
	transition:1.5s all;
	-webkit-transition:1.5s all;
	-moz-transition:1.5s all;
	-o-transition:1.5s all;
	-ms-transition:1.5s all;
	border-bottom:2px solid #333;
}

#slide ul{
	width:0px;
	height:0px;
	overflow:hidden;	
}

#slide .cover{
	width:100%;
	position:absolute;
	z-index:1;
	background:url(../images/pettern.png) top repeat;	
}

#slide .arrow_left{
	width:30px;
	height:30px;
	background:url(../images/left-car-gen.jpg) center no-repeat;
	cursor:pointer;
	position:absolute;
	margin-top:150px;
	left:10px;
	z-index:4;	
	opacity:0.7;
}

#slide .arrow_left:hover{	
	opacity:1.0;
}

#slide .arrow_right{
	width:30px;
	height:30px;
	background:url(../images/right-car-gen.jpg) center no-repeat;
	cursor:pointer;
	position:absolute;
	margin-top:150px;
	right:10px;
	z-index:4;	
	opacity:0.7;
}

#slide .arrow_right:hover{	
	opacity:1.0;
}

.slide{
	width:100%;
		
}

.slide img{
	width:100%;	
}

/*====================home mid contant===================*/

.home_move {
    background: rgba(31,30,30,0.9);
    padding: 20px 0px;
    min-height: 10px;
    overflow: hidden;
    box-shadow: 5px 5px 5px 5px #000;
}

.home_move h1{
	width:80%;
	margin:0 10%;	
	text-align:center;
	font-size:22px;
	line-height:30px;
	color:#FFF;
	font-style:italic;
	letter-spacing:1px;
	word-spacing:2px;
	visibility:hidden;
}

.home_move .readmore{
	padding:10px 30px;
	/*background:#FFF;*/
	color:#40800F;	
	font-size:14px;
	border-radius:5px;
	text-decoration:none;
}

.home_move .readmore:hover{
	background:#5A9641;
	color:#FFF;
}


/*====================mid_col2============*/


.mid_col2{
	/*width:100%;	*/
	padding:30px;
	background:#fff;
}

.mid_col2 .left {
    width: 28%;
    display: inline-block;
    vertical-align: top;
    margin-left: 25px;
    padding-right: 25px;
}

.mid_col2 .right{
	width:65%;	
	display:inline-block;
	vertical-align:top;
	text-align:left;
}

.mid_col2 .col{
	width:90%;	
	text-align:left;
}

.mid_col2 span {
    text-align: left;
    font-size: 10px;
    line-height: 15px;
    color: #fff;
}

.mid_col2 p{
	display:block;
	float:left;
	color:#333;
	font-size:14px;
	line-height:23px;
	text-align:justify;
	margin-bottom:0px;
	margin-top:10px;
}

.mid_col2 img{
	width:140px;
	float:right;
	margin:0 0 5px 10px;
	border-radius:8px;
	box-shadow:5px 6px 7px;	
}

.mid_col2 h1{
	width:100%;
	color:#060;
	font-weight: 800;
	font-size:22px;
	line-height:40px;
	margin-bottom:20px;	
}

.mid_col2 ul{
	list-style:outside;
	list-style-type:circle;
	margin-left:20px;
}

.mid_col2 ul li{
	font-size:13px;
	line-height:22px;
	color:#333;
	text-align:justify;
	padding-left:5px;
}

.mid_col2 .readmore{
	padding:0px;
	border:0px;	
	float:right;
	margin-right:30px;
}

.mid_col2 .readmore a{
	display:block;
	color:#063;
	font-size:14px;
	font-weight:bold;
}

.mid_col2 .readmore:hover a, .mid_col2 .readmore:hover{
	background:transparent;
	color:#F90;
}

.mid_col2 table{
	width:100%;
	
}

.mid_col2 table tr{
	color:#666;
	font-size:12px;
}

.mid_col2 table tr td a{
	color:#090;	
}

.mid_col2 table tr td a:hover{
	color:#CCC;	
}

.mid_col2 table tr:first-child{
	background-color:#424241;
	color:#FFF;
	font-size:13px;
}



/*====================== Gallery ========================*/


.work{
	width: 100%;
    background: #900 url(../images/service.png) top no-repeat;
    background-size: 100%;
    padding: 20px 0px;
    position: relative;
	overflow:hidden;
}

.work h1{
	display: block;
    text-align: left;
    font-size: 32px;
    text-transform: uppercase;
    line-height: 50px;
    color: #FFF;
    font-weight: bold;
    margin-bottom: 30px;
	margin-left: 10px;	
}

.work .work-inner{
	margin: 10px;
}

.work .work-col{
	width: 33.33%;
    float: left;
	margin-bottom: 12px;
}

.work .work-col .img{
	display: block;
    position: relative;
	overflow:hidden;
    max-height: 150px;
}

.work .work-col .img img{
	width: 100%;
    height: auto;
	
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

.work .work-col h3{
    display: block;
    vertical-align: middle;
    padding: 9px 10px;
    text-align: center;
    color: #477900;
    margin: 0;
    font-size: 17px;
    border: 1px solid #f5f5f5;
    min-height: 40px;
}

.work .work-col .bottom-box{
	position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.54);
	overflow:hidden;
}

.work .work-col .bottom-box p{
	display: block;
    vertical-align: middle;
    padding: 15px 50px 15px 10px;
    text-align: left;
    color: #FFF;
    margin: 0;
	font-size: 15px;
}

.work .work-col .bottom-box .readmore{
	position: absolute;
    width: 50px;
    height: 100%;
    right: 0;
    bottom: 0;
    vertical-align: middle;
	top:100%;
	
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

.work .work-col:hover .bottom-box .readmore{
	top:0;	
}

.work .work-col .bottom-box .readmore a{
	width: 100%;
    height: 100%;
    display: block;
    vertical-align: middle;
    background: #911d1d;
}

.work .work-col .bottom-box .readmore a:hover{
	background:#FFF;	
}

.work .work-col .bottom-box .readmore a i{
	margin: 0;
    vertical-align: middle;
    font-size: 40px;
    color: #FFF;
    margin-top: 11%;
}

.work .work-col .bottom-box .readmore a:hover i{
	color:#911d1d;
}



.gallery{
	background:none;
}

.gallery .zoom{
	position:absolute;
	display:block;
	vertical-align:middle;
	text-align:center;
	width:100%;	
	height:101%;
	left:0;
	top:0;
	background:rgba(148, 147, 147, 0.62);
	visibility:hidden;
}

.gallery .work-col:hover .zoom{
	visibility:visible;
}

.gallery .zoom i{
	font-size: 40px;
    margin-top: 26%;
    color: #9e2020;
}

.gallery .work-col:hover .img img{	
	transform:scale(1.5,1.5);
}


/*================Quick_link=============*/

.Quick_link{
	width:100%;
	background:url(../images/quick_link_bg.jpg) left no-repeat;
	background-size:100% 100%;	
}

.Quick_link .Quick_link_cover{
	width:100%;
	padding:60px 0px;
	background:rgba(218,220,222,0.86);	
}

.Quick_link .Quick_link_cover h1{
	width:100%;
	color:#000;
	font-size:40px;
	line-height:50px;
	margin-bottom:40px;
}

.Quick_link .Quick_link_cover .Quick_link_col{
	width:22%;
	vertical-align:top;
	display:inline-block;	
}

.Quick_link .Quick_link_cover .Quick_link_col img{
	width:100%;
	height:auto;	
}

/*================Feedback===================*/

.feedback{
	display:block;	
	margin:0px 5px 5px 5px;
}

.feedback h1{
	width:100%;
	color:#090;
	font-size:22px;
	line-height:40px;	
}

.feedback div{
	margin-bottom:10px;	
}

.feedback div span{
	font-size:13px;
	line-height:18px;
	//float:right;
	z-index:999;
	position:absolute;
	top:0;
	right:5px;	
}

.feedback input[type="text"]{
	width:94%;
	height:35px;
	border:1px solid #E3E5E7;
	padding:0 5px;
}

.feedback input[type="button"], .feedback input[type="submit"]{
	width:100px;
	height:35px;
	border:1px solid #E3E5E7;
	cursor:pointer;
	color:#333;
	border-radius:4px;
}

.feedback input[type="button"]:hover, .feedback input[type="submit"]:hover{
	color:#093;
	border-radius:2px;
}

.feedback textarea{
	width:94%;
	height:100px;
	border:1px solid #E3E5E7;
	padding-left:5px;
	padding-right:5px;
}


/*=================course===================*/

.courses{
	width:100%;
	padding:10px 0px;	
}

.courses ul{
	display:block;
}

.courses ul li{
	margin-bottom:10px;
	border-bottom:1px solid #CCC;
}

.courses ul li a{
	padding:0 10px;
	color:#333;
	font-size:12px;
}

.courses ul li a:hover{
	color:#CCC;
}

/*================other================*/

.other{
	width:100%;
	padding:30px 0px;
	background:rgba(255,255,255,0.9);
	text-align:left;	
}

.other img{
	width:40%;
	height:auto;
	display:inline-block;
	vertical-align:bottom;
	margin-right:3%
}

.other .other_col{
	width:23%;
	display:inline-block;
	vertical-align:top;	
	margin-right:6%
}

.other .other_col:last-child{
	margin-right:0px;	
}

.other .other_col h1{
	width:100%;
	color:#333;
	font-size:22px;
	line-height:40px;
	margin-bottom:20px;	
}

.other .other_col ul{
	list-style:outside;
	list-style-type:circle;
	margin-left:20px;
}

.other .other_col ul li{
	font-size:13px;
	line-height:22px;
	color:#333;
	text-align:left;
	padding-left:5px;
}

.other .other_col ul li a{
	font-size:13px;
	line-height:22px;
	color:#333;
	text-align:left;
}

.other .other_col ul li a:hover{
	color:#999;
}

/*================footer================*/

.footer{
	width:100%;	
}

.footer .up{
	width:100%;	
	padding:20px 0px 40px 0px;	
	border-top:1px solid #DFDFDF;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	background:rgba(31,30,30,0.9);
}

.footer .up .col{
	//width:18%;
	margin-left:3%;
	display:inline-block;
	vertical-align:top;
			
}

.footer .up .col:first-child{
	width:100%;	
	margin-left:0px;
	margin-bottom:20px;
}

.footer .up .col:first-child h1{
	width:80%;
	margin:0 10%;	
	text-align:center;
	font-size:15px;
	line-height:30px;
	color:#CBE85D;
	font-style:italic;
	letter-spacing:1px;
	word-spacing:2px;	
}

.footer .up .col p{
	width:100%;
	text-align:left;	
	font-size:12px;
	line-height:20px;
	color:#CCC;	
}

.footer .up .col h1{
	width:100%;
	text-align:left;
	font-size:15px;
	line-height:30px;
	color:#FFF;	
}

.footer .up .col ul{
	margin:0px;
	padding:12px 0px 0px 0px;
	display:block;	
}

.footer .up .col ul li{
	//display:block;	
	//border:1px solid #fff;
	text-align:left;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

.footer .up .col ul li a{
	display:block;
	padding:1px 5px;
	color:#CCC;
	text-decoration:none;
	font-size:13px;
	//font-weight:bold;
	line-height:18px;
	text-align:left;	
}

.footer .up .col ul li:hover a{
	color:#666;
}

.footer .down{
	width:100%;	
	padding:10px 0;	
	background: -webkit-linear-gradient(rgb(208, 234, 89) , rgb(122, 174, 76)); /* For Safari 5.1 to 6.0 */
  	background: -o-linear-gradient(rgb(208, 234, 89) , rgb(122, 174, 76)); /* For Opera 11.1 to 12.0 */
  	background: -moz-linear-gradient(rgb(208, 234, 89) , rgb(122, 174, 76)); /* For Firefox 3.6 to 15 */
  	background: linear-gradient(rgb(208, 234, 89) , rgb(122, 174, 76)); /* Standard syntax */
}

.footer .down .term{
	//width:100%;
	float:left;
	font-size:13px;
	line-height:20px;
	color:#063;
	text-align:left;
	margin-left:60px;
}

.footer .down .powered{
	float:right;
	font-size:12px;
	line-height:20px;
	color:#063;
	text-align:right;
	margin-right:10px;
}

.footer .down .powered a{
	font-size:12px;
	line-height:20px;
	color:#666;
	margin-left:10px;
	text-decoration:none;
}

.footer .down:hover .powered, .footer .down:hover .term{
	color:#036;
}

.footer .down .powered a:hover{
	text-decoration:none;
	color:#033;	
}

/*=================scroll top=================*/

.top1{
	width:auto;	
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	position:fixed;
	cursor:pointer;
	right:5px;
	bottom:40px;
	z-index:10;
}

.top1:hover{
	background:#063;	
}

.top1 img{
	width:50px;
	height:50px;	
}




/*====================inner-slide============*/

.inner-slide{
    width: 100%;
    position: relative;
}

.inner-slide:after{
    content: "";
    position: absolute;
    z-index: 1;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.33);	
}

.inner-slide img{
    width: 100%;
    height: auto;
}

.inner-slide .inner-box{
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.inner-slide .inner-box h2{
    display: block;
    font-size: 25px;
    text-transform: uppercase;
    color: #ffca00;
	font-weight:900;
}

.inner-slide .inner-box ul{
    display: block;
    margin-top: 18px;
}

.inner-slide .inner-box ul li{
    display: inline-block;
    padding-left: 27px;
    color: #fffdba;
    font-size: 15px;
}

.inner-slide .inner-box ul li i{
    position: absolute;
    margin-top: 0px;
    font-size: 20px;
    margin-left: -21px;
    color: #ffca00;
}

.inner-slide .inner-box ul li a{
    color: #fffee7;
    font-size: 16px;
    font-family: 'Cabin', sans-serif;
}

/*==================== Register ==================*/

.login-register{
	
}

.login-register .register-link{
    display: block;
    padding: 8px 10px;
    background: #ffcf19;
    text-align: center;
    font-size: 18px;
    color: #880506;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
}

.login-register .register-link:hover{
	 color: #383838;
	 background: #f9f4e3;
}

/*==================== exam-login ==================*/

.exam-login{
    background: #f9f4e3;
    margin-top: 20px;
    padding: 15px 0px;
    position: relative;
}

.exam-login .exam-login-inner{
    margin: 0 20px;
}

.exam-login h2{
    position: relative;
    color: #880506;
    display: block;
    padding: 14px 0px;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 21px;
	text-align:left;
}

.exam-login .exam-login-col{
    padding: 7px 0px;
    position: relative;
}

.exam-login .exam-login-col input, .exam-login .exam-login-col textarea{
    display: block;
    width: 100%;
    border: 1px solid #eaeaea;
    padding: 7px 10px;
    font-size: 14px;
    box-sizing: border-box;
}

.exam-login .exam-login-col select{
    display: block;
    width: 100%;
    border: 1px solid #eaeaea;
    padding: 8px 10px;
    font-size: 14px;
}

.exam-login .exam-login-col input[type="submit"]{
    display: inline-block;
    width: auto;
    padding: 7px 23px;
    background: #880506;
    color: #fdfdfd;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.exam-login .exam-login-col input[type="submit"]:hover{
    background: #cc0002;
    color: #ffca00;
}

.exam-login .exam-login-col input[type="button"]{
    display: inline-block;
    width: auto;
    padding: 7px 23px;
    background: #06C;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.exam-login .exam-login-col input[type="submit"]:hover{
    background: #999;
    color: #06C;
}

.exam-login .exam-login-col .forgot-password{
    position: absolute;
    top: 15px;
    right: 0px;
    font-size: 16px;
    color: #00689a;
}

.exam-login .exam-login-col .forgot-password:hover{
	color: #880506;
}

.exam-login .row{
    background: #f3f1f1;
    padding: 5px 0px 0;
    text-align: left;
    margin-bottom: 5px;
}

.exam-login .row h4{
    padding: 5px 13px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 900;
    color: #0f61fc;
}

.exam-login .row p{
    padding: 0 14px;
    font-size: 15px;
}

.exam-login .exam-login-col label{
    display: block;
    text-align: left;
    font-size: 12px;
    color: #232222;
    padding: 1px;
}

.exam-login .exam-login-col label span{
    color: #960000;
    font-size: 17px;
    font-weight: 900;
    margin-left: 5px;
}

.exam-login .exam-login-col strong{
    display: block;
    min-height: 28px;
    text-align: left;
    font-size: 13px;
    padding: 4px 2px;
    color: #940404;
}

.table{
	width:100%;
	border: 1px solid #efefef;
	margin-top:20px;
}

.table thead{
    background: #007fab;
    color: #ffffff;
}

.table thead th{
    text-align: center;
    border: 1px solid #e2e2e2;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    padding: 11px 0px !important;
}

.table tbody{
	
}

.table tbody tr{
    background: #e2dfdf;
}

.table tbody tr:nth-child(odd){
    background: #CCC;
}

.table tbody tr:hover{
	background: #fff;
}

.table tbody tr td{
    font-size: 14px;
    border: 1px solid #e8e8e8;
	vertical-align:middle;
}

.application-phase{
    display: block;
}

.application-phase li{
    float: left;
    width: 25%;
}

.application-phase li i{
    margin-right: 7px;
}

.application-phase li a{
    display: block;
    padding: 10px 15px;
    margin: 0 2px;
    background: #036602;
    color: #f0be02;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
	position:relative;
}

.application-phase li a:hover, .application-phase li a.active{
    background: #f5c100;
    color: #660202;
    font-weight: 900;
}

.application-phase li a.active:after{
    content: "\f0d7";
    font-family: 'FontAwesome';
    font-size: 43px;
    display: block;
    position: absolute;
    left: 45%;
    bottom: -35px;
    color: #f5c100;
}

.has-error{
    display: block;
    padding: 10px 10px 10px 49px;
    margin-bottom: 20px;
    background: #FFF;
    font-size: 14px;
    color: #920000;
    position: relative;
    text-align: left;
}

.has-error i{
    background: #920000;
    color: #FFF;
    padding: 8px 10px;
    position: absolute;
    left: 5px;
    top: 5px;
}

.exam-registration-print{
    float: right;
    display: inline-block;
    padding: 6px 13px;
    margin-bottom: 12px;
    background: #007fda;
    font-size: 17px;
    text-transform: uppercase;
    color: #fdfe00;
}

.exam-registration-print i{
    color: #f6c200;
    font-size: 17px;
    margin-right: 4px;
}

.exam-registration-print:hover{
	background: #ffca00;
	color: #000000;
}

.exam-registration-print:hover i{
    color: #005a8e;
}
