html,body{
	width:100%;
	height:100%;
	margin:0;
	padding:0;
}

@font-face{
    font-family:'Open Sans';
	src:url('../fonts/OpenSans-Regular.woff');
	font-weight:normal;
}
@font-face{
    font-family:'Open Sans';
	src:url('../fonts/OpenSans-Bold.woff');
	font-weight:bold;
}
@font-face{
    font-family:'Open Sans Light';
	src:url('../fonts/OpenSans-Light.woff');
	font-weight:normal;
}

.fontRegular{
	font-family:'Open Sans';
}
.fontLight{
	font-family:'Open Sans Light';
	font-weight:normal;
}
.fontBold{
	font-weight:bold;
}

body,td,th,textarea,p,div{
	font-family:'Open Sans';
    font-size:16px;
	color:#333;
}
body{
	background:#f0f0f0;
}
*{
	box-sizing:border-box;
	outline:none;
}

ol,ul{
	margin:8px 0;
}
li{
	margin:4px 0;
}

img{border:0;}
table{table-layout:fixed;}
h1,h2,h3{
	color:#1076BE;
	font-family:'Open Sans';
	font-weight: bold;
	margin:0 0 15px 0;
}
h2,h3{
	font-family:'Open Sans';
	color:#1076BE;
}
p{
	line-height:28px;
}
a{
	color:#0170BC;
	text-decoration:none;
}
a:hover{text-decoration:underline;}

a.site{
	color:#52a400;
	text-decoration:none;
}
a.site:hover{
	text-decoration:underline;
}

em,i{
	font-family:'Book Antiqua,Georgia,Times New Roman';
	font-size:18px;
}

input[type='text'],
input[type='tel'],
input[type='date'],
input[type='password'],
input[type='time'],
input[type='number'],
input[type='search'],
input[type='url'],
input[type='email']{
	border:1px solid #ddd;
	padding:8px;
	color:#555;
	border-radius:4px;
	box-sizing:border-box;
}

input:focus[type='text'],
input:focus[type='tel'],
input:focus[type='password'],
input:focus[type='time'],
input:focus[type='number'],
input:focus[type='search'],
input:focus[type='url'],
input:focus[type='email']{
	border-color:#3cf;
}

input[type='number']{
	width:100px;
}
input[type='tel']{
	width:150px;
}
input[class='telInd']{
	width:60px;
}
input[readonly]{
	background:#f0f0f0;
}

select{
	padding:8px;
	border:1px solid #ddd;
	box-sizing:border-box;
	border-radius:2px;
}
select:focus{
	border-color:#3cf;
}
textarea{
	border:1px solid #ddd;
	border-radius:2px;
	padding:8px;
	color:#555;
	font-size:14px;
	line-height:18px;
	box-sizing:border-box;
	overflow:auto;
	width:100%;
}
textarea:focus{
	border-color:#3cf;
}
button{
	padding:5px 10px;
	color:#222;
	background-color:#e9e9e9;
	border:1px solid #ccc;
}
button:hover{
	background-color:#B9EEFF;
	border:1px solid #3cf;
}

input[type='submit'],input[type='reset'],input[type='button']{
	padding:14px 14px;
	border-radius:2px;
	color:#fff;
	font-weight:bold;
	font-size:14px;
	border:0;
	background:#43AB48;
	margin-top:10px;
	cursor:pointer;
	text-transform:uppercase;
}

input:active[type='submit'],input:active[type='reset'],input:active[type='button']{
	background-color:#222;
	color:#fff;
	border:0;
}
table.onGridLine{
	background:#fff;
	width:100%;
	border:1px solid #ddd;
	border-radius:4px;
	margin-bottom:25px;
}
.onGridLine thead{
	background:#f0f0f0;
}
.onGridLine thead tr th{
	padding:7px 8px;
	border-bottom:1px solid #ddd;
	font-weight:bold;
	text-align:left;
	font-size:13px;
	height:22px;
}
.onGridLine tbody tr td{
	padding:7px 8px;
	border-bottom:1px solid #ddd;
	text-align:left;
	font-size:14px;
	height:22px;
}
.onGridLine tbody tr:hover{
	background:#f0f0f0;
}
.onGridLine tbody tr:active{
	background:#ddd;
}
.onGridLineCheck{
	background:#f0f0f0;
}

table.onGrid {
	background:#fff;
	width:100%;
	border-collapse:collapse;
	border-radius:4px;
	margin-bottom:25px;
}
.onGrid thead{
	background:#f0f0f0;
}
.onGrid thead th{
	padding:10px 8px;
	font-size:14px;
	text-align:left;
	border:1px solid #ddd;
}
.onGrid tbody td{
	padding:10px 8px;
	border:1px solid #ddd;
}
.onGrid tbody tr:hover{
	background:#f0f0f0;
}
.onGrid tbody tr td:hover{
	background:#d5f4ff;
}
.onGrid tbody tr td:active{
	background:#ddd;
}
.onGrid tfoot{
	background:#f0f0f0;
}
.onGrid tfoot td{
	padding:7px 8px;
	border:1px solid #ddd;
}

table.onGridEdit{
    width:100%;
    background:#fff;
    border-collapse:collapse;
    border-spacing:0;
    margin-top:10px;
}
.onGridEdit thead{
    background:#f0f0f0;
}
.onGridEdit th{
    padding:0 10px;
    height:32px;
    border:1px solid #e0e0e0;
    text-align:left;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
}
.onGridEdit td{
    padding:0 10px;
    height:32px;
    border:1px solid #e0e0e0;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
}
.onGridEdit tbody tr:hover{background:#d8f0fe;}
.onGridEdit tbody tr:active{background:#b5e2fd;}

/*.onGrid tbody tr:nth-of-type(odd){background:#f5f5f5;}*/
.pointi{
	text-overflow:ellipsis;
	white-space:nowrap;
	overflow:hidden;
	width:100%;
}

.divBlock{
	display:inline-block;
	width:100%;
	margin-top:20px;
}

.divForm{
	float:left;
	clear:both;
	width:100%;
	margin-bottom:20px;
}
.divForm div{
	padding:4px 0;
}
.divForm div input[type=text],.divForm input[type=password]{
	width:100%;
}

fieldset{
	border:1px solid #ddd;
	border-radius:6px;
	margin:15px 0;
	position:relative;
}
legend{
	border-radius:6px;
	background:#f3d617;
    padding:6px 14px;
	color:#222;
	font-size:14px;
	font-weight:bold;
}

.formCheckFloat, .formCheckBlock{
    position:relative;
    display: inline-block;
}
.formCheckFloat div{
    display:inline-block;
    margin:5px 10px 5px 0;
}
.formCheckBlock div{
    float:left;
	clear:both;
    width:100%;
    margin:5px 0;
}

.loginEspace{
	padding:20px;
}
.loginEspace div{
	margin-bottom:8px;
}
.loginEspace div a{
	display:block;
	font-size:14px;
	padding:10px 0 12px;
	text-decoration:none;
	background:#52a400;
	color:#fff;
	border-radius:2px;
}
.loginEspace div a:active{
	opacity:0.7;
}

/*<a btn*/
.abtnIco{
	float:left;
	margin:0 10px 0 0;
}
.abtnIco span{
	display:block;
	width:24px;
	height:24px;
	background-size:contain;
}

a.aBtn{
	display:inline-block;
	text-decoration:none;
	font-size:14px;
	padding:8px 12px;
	margin:0 2px 5px;
	border-radius:4px;
}

.btnSite{
	color:#fff;
	background-color:#43AB48;
}
.btnSite:active{
	background-color:#222;
	color:#fff; 
}

.btnBlue{
	color:#fff;
	background-color:#06c;
}
.btnBlue:active{
	background-color:#222;
	color:#fff; 
}

.btnOr{
	color:#222;
	background-color:#f3d617;
}
.btnOr:active{
	background-color:#222;
	color:#fff; 
}

.btnRouge{
	color:#fff;
	background-color:#c30;
}
.btnRouge:active{
	background-color:#222;
	color:#fff; 
}

.gris11{color:#b1b1b1;font-size:11px;}
.gris12{color:#b1b1b1;font-size:12px;}
.gris13{color:#b1b1b1;font-size:13px;}
.gris14{color:#b1b1b1;font-size:14px;}
.gris16{color:#b1b1b1;font-size:16px;}
.noir12{color:#000;font-size:12px;}
.noir13{color:#000;font-size:13px;}
.noir16{color:#000;font-size:16px;}
.orange11{color:#f80;font-size:11px;}
.orange12{color:#f80;font-size:12px;}
.orange13{color:#f80;font-size:13px;}
.orange14{color:#f80;font-size:14px;}
.bleu12{color:#0170BC;font-size:12px;}
.bleu13{color:#0170BC;font-size:13px;}
.bleu14{color:#0170BC;font-size:14px;}

.colorGris{color:#b1b1b1;}
.colorNoir{color:#000;}
.colorOrange{color:#f80;}
.colorRouge{color:#d32512;}
.colorBleu{color:#0170BC;}
.colorJaune{color:#f7a606;}
.colorSite{color:#3D9C3D;}
.colorSite2{color:#fcb119;}

.statut{
	display:inline-block;
	padding:5px;
	margin:0 5px 0 0;
	border-radius:50%;
}
.statut0{background:#ccc;}
.statut1{background:#ff9d1a;}
.statut2{background:#06c;}
.statut3{background:#0c0;}

.bgBlanc{background:#fff;}
.bgButtonF0{background:#f0f0f0;}
.bgButtonF2{background:#f2f2f2;}
.bgButtonF5{background:#f5f5f5;}

/*notif*/
.notif{
    position:fixed;
    top:0;
    left:0;
    right:0;
    margin:0 auto;
	width:100%;
    text-align:center;
	background:#fff;
	box-shadow: 0 0 4px #444;
    padding:12px 20px;
    color:#fff;
    font-size:16px;
    display:none;
    line-height:22px;
    z-index:1000;
}
.notif0{
	background:#f7e547;
	color:#222;
}
.notif1{
    background:#090;
}
.notif2{
    background:#d61212;
}

.padMobile{
	padding:5px 18px 0;
}
.ico_menu_mobile{
	background:url(../images/ico_menu_mobile.png) 0 0 no-repeat;
    padding:15px 15px;
}
.ico_cat{
	background:url(../images/ico_cat.png) 0 20px no-repeat;
	padding:20px 15px;
}
.ico_fb{
	background:url(../images/ico_fb.png) no-repeat 0 12px;
	padding:20px 17px;
}
.ico_tw{
	background:url(../images/ico_tw.png) no-repeat 0 12px;
	padding:20px 17px;
}
.ico_left{
	background:url(../images/ico_left.png) no-repeat 0 10px;
	padding:15px 15px;
	width:30px;
}
.ico_right{
	background:url(../images/ico_right.png) no-repeat 0 10px;
	padding:15px 18px;
}
.ico_lu{
	background:url(../images/ico_lu.png) no-repeat 0 8px;
	padding:7px 10px;
}
.ico_menudrop{
	background:url(../images/ico_menudrop.png) no-repeat 2px 8px;
	padding:7px 8px;
}
.ico_dwl{
	background:url(../images/ico_dwl.png) no-repeat 2px 8px;
	padding:7px 10px;
}
.ico_search_top{
	background:url(../images/ico_search_top.png) no-repeat 0 6px;
	padding:6px 12px;
}
.page0{
	background:url(../images/page0.png) no-repeat;
	padding:0 10px;
}
.page1{
	background:url(../images/page1.png) no-repeat;
	padding:0 10px;
}
.boxTransClose{
	background:url(../images/ico_close_blanc.png) no-repeat;
	padding:0 10px;
}

.boxTransCloseGris{
	background:url(../images/ico_close_gris.png) no-repeat center;
	padding:12px 12px;
	margin:0 -22px 0;
	position:fixed;
	z-index:50;
}
.boxTransCloseGris:active{
	background:#ddd url(../images/ico_close_gris.png) no-repeat center;
}

.ico_flash_item{
	background:url(../images/ico_flash_item.png) no-repeat 0 2px;
	padding:0 10px;
	margin-left:14px;
}
.ico_search_input{
	background:url(../images/ico_search_gris.png) no-repeat;
	background-position:98% 5px;
}
.ico_search_input:focus{
	background:#fff url(../images/ico_search_gris.png) no-repeat;
	background-position:98% 5px;
}

.ico_rate0{
	background:url(../images/ico_rate0.png) no-repeat center;
	padding:20px 10px;
}
.ico_rate1{
	background:url(../images/ico_rate1.png) no-repeat center;
	padding:20px 10px;
}

.boxTransMenuH{
	float:left;
	clear:both;
	width:100%;
	margin-bottom:10px;
	border-bottom:1px solid #d5d5d5;
}
.boxTransMenuH div{
	float:left;
	min-width:100px;
}
.boxTransMenuH div a{
	display:block;
	padding:0 10px 10px;
}

/*titleMain*/
.titleMain{
	position:relative;
	margin:0;
	font-family:'Bitter';
	font-weight:bold;
	color:#fff;
	font-size:20px;
	line-height:24px;
}
.titleMain:hover{
	text-decoration:underline;
}
.titleMain a{
	text-decoration:none;
}
.titleMainMini{
	position:relative;
	margin:0 15px 20px;
	line-height:21px;
	color:#000;
	font-size:14px;
	font-weight:bold;
}
.titleMainMini a{
	color:#fff;
}
.titleMainMini span{
	background:#f8ce27;
	padding:0 2px;
}
.titleMainMini:hover{
	text-decoration:underline;
}

.subcat{
	display:inline-block;
	width:100%;
	padding:5px 0 5px 20px;
	background:#fff;
}

input[type='button'].buttonDef{
	background:#e2e2e2;
	color:#000;
	font-size:13px;
	padding:8px 12px 10px;
	border:0;
	min-width:100px;
	margin-right:5px;
	font-weight:bold;
}
input[type='button'].buttonDef:active{
	background:#222;
	color:#fff;
}
input[type='button'].buttonRed{
	background:#fff;
	color:#fff;
	font-weight:bold;
	font-size:13px;
	padding:8px 12px 10px;
	background:#df0000;
	min-width:100px;
	margin-right:5px;
	border:0;
}
input[type='button'].buttonRed:active{
	background:#222;
	color:#fff;
}
/***/

.loginPage{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#111 url(../login/images/bg_welcome1.jpg) no-repeat center;
    background-size:cover;
}

.loginForm{
    border-radius:4px;
    background:#fff;
    padding:20px 30px;
}
.loginForm input[type='text'], .loginForm input[type='password'], .loginForm select{
    width:100%;
    padding:10px 5px;
}
.loginForm input[type='submit']{
    width:100%;
    padding:14px 5px;
}

.hideTag{display:none;}
.openTag{display:inline-block;}

.catIco{
	float:left;
	width:20px;
	height:20px;
	margin:0 12px 0 0;
}

.btnMenuDrop{
	position:absolute;
	right:0;
	font-size:14px;
	z-index:100;
	display:none;
}

.btnMenuNext{
    position:absolute;
    right:0;
    top:5px;
    font-size:11px;
    z-index:20;
    display:block;
    cursor:pointer;
    padding:10px 15px;
    color:#fff;
}

.docsLinks{
	padding:15px;
	border-radius:5px;
	border:1px solid #06c;
	border-left:5px solid #06c;
	margin:20px 0;
}
.docsLinks a{
	display:block;
    padding:3px 10px;
}

.blockSitePad{
	float:left;
	clear:both;
	width:100%;
	padding:0 20px;
}

/*Box Trans*/
#screenLoading{
	position:fixed;
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height:100%;
	background:rgba(0, 0, 0, 0.3);
	z-index:1100;
	visibility: hidden;
}

#loading{
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height:100%;
}

.swiper-slide .swiperImg{
	background-repeat:no-repeat center;
	background-size:cover;
	width:100%;
	height:100%;
	display:block;
	position:relative;
}

.blockTitle{
	text-align:center;
	margin:0 0 10px;
}
.blockTitle h1, .blockTitle h2{
	text-align:center;
	color:#222;
	margin:5px;
}
.blockTitle hr{
	display:inline-block;
	width:70px;
	height:5px;
	border:0;
	background:#f3d617;
}

/*PC*/
@media(min-width: 768px){

	@keyframes fadeIn { 
		from { opacity: 0; } 
	  }
	  
	.animate-flicker {
		animation: fadeIn 1s infinite alternate;
	}

	#flashDate{
		background:#df0000;
		color:#fff;
		text-align:center;
		height:40px;
		line-height:40px;

		transition: background-color 2s ease-in;
	}

	.flex100{
		display:flex;
		flex-direction: row;
		width:100%;
	}

	#diapoSlider{
        max-width:1600px;
    }
	#diapoSlider img{
        max-height:500px;
    }

	.formCenter{
		width:800px;
		border:1px solid #e5e5e5;
		border-radius:5px;
		padding: 20px 25px;
		background:#fff;
	}

	.formLogin{
		width:350px;
		border:1px solid #e5e5e5;
		border-radius:5px;
		padding: 20px 25px;
		background:#fff;
	}

	.formLogin .sectionLabel{
		padding:5px 0;
	}
	.formLogin section input{
		width:100%;
	}

	#mainPanel{
		float:left;
		clear:both;
		width:100%;
		padding:0 0 20px 0;
		min-height:100%;
	}

	/*MneuHeadTop*/
	#menuHeadBar{
		float:left;
		clear:both;
		width:100%;
		background:#42AC48;
		text-align:center;
	}

	#menuHead{
		float:left;
	}
	#menuHead ul,#menuHead li{
		list-style-type:none;
		margin:0;
		padding:0;
	}
	#menuHead ul{
		float:left;
		position:relative;
		z-index:10;
	}
	#menuHead ul li > ul{
		visibility: hidden;
		opacity: 0;
		position: absolute;
		top: 100%;
		left: 0;
		transform: translateY(-2em);
		transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
		width:200px;
	}
	#menuHead ul li{
		position:relative;
		float:left;
    }
    #menuHead ul li:hover{
		background:#338d38;
    }
    /*#menuHead ul li:hover a{
        color:#fff;
    }*/
	#menuHead ul li a{
		padding:18px 22px;
		display:block;
		color:#fff;
        font-size:14px;
		text-decoration:none;
		text-align:center;
		text-transform: uppercase;
		font-weight:bold;
	}
	#menuHead ul li a:hover{
        background:#338d38;
	}
	#menuHead ul li a:active{ 
		background:#222;
		color:#fff;
	}
	#menuHead ul li{
		position:relative;
	}
	#menuHead ul li ul li:hover{
		background:#ccc;
	}
	#menuHead ul li ul li a{
		text-align:left;
		padding:10px 12px;
		font-size:14px;
		display:block;
		text-decoration: none;
        font-weight:normal;
        text-transform: none;
		color:#222;
	}
	#menuHead ul li ul li a:hover{
		background:#ccc;
	}
	#menuHead ul li ul li a:active{
		background:#222;
	}
	#menuHead ul li ul li{
		float:left;
		width:100%;
	}
	#menuHead ul li > ul{
        background:#e5e5e5;
		box-shadow:2px 2px 2px #ccc;
	}
	#menuHead ul li:hover > ul{
		visibility: visible; /* shows sub-menu */
		opacity: 1;
		z-index: 1;
		transform: translateY(0%);
		transition-delay: 0s, 0s, 0.2s;
	}
	#menuHead ul li ul li > ul{
		position:absolute;
		margin:0;
		left:100%;
		top:0;
	}
	#menuHead ul li ul li:hover > ul{
		display:block;
		/*display:none;*/
    }

	.liFb{
		background:#4267b2;
	}

	#menuBarLogo{
        float:left;
		clear:both;
		width:100%;
        position:relative;
        background:#FEF200;
		z-index:10;
        box-shadow: #666 0px 0px 4px;
	}
	#menuLogo{
		float:left;
		clear:both;
		width:100%;
        padding:6px 0;
        text-align: center;
	}
	
	.menuBar{
		background:#222;
		height:40px;
	}
	.menuBarIn{
		margin:0 auto;
		width:1100px;
		line-height:40px;
		font-size:14px;
		color:#fff;
		padding:0 20px;
	}
	.menuBarIn a{
		display:inline-block;
		padding:0 10px;
		color:#fff;
	}
	.menuBarInText{
		color:#FEF200;
		font-size:14px;
	}
	
	.blockSiteCenter{
		margin:0 auto;
		width:1100px;
	}

	.block3Folder{
		margin:30px auto;
		width:1130px;
		min-height:300px;
	}
	.blockOption{
		float:left;
		margin:0 13px;
		width:350px;
		min-height:300px;
		border-radius:10px;
		border:5px solid #e5e5e5;
		border-left:1px solid #e5e5e5;
		border-right:1px solid #e5e5e5;
	}
	.blockOptionTitle{
		float:left;
		clear:both;
		width:100%;
		font-family:'Open Sans Light';
		font-weight:bold;
		font-size:18px;
		color:#000;
		text-align:center;
		margin:15px 0 5px;
	}
	.blockOptionTitle hr{
		display:inline-block;
		width:70px;
		border:0;
		size: 0;
		height:4px;
		background:#3D9C3D;
	}
	.blockOptionData{
		float:left;
		clear:both;
		width:100%;
		padding:0 20px 20px;
		text-align:left;
	}

	.menuFolder{
		float:left;
		clear:both;
		width:100%;
		margin:0 0 20px;
		min-height:300px;
		border-radius:10px;
		border:5px solid #e5e5e5;
		border-left:1px solid #e5e5e5;
		border-right:1px solid #e5e5e5;
	}
	.menuTitle{
		float:left;
		clear:both;
		width:100%;
		font-family:'Bitter';
		font-weight:bold;
		font-size:18px;
		color:#000;
		text-align:left;
		margin:15px 0 0;
		padding:0 20px;
	}
	.menuTitle hr{
		display:inline-block;
		width:70px;
		border:0;
		size: 0;
		height:4px;
		background:#3D9C3D;
	}
	.menuData{
		float:left;
		clear:both;
		width:100%;
		padding:0 20px 20px;
		text-align:left;
	}
	
	.flexPageLeft{
		width:50%;
	}
	.flexPageRight{
		width:50%;
		padding:0 0 0 30px;
	}
	
	.flexPart{
		width:100%;
		padding:0 20px;
	}

    #apropos{
        background:#0692C6;
    }
    #apropos .blockSite{
        width:800px;
        text-align: center;
    }
    #apropos h1, #apropos p{
        color:#fff;
    }
    
    /*Flex Map*/
    .flexMapLeft{
        width:800px;
        height:500px;
        background:#ccc;
	}
	.flexMapRight{
		width:250px;
		padding:0 0 0 20px;
	}

	.flexAcBig{
		position:relative;
		width:520px;
		height:360px;
		border:1px solid #3D9C3D;;
	}
	.flexAcBigArticle{
		position:relative;
		float:left;
		width:100%;
		height:100%;
	}
	.flexAcBigArticleTitle{
		position:absolute;
		bottom:0;
		padding:0 25px 50px;
		font-size:22px;
		font-family:'bitter';
		text-align:left;
	}
	.flexAcBigArticleTitle span{
		background:#0072C6;
		color:#fff;
		line-height:34px;
		padding:2px 3px;
	}
	.flexAcMin{
		position:relative;
		width:580px;
		height:360px;
	}
	.flexAcMinArticle{
		position:relative;
		float:left;
		width:290px;
		height:100%;
		border-right:1px solid #f0f0f0;
	}
	.flexAcMinArticleTitle{
		position:absolute;
		bottom:0;
		padding:0 20px 50px;
		font-size:16px;
	}
	.flexAcMinArticleTitle span{
		background:#3D9C3D;
		color:#fff;
		line-height:28px;
		padding:2px 3px;
	}

	#mainHeader{
		float:left;
		clear:both;
		width:100%;
		height:90px;
	}
	#mainHeaderPage{
		margin:0 auto;
		width:1100px;
		line-height:90px;
	}
	#mainHeaderLogo{
		display:block;
		float:left;
		height:280px;
		text-align:center;
	}
	#mainHeaderLogo img{
		margin-top:20px;
		height:50px;
	}

	#mainHeaderSession{
		display:block;
		float:right
	}
	#mainNav{
		float:left;
		clear:both;
		width:100%;
		background:#e6e6e6;
	}

	#menuRightHeader{
		display:block;
		float:right;
	}
	#menuRightHeader a{
		color:#222;
		padding:0 10px;
		float:left;
		text-decoration:none;
	}
	#menuRightHeader a:hover{
		background:#f0f0f0;
	}
	#menuRightHeader a:active{
		background:#e5e5e5;
	}

	#session_cnx,#session_pan{
		display:inline;
	}

	.panel{
		float:left;
		clear:both;
		width:100%;
		border-bottom:1px solid #e5e5e5;
	}
	.panel div{
		float:left;
		min-width:100px;
	}
	.panel div a{
		display:block;
		text-align:center;
		padding:15px 20px;
		color:#666;
		font-size:16px;
		text-decoration:none;
    }
    .panel div a:hover{
        border-bottom:5px solid #0c518a;
        padding:15px 15px 10px;
        color:#0c518a;
	}
    .panel div a:active{
        border-bottom:5px solid #F07F22;
        padding:15px 15px 10px;
	}
	.panel div a.panel_on{
		display:block;
		padding:15px 15px 10px;
		border-bottom:5px solid #0c518a;
		color:#0c518a;
	}
	.panelData{
		float:left;
		clear:both;
        width:100%;
	}

	.blockSiteTextFull{
		margin:0 auto;
		width:900px;
		line-height:24px;
		font-size:16px;
		text-align:left;
	}
	.blockSite{
		margin:0 auto;
		width:1100px;
		padding:25px 20px;
	}
	.blockBody{
		margin:0 auto;
		width:1100px;
		padding:0;
		background:#fff;
		border-radius:0 0 10px 10px;
	}
	.blockSiteIn, .blockIn{
		display:inline-block;
		width:100%;
		position:relative;
	}
	.blockSite800{
		margin:0 auto;
		padding:25px 0;
        width:800px;
	}
	.textAc{
		font-family:'Open Sans Light';
		font-size:24px;
		line-height: 34px;
	}

	.blockSiteTop{
		margin:0 auto;
		width:1100px;
		height:500px;
	}
	
    /**/
	#banSlider{
		float:left;
		clear:both;
        width:100%;
        height:500px;
	}
	
	.blockSite100{
		float:left;
		clear:both;
		width:100%;
	}

	#pageHalf{
		display:inline-block;
		width:50%;
	}
	#page100{
		float:left;
		clear:both;
		width:100%;
	}

	.pageCenter{
		margin:0 auto;
        width:800px;
        padding:20px 0;
	}

	#footPanel{
		float:left;
		clear:both;
		width:100%;
		font-size:14px;
		bottom:0;
		background:#fff;
		color:#222;
		padding:5px 0 0;
	}
	.footLinks{
        position:relative;
        text-align: center;
    }
    .footLinks span, .footLinks a{
		display:inline-block;
        padding:3px 15px;
        color:#222;
    }
    .footLinks a{
        color:#222;
    }

	/*Box Trans*/
	#boxTransFolder{
		position:fixed;
		display:none;
		top:0;
		left:0;
		width:100%;
		height:100%;
		background-color:#000;
		filter:opacity(70);
		-moz-opacity:0.7;
		opacity: 0.7;
		z-index:100;
	}
	.boxDiap{
		background:#000;
		border-radius:0px;
	}
	.boxDiapNo{
		border-radius:5px;
		background:#fff;
	}
	#boxTransChild{
		position:fixed;
		display:none;
		margin:0 auto;
		left:0;
		right:0;
		width:100%;
		z-index:110;
	}
	#boxTransChildIn{
		position:relative;
		float:left;
		clear:both;
		width:100%;
		height:100%;
		overflow:none;
	}
	#boxTransTitle{
		font-size:22px;
		padding:12px 20px 14px;
		color:#0072C6;
	}
	#boxTransData{
		padding:0 20px 20px;
		color:#333;
	}
	.boxButtons{
		float:left;
		clear:both;
		width:100%;
		margin-top:20px;
		text-align:right;
	}
	/****/

	#topMobile{
		display:none;
	}

    #blockTopLogo{
        float:left;
        width:auto;
		height:70px;
		margin:0 40px 0 0;
    }
    #logo{
        display:inline-block;
        width:277px;
        height:80px;
        background: url(../images/logo.png) no-repeat center;
        background-size:cover;
    }

    #blockTopMenu{
		float:right;
		width:auto;
    }
    #blockTopRight{
        float:right;
        width:auto;
        text-align:center;
        padding:0;
	}

	.videoEmb{
		margin:0 auto;
		width:700px;
		height:400px;
		background:#000;
	}
	.videoEmb iframe{
		width:100%;
		height:100%;
		border:1px solid #333;
	}

	.stepList{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-column-gap: 20px;
		position:relative;
	}
	.stepList .gridItem{
		border-radius:6px;
		overflow: hidden;
	}
	.stepList .gridItem:hover{
		background:#338d38;
	}
	.stepList .gridTitle{
		font-size:16px;
		text-align:center;
		color:#fff;
		padding:10px 15px;
	}

	.consList{
		grid-template-columns: repeat(5, 1fr);
	}
	.consItem:hover{
		background:#e5e5e5;
		transform: scale(1.2);
	}
	.consImg{
		width:140px;
		height:140px;
	}

	.photosFlex{
		display:flex;
		width:100%;
	}
	.photosFlexBody{
		flex: 730px;
		padding-right:20px;
	}
	.photosFlexMenu{
		flex: 250px;
	}

	.photosList{
		grid-template-columns: repeat(4, 1fr);
	}
	.photosItem:hover{
		background:#e5e5e5;
		transform: scale(1.4);
		z-index:20;
		box-shadow: 4px 4px 6px #222;
	}
	.photosImg{
		width:140px;
		height:140px;
	}
	
	.listView{
		display:grid;
		grid-template-columns: repeat(1, 1fr);
		row-gap: 1px;
		background: #e5e5e5;
	}
	.listView .listItem{
		background:#fff;
	}
	.listView .listItem:hover{
		background:#e5e5e5;
	}
	.listView .listItem:active{
		background:#ccc;
	}
	.listView .listItem a{
		display:block;
		padding:10px 15px;
		text-decoration: none;
	}

	.banner160{
		position:fixed;
		display:block;
		width:160px;
		height:620px;
	}
}

.consList{
	display: grid;
	row-gap: 40px;
	column-gap: 20px;
}
.consItem{
	text-align:center;
	border-radius:10px;
	transition: all ease-in-out 0.2s;
	transform: scale(1);
}
.consImg{
	display:inline-block;
	border-radius:50%;
	background-position: center;
	box-shadow: 2px 2px 4px #999;
}
.consTitle{
	padding:3px 0;
	font-size:14px;
	font-weight:bold;
}
.consDes{
	padding:3px 0;
	color:#42AC48;
	font-size:14px;
}
.consDes2{
	padding:3px 0;
	color:#07c;
	font-size:14px;
}
.blockPart{
	display:block;
	border-radius:8px;
	background:#fff;
	overflow:hidden;
}
.blockPartTitle{
	display:block;
	padding:20px 25px;
	text-align:center;
	font-size:18px;
	color:#43AB46;
}
.blockPartText{
	display:block;
	padding:20px 25px;
}
.blockPartBtn{
	display:block;
	padding:20px 25px;
	text-align:center;
}
.blockPart img{
	display:block;
	max-width:100%;
}

.gridView{
	display:grid;
}
.gridItem{
	overflow:hidden;
	width:100%;
	position:relative;
}
.gridThumb{
	display:block;
	position:relative;
}
.gridThumb img{
	display:block;
	width:100%;
	height:100%;
}
.gridTitle{
	display:block;
	font-size:18px;
	padding:12px 20px 0;
	position:relative;
}
.gridSubTitle{
	display:block;
	font-size:14px;
	color:#888;
	padding:6px 20px;
	position:relative;
}
.gridText{
	display:block;
	font-size:14px;
	padding:10px 20px;
	position:relative;
	line-height:22px;
}
.gridBtn{
	padding:8px 0;
}

.stepIco{
	float:left;
	width:100%;
	text-align:center;
	padding:0 0 10px;
}
.stepIco span{
	display:inline-block;
	width:92px;
	height:92px;
	border-radius:50%;
	background-size:70%;
	background-color:#FEF200;
}
