@charset "UTF-8";
/*
	
@import url(font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Questrial:400");
@import url("https://fonts.googleapis.com/css?family=Alex+Brush");
	
@import url("https://fonts.googleapis.com/css?family=Raleway:400,500,700");

	
	
	1.  reset.css
	2.  basic-type.css
	3.  section-article-header.css
	4.  form-input-button.css
	
	@import url('/css/reset.css');
@import url('/css/basic-type.css');
@import url('/css/section-article-header.css');
@import url('/css/form-input-button.css');
@import url('/css/flexbox.css');
	
*/



/* Box */

	.box {
		border-radius: 4px;
		border-style: solid;
		border-width: 1px;
		margin-bottom: 2em;
		padding: 1.5em;
	}

		.box > :last-child,
		.box > :last-child > :last-child,
		.box > :last-child > :last-child > :last-child {
			margin-bottom: 0;
		}

		.box.alt {
			border: 0;
			border-radius: 0;
			padding: 0;
		}

	.box {
		border-color: rgba(152,152,152, 0.35);
	}
	@media screen and (max-width: 736px) {

			.box {
				padding: 1.4em;
			}
			.box.fit {
			padding:0;
			border:0;
			margin-bottom:1em;
			}

		}
	@media screen and (max-width: 480px) {

			.box {
				padding: 1.25em;
			}

		}
	@media screen and (max-width: 360px) {

			.box {
				padding: 1em;
			}

		}
	

/* Icon */

	.icon {
		text-decoration: none;
		border-bottom: none;
		position: relative;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			font-family: FontAwesome;
			font-style: normal;
			font-weight: normal;
			text-transform: none !important;
		}

		.icon > .label {
			display: none;
		}

/* Image */

	.image {
		border-radius: 0;
		border: 0;
		display: inline-block;
		position: relative;
	}

		.image img {
			max-width:100%;
			border-radius: 0;
			display: block;
		}

		.image.left, .image.right {
			max-width: 40%;
		}

			.image.left img, .image.right img {
				width: 100%;
			}

		.image.left {
			float: left;
			padding: 0 1.5em .75em 0;
			top: 0.25em;
		}

		.image.right {
			float: right;
			padding: 0 0 .75em 1.5em;
			top: 0.25em;
		}
		
		.image.left.maxi {
			max-width:54%;
			padding:0 .75em .5em 0;
		}
		.image.right.maxi {
			max-width:54%;
			padding:0 .5em .75em 0;
		}

		.image.fit {
			display: block;
			margin: 0 0 2em 0;
			width: 100%;
		}
		/*.box .image.fit {
			margin:0 !important;
			}*/
			.image.fit img {
				width: 100%;
			}
		
		.box .image.cent {
			position:relative;
			background-position:center center;
			background-repeat:no-repeat;
			}
		.box .image.cent img {
			opacity:0;
		}
		
		.image.main {
			display: block;
			margin: 0 0 3em 0;
			width: 100%;
		}

			.image.main img {
				width: 100%;
			}
		@media screen and (max-width : 1600px) {
			.image.left,
			.image.right {
			max-width:44%;
			}
			.image.left.maxi,
			.image.right.maxi {
			max-width:50%;
			}
		}
		@media screen and (max-width : 1440px) {
			.image.left,
			.image.right {
			max-width:45%;
			}
			.image.left.maxi,
			.image.right.maxi {
			max-width:51%;
			}
		}
		@media screen and (max-width : 1366px) {
			.image.left,
			.image.right {
			max-width:47%;
			}
			.image.left.maxi,
			.image.right.maxi {
			max-width:49%;
			}
		}
		@media screen and (max-width : 1280px) {
			.image.left,
			.image.right {
			max-width:48%;
			}
			.image.left.maxi,
			.image.right.maxi {
			max-width:55%;
			}
		}
		@media screen and (max-width : 1024px) {
			.image.left.maxi,
			.image.right.maxi {
			max-width:50%;
			}
		}
		@media screen and (max-width : 980px) {
			.image.left,
			.image.right {
			max-width:45%;
			}
		}
		@media screen and (max-width : 736px) {
			.image.fit {
			margin-bottom:1em;
			}
		}
		@media screen and (max-width : 640px) {
			.image.left,
			.image.right,
			.image.left.maxi,
			.image.right.maxi {
			float:none;
			padding:0 0 1em;
			max-width:100%;
			}
		}

/* List */

ol {
counter-reset: item;
margin: 0 0 1.5em 0;
padding-left:0;
list-style-color:inherit;
}

ol > li,
ul > li {
position:relative;
padding-left:2em;
}
ol > li::before {
content:counter(item) '. ';
counter-increment: item;
color:#717171;
display: inline-block;
float:left;
width: 1em;
margin-left: -1.5em;
margin-right: 0.5em;
margin-top:-.15em;
text-align: right;
}

ul {
list-style:none;
}
ul.dash,
ul.disc {
margin: 0 0 1.5em 0;
padding-left:0;
list-style-color:inherit;
}
ul.disc > li::before,
ul.dash > li::before {
font-family:'FontAwesome';
content: "●";
color:rgba(255,255,255,.5);
display: inline-block;
float:left;
width: 1em;
font-size:11pt;
margin-left: -1.25em;
margin-right:.25em;
}
ul.dash > li::before {
content:'−';
}
ul.disc.black > li::before,
ul.dash.black > li::before {
color:rgba(33,33,33,.5);
}
ol.bfr-blue > li::before,
ul.bfr-blue > li::before {
color:#326595 !important;
}
ol li > ul {
margin-top:1em !important;
}

		/*ul li {
			padding-left: 0.5em;
		}

		ul.alt,
		ul.fit {
			list-style: none;
			padding-left: 0;
		}*/

ul.alt > li {
border-top-style: solid;
border-top-width: 1px;
padding: 0.5em 0;
}
ul.fit > li {
padding:.5em 0;
}

ul.alt > li:first-child {
border-top: 0;
padding-top: 0;
}

		ul.icons {
			cursor: default;
			list-style: none;
			padding-left: 0;
		}
		
			ul.icons > li {
				display: inline-block;
				padding: 0 1em 0 0;
			}

				ul.icons > li:last-child {
					padding-right: 0;
				}

				ul.icons > li .icon:before {
					font-size: 2em;
				}
				
				ul.icons > li a,
				ul.icons > li a:hover,
				ul.icons > li a:focus,
				ul.icons > li a:active {
				text-decoration:none;
				border-bottom:none;
				}
				
				.icon.bull {
				display:inline-block;
				width:70px;
				height:70px;
				line-height:70px;
				border-radius:35px;
				text-align:center;
				font-size:.9em;
				}
				.icon.bull.msg {
				background-color:rgba(197,199,201,1);
				color:#fff;
				}
				.icon.bull.msg.on {
				background-color:rgba(247, 70, 67,1);
				color:#fff;
				}
				@media screen and (max-width : 980px) {
					.icon.bull {
					display:inline-block;
					width:30px;
					height:50px;
					line-height:51px;
					border-radius:0;
					text-align:center;
					/*font-size:.7em !important;*/
					}
					ul.icons > li .icon:before {
					font-size: 22px !important;
					}
					.icon.bull.msg {
					background-color:transparent;
					color:rgba(197,199,201,1);
					}
					.icon.bull.msg.on {
					background-color:transparent;
					color:rgba(247, 70, 67,.85);
					}
					ol li {
						padding-left: .35em;
					}
					ol > li:before {
					left:-1em;
					top:-.25em;
					}
					ul.disc li:before,
					ul.outside li:before {
						left:-1em;
						margin-right:-.5em;
					}
					ul.dash,
					ul.disc {
					font-size:9pt;
					}
				}
				@media screen and (max-width : 640px) {
					/*.icon.bull {
					display:inline-block;
					width:40px;
					height:40px;
					line-height:40px;
					border-radius:20px;
					text-align:center;
					}
					ul.icons > li .icon:before {
					font-size: 1em;
					}*/
					ul.dash,
					ul.disc {
					font-size:8pt;
					}
				}

		ul.actions {
			cursor: default;
			list-style: none;
			padding-left: 0;
		}

			ul.actions > li {
				display: inline-block;
				padding: 0 1em 1em 0;
				vertical-align: middle;
			}

				ul.actions > li:last-child {
					padding-right: 0;
				}

			ul.actions.small > li {
				padding: 0 0.5em 0 0;
			}

			ul.actions.vertical > li {
				display: block;
				padding: 1em 0 0 0;
			}

				ul.actions.vertical > li:first-child {
					padding-top: 0;
				}

				ul.actions.vertical > li > * {
					margin-bottom: 0;
				}

			ul.actions.vertical.small > li {
				padding: 0.5em 0 0 0;
			}

				ul.actions.vertical.small > li:first-child {
					padding-top: 0;
				}

			ul.actions.fit {
				display: table;
				margin-left: -1em;
				padding: 0;
				table-layout: fixed;
				width: calc(100% + 1em);
			}

				ul.actions.fit > li {
					display: table-cell;
					padding: 0 0 0 1em;
				}

					ul.actions.fit > li > * {
						margin-bottom: 0;
					}

				ul.actions.fit.small {
					margin-left: -0.5em;
					width: calc(100% + 0.5em);
				}

					ul.actions.fit.small > li {
						padding: 0 0 0 0.5em;
					}

			@media screen and (max-width: 480px) {

				ul.actions {
					margin: 0 0 2em 0;
				}

					ul.actions > li {
						padding: 1em 0 0 0;
						display: block;
						text-align: center;
						width: 100%;
					}

						ul.actions > li:first-child {
							padding-top: 0;
						}

						ul.actions > li > * {
							width: 100%;
							margin: 0 !important;
						}

							ul.actions > li > *.icon:before {
								margin-left: -2em;
							}

					ul.actions.small > li {
						padding: 0.5em 0 0 0;
					}

						ul.actions.small > li:first-child {
							padding-top: 0;
						}

			}

	dl {
		margin: 0 0 2em 0;
	}

		dl > dt {
			display: block;
			font-weight: 700;
			margin: 0 0 1em 0;
		}

		dl > dd {
			margin-left: 2em;
		}

	ul.alt > li {
		border-top-color: rgba(152,152,152, 0.25);
	}

/* Table */
	
	.tableFixed {
	position:fixed; top:0; left:0; width:100%; min-height:50px; z-index:500;
	display:none;
	}

	.table-wrapper {
		-webkit-overflow-scrolling: touch;
		overflow-x: auto;
	}

	table,
	.table {
		margin: 0 0 2em 0;
		width: 100%;
	}

		table tbody tr,
		.table .tbody .tr {
			border-style: solid;
			border-width: 1px;
			border-left: 0;
			border-right: 0;
		}

		table td,
		.table .td {
			padding: 0.75em 0.75em;
			line-height:1.07em;
			vertical-align:middle;
		}

		table th,
		.table .th {
			font-size: 1em;
			font-weight: 500;
			padding: .75em .75em;
			text-align: left;
			vertical-align:bottom;
			line-height:1.25em;
		}

		table thead,
		.table .thead {
			border-bottom-style: solid;
			border-bottom-width: 3px;
		}

		table tfoot,
		.table .tfoot {
			border-top-style: solid;
			border-top-width: 3px;
		}

		table.alt,
		.table.alt {
			border-collapse: separate;
		}

			table.alt tbody tr td,
			.table.alt .tbody .tr .td {
				border-style: solid;
				border-width: 1px;
				border-left-width: 0;
				border-top-width: 0;
			}

				table.alt tbody tr td:first-child,
				.table.alt .tbody .tr .td :first-child {
					border-left-width: 1px;
				}

			table.alt tbody tr:first-child td,
			.table.alt .tbody .tr:first-child .td {
				border-top-width: 1px;
			}

			table.alt thead,
			.table.alt .thead {
				border-bottom: 0;
			}

			table.alt tfoot,
			.table.alt .tfoot {
				border-top: 0;
			}

	table tbody tr,
	.table .tbody .tr {
		border-color: rgba(152,152,152, 0.25);
	}

		table tbody tr:nth-child(2n + 1),
		.table .tbody .tr:nth-child(2n + 1) {
			background-color: rgba(152,152,152, 0.075);
		}

	table th,
	.table .th {
		color: #0c4c8a;
	}

	table thead,
	.table .thead {
		border-bottom-color: rgba(152,152,152, 0.55);
	}

	table tfoot,
	.table .tfoot {
		border-top-color: rgba(152,152,152, 0.25);
	}

	table.alt tbody tr td,
	.table.alt .tbody .tr .td {
		border-color: rgba(152,152,152, 0.25);
	}

		@media screen and (max-width: 480px) {
		
			table, tbody { display: block; width:100%; padding:0; }
			table,
			table.alt {
			border:1px solid rgba(156,161,167,.25);
			padding:15px 0;
			}
			tbody {
			margin-bottom:3px;
			}
			table thead,
			table tr,
			table th,
			table.alt thead,
			table.alt tr,
			table.alt th {
			border:none;
			display:block;
			margin:0 15px;
			padding:0;
			}
			table tfoot {
				display:block;
				margin:10px 0 5px;
				padding:0;
				border:none;
			}

			table.alt tbody tr {
				border:1px solid rgba(152,152,152, 0.4);
				margin-bottom:4px;
			}
			table td,
			table.alt td,
			table.alt tbody tr td {
				display:block;
				border:none;
				padding:0.5em 0.25em;
				margin:0 .5em;
				border-bottom: 1px solid rgba(152,152,152, 0.2);
				}
			table.alt tbody tr td {
			margin:0;
			padding:.5em .75em;
			}
			table tfoot tr td {
			margin:0;
			padding:.5em .75em;
			}
			table tfoot td.pad {
				padding:2em inherit;
				vertical-align:middle;
			}
			table.alt tbody tr:nth-child(2n + 1) {
			background-color: rgba(152,152,152, 0);
			}
			table.alt tbody tr:nth-child(2n + 1) td {
			background-color: rgba(152,152,152, 0.075);
			}
			table td.t-center,
			table th.t-center,
			table .t-center,
			tfoot td,
			tfoot td.t-center,
			table td.t-right,
			table th.t-right,
			table .t-right,
			tfoot td.t-right {
			text-align:left;
			}
			table thead,
			table.alt thead {
				padding-bottom:1em;
				border-bottom-width: 5px;
				}
			table th,
			table.alt th {
				position:relative;
				padding:0.1em .75em .1em 0;
				font-size:1.025em;
				font-weight:500;
				line-height:1.2em;
			}
			table th:before {
			content:'\f105 ';
			font-family:'FontAwesome';
			float:left;
			margin-right:10px;
			margin-left:-15px;
			opacity:.5;
			}
		
		}


/* Feature */

	.feature {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-align-items: center;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		margin-bottom: 6em;
	}

		.feature:last-child {
			margin-bottom: 2em;
		}

		.feature.left {
			-moz-flex-direction: row;
			-webkit-flex-direction: row;
			-ms-flex-direction: row;
			flex-direction: row;
		}

		.feature.right {
			-moz-flex-direction: row-reverse;
			-webkit-flex-direction: row-reverse;
			-ms-flex-direction: row-reverse;
			flex-direction: row-reverse;
		}

		.feature .image {
			width: 48%;
		}

			.feature .image img {
				max-width: 100%;
			}

		.feature .content {
			padding: 2em 3em 0.1em 3em;
			width: 52%;
		}

		@media screen and (max-width: 1280px) {

			.feature {
				margin-bottom: 4em;
			}

				.feature .content {
					padding: 1em 2em 0.1em 2em;
				}

		}

		@media screen and (max-width: 980px) {

			.feature.left, .feature.right {
				-moz-flex-direction: column;
				-webkit-flex-direction: column;
				-ms-flex-direction: column;
				flex-direction: column;
			}

			.feature .image {
				width: 100%;
			}

				.feature .image img {
					width: 100%;
				}

			.feature .content {
				padding: 2em 2em 0.1em 2em;
				width: 100%;
			}

		}

		@media screen and (max-width: 736px) {

			.feature {
				margin-bottom: 2em;
			}

				.feature .content {
					padding: 2em 1em 0.1em 1em;
				}

		}

	.feature {
		background-color: rgba(152,152,152, 0.075);
	}

/* Image Grid */

	.image-grid {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 4em;
	}

		.image-grid .image {
			margin: 0;
			width: 25%;
		}

			.image-grid .image img {
				width: 100%;
			}

		@media screen and (max-width: 980px) {

			.image-grid {
				margin-bottom: 3em;
			}

				.image-grid .image {
					width: 50%;
				}

		}

		@media screen and (max-width: 480px) {

			.image-grid {
				margin-bottom: 2em;
			}

				.image-grid .image {
					width: 100%;
				}

		}

/* Wrapper */

	.wrapper {
		padding: 2em;
		position: relative;
	}

		.wrapper > .inner {
			margin: 0 auto;
			width: 70em;
		}

		.wrapper.style1 {
			background-color: #EEE;
			color: #727478;
		}

			.wrapper.style1 input, .wrapper.style1 select, .wrapper.style1 textarea {
				color: #535559;
			}

			.wrapper.style1 a {
				color: #5481ad;
			}

			.wrapper.style1 strong, .wrapper.style1 b {
				color: #535559;
			}

			.wrapper.style1 h1, .wrapper.style1 h2, .wrapper.style1 h3, .wrapper.style1 h4, .wrapper.style1 h5, .wrapper.style1 h6 {
				color: #535559;
			}

			.wrapper.style1 blockquote {
				border-left-color: rgba(152,152,152, 0.25);
			}

			.wrapper.style1 code {
				background: #fff;
				border-color: rgba(152,152,152, 0.25);
			}

			.wrapper.style1 hr {
				border-bottom-color: rgba(152,152,152, 0.25);
			}

			.wrapper.style1 header p {
				color: #535559;
			}

			.wrapper.style1 .feature {
				background-color: #fff;
			}

			.wrapper.style1 label {
				color: #535559;
			}

			.wrapper.style1 input[type="text"],
			.wrapper.style1 input[type="password"],
			.wrapper.style1 input[type="email"],
			.wrapper.style1 select,
			.wrapper.style1 textarea {
				background-color: #fff;
				border-color: rgba(152,152,152, 0.25);
				color: inherit;
			}

				.wrapper.style1 input[type="text"]:focus,
				.wrapper.style1 input[type="password"]:focus,
				.wrapper.style1 input[type="email"]:focus,
				.wrapper.style1 select:focus,
				.wrapper.style1 textarea:focus {
					border-color: #5481ad;
					box-shadow: 0 0 0 1px #5481ad;
				}

			.wrapper.style1 .select-wrapper:before {
				color: rgba(152,152,152, 0.25);
			}

			.wrapper.style1 input[type="checkbox"] + label,
			.wrapper.style1 input[type="radio"] + label {
				color: #727478;
			}

				.wrapper.style1 input[type="checkbox"] + label:before,
				.wrapper.style1 input[type="radio"] + label:before {
					background-color: #fff;
					border-color: rgba(152,152,152, 0.25);
				}

			.wrapper.style1 input[type="checkbox"]:checked + label:before,
			.wrapper.style1 input[type="radio"]:checked + label:before {
				background-color: #fff;
				border-color: #5481ad;
				color: #535559;
			}

			.wrapper.style1 input[type="checkbox"]:focus + label:before,
			.wrapper.style1 input[type="radio"]:focus + label:before {
				border-color: #5481ad;
				box-shadow: 0 0 0 1px #5481ad;
			}
			
			.wrapper.style1 select option:hover,
			.wrapper.style1 select option:checked,
			.wrapper.style1 select:focus > option:checked {
			color:#fefcfd !important;
			box-shadow: 0 0 10px 100px #55575B inset !important;
			-moz-box-shadow: 0 0 10px 100px #55575B inset !important;
			-webkit-box-shadow: 0 0 10px 100px #55575B inset !important;
			-ms-box-shadow: 0 0 10px 100px #55575B inset !important;
			-o-box-shadow: 0 0 10px 100px #55575B inset !important;
			}

			.wrapper.style1 ::-webkit-input-placeholder {
				color: #bbb !important;
			}

			.wrapper.style1 :-moz-placeholder {
				color: #bbb !important;
			}

			.wrapper.style1 ::-moz-placeholder {
				color: #bbb !important;
			}

			.wrapper.style1 :-ms-input-placeholder {
				color: #bbb !important;
			}

			.wrapper.style1 .formerize-placeholder {
				color: #bbb !important;
			}
			
			.wrapper.style1 form.alt input[type="text"],
			.wrapper.style1 form.alt input[type="password"],
			.wrapper.style1 form.alt input[type="email"],
			.wrapper.style1 form.alt select,
			.wrapper.style1 form.alt textarea {
				background-color: transparent;
			}

			.wrapper.style1 ul.alt > li {
				border-top-color: rgba(152,152,152, 0.25);
			}

			.wrapper.style1 table tbody tr {
				border-color: rgba(152,152,152, 0.25);
			}

				.wrapper.style1 table tbody tr:nth-child(2n + 1) {
					background-color: #fff;
				}

			.wrapper.style1 table th {
				color: #535559;
			}

			.wrapper.style1 table thead {
				border-bottom-color: rgba(152,152,152, 0.25);
			}

			.wrapper.style1 table tfoot {
				border-top-color: rgba(152,152,152, 0.25);
			}

			.wrapper.style1 table.alt tbody tr td {
				border-color: rgba(152,152,152, 0.25);
			}

			.wrapper.style1 input[type="submit"],
			.wrapper.style1 input[type="reset"],
			.wrapper.style1 input[type="button"],
			.wrapper.style1 button,
			.wrapper.style1 .button {
				background-color: #535559;
				box-shadow: none;
				color: #EEE !important;
			}

				.wrapper.style1 input[type="submit"].icon:before,
				.wrapper.style1 input[type="reset"].icon:before,
				.wrapper.style1 input[type="button"].icon:before,
				.wrapper.style1 button.icon:before,
				.wrapper.style1 .button.icon:before {
					color: #bbb;
				}

				.wrapper.style1 input[type="submit"]:hover,
				.wrapper.style1 input[type="reset"]:hover,
				.wrapper.style1 input[type="button"]:hover,
				.wrapper.style1 button:hover,
				.wrapper.style1 .button:hover {
					background-color: #626262;
				}

				.wrapper.style1 input[type="submit"]:active,
				.wrapper.style1 input[type="reset"]:active,
				.wrapper.style1 input[type="button"]:active,
				.wrapper.style1 button:active,
				.wrapper.style1 .button:active {
					background-color: #484848;
				}

				.wrapper.style1 input[type="submit"].special,
				.wrapper.style1 input[type="reset"].special,
				.wrapper.style1 input[type="button"].special,
				.wrapper.style1 button.special,
				.wrapper.style1 .button.special {
					background-color: #5481ad;
					box-shadow: none;
					color: #fff !important;
				}

					.wrapper.style1 input[type="submit"].special:hover,
					.wrapper.style1 input[type="reset"].special:hover,
					.wrapper.style1 input[type="button"].special:hover,
					.wrapper.style1 button.special:hover,
					.wrapper.style1 .button.special:hover {
						background-color: #EC5D36;
					}

					.wrapper.style1 input[type="submit"].special:active,
					.wrapper.style1 input[type="reset"].special:active,
					.wrapper.style1 input[type="button"].special:active,
					.wrapper.style1 button.special:active,
					.wrapper.style1 .button.special:active {
						background-color: #1b292b;
					}

				.wrapper.style1 input[type="submit"].alt,
				.wrapper.style1 input[type="reset"].alt,
				.wrapper.style1 input[type="button"].alt,
				.wrapper.style1 button.alt,
				.wrapper.style1 .button.alt {
					background-color: transparent;
					box-shadow: inset 0 0 0 2px #5481ad;
					color: #5481ad !important;
				}

					.wrapper.style1 input[type="submit"].alt:hover,
					.wrapper.style1 input[type="reset"].alt:hover,
					.wrapper.style1 input[type="button"].alt:hover,
					.wrapper.style1 button.alt:hover,
					.wrapper.style1 .button.alt:hover {
						background-color: #fff;
					}

					.wrapper.style1 input[type="submit"].alt:active,
					.wrapper.style1 input[type="reset"].alt:active,
					.wrapper.style1 input[type="button"].alt:active,
					.wrapper.style1 button.alt:active,
					.wrapper.style1 .button.alt:active {
						background-color: rgba(152,152,152, 0.2);
					}

		.wrapper.style2 {
			background-color: #1E2832;
			color: rgba(255, 255, 255, 0.75);
		}

			.wrapper.style2 input, .wrapper.style2 select, .wrapper.style2 textarea {
				color: #fff;
			}

			.wrapper.style2 a {
				color: #5481ad;
			}

			.wrapper.style2 strong, .wrapper.style2 b {
				color: #fff;
			}

			.wrapper.style2 h1, .wrapper.style2 h2, .wrapper.style2 h3, .wrapper.style2 h4, .wrapper.style2 h5, .wrapper.style2 h6 {
				color: #fff;
			}

			.wrapper.style2 blockquote {
				border-left-color: transparent;
			}

			.wrapper.style2 code {
				background: rgba(255, 255, 255, 0.05);
				border-color: transparent;
			}

			.wrapper.style2 hr {
				border-bottom-color: transparent;
			}

			.wrapper.style2 header p {
				color: #fff;
			}

			.wrapper.style2 .feature {
				background-color: rgba(255, 255, 255, 0.05);
			}

			.wrapper.style2 label {
				color: #fff;
			}

			.wrapper.style2 input[type="text"],
			.wrapper.style2 input[type="password"],
			.wrapper.style2 input[type="email"],
			.wrapper.style2 select,
			.wrapper.style2 textarea {
				background-color: rgba(255, 255, 255, 0.05);
				border-color: transparent;
				border-width:3px;
				color: rgba(255,255,255,.3);
			}

				.wrapper.style2 input[type="text"]:focus,
				.wrapper.style2 input[type="password"]:focus,
				.wrapper.style2 input[type="email"]:focus,
				.wrapper.style2 select:focus,
				.wrapper.style2 textarea:focus {
					color:rgba(255,255,255,.6);
					border-color: rgba(255, 255, 255, .1);
					box-shadow:0;
				}

			.wrapper.style2 .select-wrapper:before {
				color: transparent;
			}

			.wrapper.style2 input[type="checkbox"] + label,
			.wrapper.style2 input[type="radio"] + label {
				color: rgba(255, 255, 255, 0.75);
			}

				.wrapper.style2 input[type="checkbox"] + label:before,
				.wrapper.style2 input[type="radio"] + label:before {
					background-color: rgba(255, 255, 255, 0.05);
					border-color: transparent;
				}

			.wrapper.style2 input[type="checkbox"]:checked + label:before,
			.wrapper.style2 input[type="radio"]:checked + label:before {
				background-color: rgba(255, 255, 255, 0.05);
				border-color:  rgba(255, 255, 255, .1);
				color: #fff;
			}

			.wrapper.style2 input[type="checkbox"]:focus + label:before,
			.wrapper.style2 input[type="radio"]:focus + label:before {
				border-color: rgba(255, 255, 255, .1);
				box-shadow: none;
			}

			.wrapper.style2 ::-webkit-input-placeholder {
				color: #a5a9ad !important;
			}

			.wrapper.style2 :-moz-placeholder {
				color: #a5a9ad !important;
			}

			.wrapper.style2 ::-moz-placeholder {
				color: #a5a9ad !important;
			}

			.wrapper.style2 :-ms-input-placeholder {
				color: #a5a9ad !important;
			}

			.wrapper.style2 .formerize-placeholder {
				color: #a5a9ad !important;
			}

			.wrapper.style2 form.alt input[type="text"],
			.wrapper.style2 form.alt input[type="password"],
			.wrapper.style2 form.alt input[type="email"],
			.wrapper.style2 form.alt select,
			.wrapper.style2 form.alt textarea {
				background-color: transparent;
			}

			.wrapper.style2 ul.alt > li {
				border-top-color: transparent;
			}

			.wrapper.style2 table tbody tr {
				border-color: transparent;
			}

				.wrapper.style2 table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.05);
				}

			.wrapper.style2 table th {
				color: #fff;
			}

			.wrapper.style2 table thead {
				border-bottom-color: transparent;
			}

			.wrapper.style2 table tfoot {
				border-top-color: transparent;
			}

			.wrapper.style2 table.alt tbody tr td {
				border-color: transparent;
			}

			.wrapper.style2 input[type="submit"],
			.wrapper.style2 input[type="reset"],
			.wrapper.style2 input[type="button"],
			.wrapper.style2 button,
			.wrapper.style2 .button {
				background-color: rgba(255,255,255,.9);
				box-shadow: none;
				color: #1E2832 !important;
			}

				.wrapper.style2 input[type="submit"].icon:before,
				.wrapper.style2 input[type="reset"].icon:before,
				.wrapper.style2 input[type="button"].icon:before,
				.wrapper.style2 button.icon:before,
				.wrapper.style2 .button.icon:before {
					color: #1e2832;
				}

				.wrapper.style2 input[type="submit"]:hover,
				.wrapper.style2 input[type="reset"]:hover,
				.wrapper.style2 input[type="button"]:hover,
				.wrapper.style2 button:hover,
				.wrapper.style2 .button:hover {
					background-color: rgba(255,255,255,.98);
				}

				.wrapper.style2 input[type="submit"]:active,
				.wrapper.style2 input[type="reset"]:active,
				.wrapper.style2 input[type="button"]:active,
				.wrapper.style2 button:active,
				.wrapper.style2 .button:active {
					background-color: rgba(255,255,255,.98);
				}

				.wrapper.style2 input[type="submit"].special,
				.wrapper.style2 input[type="reset"].special,
				.wrapper.style2 input[type="button"].special,
				.wrapper.style2 button.special,
				.wrapper.style2 .button.special {
					background-color: rgba(255,255,255,.7);
					box-shadow: none;
					color: #fff !important;
				}

					.wrapper.style2 input[type="submit"].special:hover,
					.wrapper.style2 input[type="reset"].special:hover,
					.wrapper.style2 input[type="button"].special:hover,
					.wrapper.style2 button.special:hover,
					.wrapper.style2 .button.special:hover {
						background-color: rgba(255,255,255,.6);
					}

					.wrapper.style2 input[type="submit"].special:active,
					.wrapper.style2 input[type="reset"].special:active,
					.wrapper.style2 input[type="button"].special:active,
					.wrapper.style2 button.special:active,
					.wrapper.style2 .button.special:active {
						background-color: rgba(255,255,255,.6);
					}

				.wrapper.style2 input[type="submit"].alt,
				.wrapper.style2 input[type="reset"].alt,
				.wrapper.style2 input[type="button"].alt,
				.wrapper.style2 button.alt,
				.wrapper.style2 .button.alt {
					background-color: rgba(255, 255, 255, .05);
					box-shadow:none;
					border: none;
					color: rgba(255,255,255,.3) !important;
				}

					.wrapper.style2 input[type="submit"].alt:hover,
					.wrapper.style2 input[type="reset"].alt:hover,
					.wrapper.style2 input[type="button"].alt:hover,
					.wrapper.style2 button.alt:hover,
					.wrapper.style2 .button.alt:hover {	
						color:rgba(255,255,255,.35) !important;
						background-color: rgba(255, 255, 255, 0.06);
					}

					.wrapper.style2 input[type="submit"].alt:active,
					.wrapper.style2 input[type="reset"].alt:active,
					.wrapper.style2 input[type="button"].alt:active,
					.wrapper.style2 button.alt:active,
					.wrapper.style2 .button.alt:active {
						color:rgba(255,255,255,.4) !important;
						background-color: rgba(255, 255, 255, 0.06);
					}

		.wrapper.style3 {
			background-color: #1E2832;
			color: rgba(255, 255, 255, 0.75);
			background-attachment: fixed;
			background-image: url("images/overlay.png"), url("images/pic11.jpg");
			background-size: cover;
		}

			.wrapper.style3 input, .wrapper.style3 select, .wrapper.style3 textarea {
				color: #fff;
			}

			.wrapper.style3 a {
				color: #5481ad;
			}

			.wrapper.style3 strong, .wrapper.style3 b {
				color: #fff;
			}

			.wrapper.style3 h1, .wrapper.style3 h2, .wrapper.style3 h3, .wrapper.style3 h4, .wrapper.style3 h5, .wrapper.style3 h6 {
				color: #fff;
			}

			.wrapper.style3 blockquote {
				border-left-color: transparent;
			}

			.wrapper.style3 code {
				background: rgba(255, 255, 255, 0.05);
				border-color: transparent;
			}

			.wrapper.style3 hr {
				border-bottom-color: transparent;
			}

			.wrapper.style3 header p {
				color: #fff;
			}

			.wrapper.style3 .feature {
				background-color: rgba(255, 255, 255, 0.05);
			}

			.wrapper.style3 label {
				color: #fff;
			}

			.wrapper.style3 input[type="text"],
			.wrapper.style3 input[type="password"],
			.wrapper.style3 input[type="email"],
			.wrapper.style3 select,
			.wrapper.style3 textarea {
				background-color: rgba(255, 255, 255, 0.05);
				border-color: transparent;
				color: inherit;
			}

				.wrapper.style3 input[type="text"]:focus,
				.wrapper.style3 input[type="password"]:focus,
				.wrapper.style3 input[type="email"]:focus,
				.wrapper.style3 select:focus,
				.wrapper.style3 textarea:focus {
					border-color: #5481ad;
					box-shadow: 0 0 0 1px #5481ad;
				}

			.wrapper.style3 .select-wrapper:before {
				color: transparent;
			}

			.wrapper.style3 input[type="checkbox"] + label,
			.wrapper.style3 input[type="radio"] + label {
				color: rgba(255, 255, 255, 0.75);
			}

				.wrapper.style3 input[type="checkbox"] + label:before,
				.wrapper.style3 input[type="radio"] + label:before {
					background-color: rgba(255, 255, 255, 0.05);
					border-color: transparent;
				}

			.wrapper.style3 input[type="checkbox"]:checked + label:before,
			.wrapper.style3 input[type="radio"]:checked + label:before {
				background-color: rgba(255, 255, 255, 0.05);
				border-color: #5481ad;
				color: #fff;
			}

			.wrapper.style3 input[type="checkbox"]:focus + label:before,
			.wrapper.style3 input[type="radio"]:focus + label:before {
				border-color: #5481ad;
				box-shadow: 0 0 0 1px #5481ad;
			}

			.wrapper.style3 ::-webkit-input-placeholder {
				color: #a5a9ad !important;
			}

			.wrapper.style3 :-moz-placeholder {
				color: #a5a9ad !important;
			}

			.wrapper.style3 ::-moz-placeholder {
				color: #a5a9ad !important;
			}

			.wrapper.style3 :-ms-input-placeholder {
				color: #a5a9ad !important;
			}

			.wrapper.style3 .formerize-placeholder {
				color: #a5a9ad !important;
			}

			.wrapper.style3 form.alt input[type="text"],
			.wrapper.style3 form.alt input[type="password"],
			.wrapper.style3 form.alt input[type="email"],
			.wrapper.style3 form.alt select,
			.wrapper.style3 form.alt textarea {
				background-color: transparent;
			}

			.wrapper.style3 ul.alt > li {
				border-top-color: transparent;
			}

			.wrapper.style3 table tbody tr {
				border-color: transparent;
			}

				.wrapper.style3 table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.05);
				}

			.wrapper.style3 table th {
				color: #fff;
			}

			.wrapper.style3 table thead {
				border-bottom-color: transparent;
			}

			.wrapper.style3 table tfoot {
				border-top-color: transparent;
			}

			.wrapper.style3 table.alt tbody tr td {
				border-color: transparent;
			}

			.wrapper.style3 input[type="submit"],
			.wrapper.style3 input[type="reset"],
			.wrapper.style3 input[type="button"],
			.wrapper.style3 button,
			.wrapper.style3 .button {
				background-color: #fff;
				box-shadow: none;
				color: #1E2832 !important;
			}

				.wrapper.style3 input[type="submit"].icon:before,
				.wrapper.style3 input[type="reset"].icon:before,
				.wrapper.style3 input[type="button"].icon:before,
				.wrapper.style3 button.icon:before,
				.wrapper.style3 .button.icon:before {
					color: #a5a9ad;
				}

				.wrapper.style3 input[type="submit"]:hover,
				.wrapper.style3 input[type="reset"]:hover,
				.wrapper.style3 input[type="button"]:hover,
				.wrapper.style3 button:hover,
				.wrapper.style3 .button:hover {
					background-color: white;
				}

				.wrapper.style3 input[type="submit"]:active,
				.wrapper.style3 input[type="reset"]:active,
				.wrapper.style3 input[type="button"]:active,
				.wrapper.style3 button:active,
				.wrapper.style3 .button:active {
					background-color: #f2f2f2;
				}

				.wrapper.style3 input[type="submit"].special,
				.wrapper.style3 input[type="reset"].special,
				.wrapper.style3 input[type="button"].special,
				.wrapper.style3 button.special,
				.wrapper.style3 .button.special {
					background-color: #5481ad;
					box-shadow: none;
					color: #fff !important;
				}

					.wrapper.style3 input[type="submit"].special:hover,
					.wrapper.style3 input[type="reset"].special:hover,
					.wrapper.style3 input[type="button"].special:hover,
					.wrapper.style3 button.special:hover,
					.wrapper.style3 .button.special:hover {
						background-color: #EC5D36;
					}

					.wrapper.style3 input[type="submit"].special:active,
					.wrapper.style3 input[type="reset"].special:active,
					.wrapper.style3 input[type="button"].special:active,
					.wrapper.style3 button.special:active,
					.wrapper.style3 .button.special:active {
						background-color: #1b292b;
					}

				.wrapper.style3 input[type="submit"].alt,
				.wrapper.style3 input[type="reset"].alt,
				.wrapper.style3 input[type="button"].alt,
				.wrapper.style3 button.alt,
				.wrapper.style3 .button.alt {
					background-color: transparent;
					box-shadow: inset 0 0 0 2px #fff;
					color: #fff !important;
				}

					.wrapper.style3 input[type="submit"].alt:hover,
					.wrapper.style3 input[type="reset"].alt:hover,
					.wrapper.style3 input[type="button"].alt:hover,
					.wrapper.style3 button.alt:hover,
					.wrapper.style3 .button.alt:hover {
						background-color: rgba(255, 255, 255, 0.05);
					}

					.wrapper.style3 input[type="submit"].alt:active,
					.wrapper.style3 input[type="reset"].alt:active,
					.wrapper.style3 input[type="button"].alt:active,
					.wrapper.style3 button.alt:active,
					.wrapper.style3 .button.alt:active {
						background-color: rgba(255, 255, 255, 0.1);
					}

		@media screen and (max-width: 1280px) {

			.wrapper {
				padding: 5em 3em 3em 3em;
			}

				.wrapper > .inner {
					width: 65em;
				}

		}

		@media screen and (max-width: 980px) {

			.wrapper {
				padding: 5em 3em 3em 3em;
			}

				.wrapper > .inner {
					width: 100%;
				}

		}

		@media screen and (max-width: 736px) {

			.wrapper {
				padding: 3em 2em 1em 2em;
			}

		}

		@media screen and (max-width: 480px) {

			.wrapper {
				padding: 2em 1em 0.1em 1em;
			}

		}

/* Header */

	body {
		padding-top: 75px;
	}

		body.landing {
			padding-top: 0;
		}

		@media screen and (max-width: 1024px) {

			body {
				padding-top: 50px;
			}

		}

/*
	#header {
		background: #07090c;
		color: rgba(255, 255, 255, 0.75);
		cursor: default;
		height: 3.25em;
		left: 0;
		line-height: 3.25em;
		position: fixed;
		text-align: right;
		top: 0;
		width: 100%;
		z-index: 10001;
	}

		#header > h1 {
			color: #fff;
			display: inline-block;
			height: inherit;
			left: 1.25em;
			line-height: inherit;
			margin: 0;
			padding: 0;
			position: absolute;
			top: 0;
		}

			#header > h1 a {
				font-size: 1.25em;
			}

		#header a {
			-moz-transition: color 0.2s ease-in-out;
			-webkit-transition: color 0.2s ease-in-out;
			-ms-transition: color 0.2s ease-in-out;
			transition: color 0.2s ease-in-out;
			color: #fff;
			display: inline-block;
			margin-right: 1.25em;
			text-decoration: none;
		}

			#header a[href="#nav"] {
				text-decoration: none;
				-webkit-tap-highlight-color: transparent;
			}

				#header a[href="#nav"]:before {
					content: "";
					-moz-osx-font-smoothing: grayscale;
					-webkit-font-smoothing: antialiased;
					font-family: FontAwesome;
					font-style: normal;
					font-weight: normal;
					text-transform: none !important;
				}

				#header a[href="#nav"]:before {
					margin: 0 0.5em 0 0;
				}

			#header a + a[href="#nav"]:last-child {
				border-left: solid 1px transparent;
				padding-left: 1.25em;
				margin-left: 0.5em;
			}

		#header.alt {
			background-color: transparent;
			font-size: 1.25em;
			padding: 1em 2em;
			position: absolute;
		}

			#header.alt > h1 {
				color: inherit;
				position: static;
				float: left;
			}

			#header.alt a[href="#nav"] {
				margin-right: 0;
			}

	@media screen and (max-width: 980px) {

		body {
			padding-top: 44px;
		}

		#header {
			height: 44px;
			line-height: 44px;
		}

			#header > h1 {
				left: 1em;
			}

				#header > h1 a {
					font-size: 1em;
				}

			#header.alt {
				font-size: 1em;
			}

	}

	@media screen and (max-width: 480px) {

		#header {
			min-width: 320px;
		}

			#header > h1 {
				left: 1em;
			}

			#header.alt {
				padding: 0.5em 1em;
			}

	}
*/
/* Nav */
/*
	#nav {
		-moz-transform: translateX(20em);
		-webkit-transform: translateX(20em);
		-ms-transform: translateX(20em);
		transform: translateX(20em);
		-moz-transition: -moz-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
		-webkit-transition: -webkit-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
		-ms-transition: -ms-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
		transition: transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
		-webkit-overflow-scrolling: touch;
		background: #07090c;
		box-shadow: none;
		color: #fff;
		height: 100%;
		max-width: 80%;
		overflow-y: auto;
		padding: 3em 2em;
		position: fixed;
		right: 0;
		text-transform: uppercase;
		top: 0;
		visibility: hidden;
		width: 20em;
		z-index: 10002;
	}

		#nav > ul {
			margin: 0 0 1em 0;
		}

			#nav > ul {
				list-style: none;
				padding: 0;
			}

				#nav > ul > li {
					padding: 0;
				}

					#nav > ul > li > a:not(.button) {
						border: 0;
						border-top: solid 1px transparent;
						color: inherit;
						display: block;
						line-height: 3.5em;
						text-decoration: none;
					}

					#nav > ul > li > .button {
						display: block;
						margin: 0.5em 0 0 0;
					}

					#nav > ul > li:first-child > a:not(.button) {
						border-top: 0 !important;
					}

		#nav .close {
			text-decoration: none;
			-moz-transition: color 0.2s ease-in-out;
			-webkit-transition: color 0.2s ease-in-out;
			-ms-transition: color 0.2s ease-in-out;
			transition: color 0.2s ease-in-out;
			-webkit-tap-highlight-color: transparent;
			border: 0;
			color: #a5a9ad;
			cursor: pointer;
			display: block;
			height: 3.25em;
			line-height: 3.25em;
			padding-right: 1.25em;
			position: absolute;
			right: 0;
			text-align: right;
			top: 0;
			vertical-align: middle;
			width: 7em;
		}

			#nav .close:before {
				content: "";
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				font-family: FontAwesome;
				font-style: normal;
				font-weight: normal;
				text-transform: none !important;
			}

			#nav .close:before {
				font-size: 1.25em;
			}

			#nav .close:hover {
				color: #fff;
			}

			@media screen and (max-width: 736px) {

				#nav .close {
					height: 4em;
					line-height: 4em;
				}

			}

		#nav.visible {
			-moz-transform: translateX(0);
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
			box-shadow: 0 0 1.5em 0 rgba(0, 0, 0, 0.2);
			visibility: visible;
		}

		@media screen and (max-width: 736px) {

			#nav {
				padding: 2.5em 1.75em;
			}

		}
*/
/* Banner */

	#banner {
		position:relative;
		color: rgba(255, 255, 255, 0.75);
		background-color:#1f2021;
		background-attachment:fixed;
		background-image:url("../../images/banner3.jpg");
		background-size: cover;
		text-align: center;
		margin-top:0;
	}
	#banner .banner-content {
	padding:0;
	min-height:11px;
	margin-top:0;
	background: url("../../images/overlay.png") left top repeat;
	}
	#banner.banner-micro .banner-content {
	display:none;
	}
	#banner .banner-content {
	position:relative;
	}

		#banner input, #banner select, #banner textarea {
			color: #fff;
		}

		#banner a {
			color: #5481ad;
		}

		#banner strong, #banner b {
			color: #fff;
		}

		#banner h1, #banner h2, #banner h3, #banner h4, #banner h5, #banner h6 {
			color: #fff !important;
		}
		
		#banner h1 span, #banner h2 span, #banner h3 span, #banner h4 span, #banner h5 span, #banner h6 span, #banner p span {
			opacity:1;
			color:#fff !important;
			font-weight:inherit;
			padding:0 10px;
		}
		
		#banner blockquote {
			border-left-color: transparent;
		}

		#banner code {
			background: rgba(255, 255, 255, 0.05);
			border-color: transparent;
		}

		#banner hr {
			border-bottom-color: transparent;
		}

		/*#banner input[type="submit"],
		#banner input[type="reset"],
		#banner input[type="button"],
		#banner button,
		#banner .button {
			background-color: #fff;
			box-shadow: none;
			color: #1E2832 !important;
		}

			#banner input[type="submit"].icon:before,
			#banner input[type="reset"].icon:before,
			#banner input[type="button"].icon:before,
			#banner button.icon:before,
			#banner .button.icon:before {
				color: #a5a9ad;
			}

			#banner input[type="submit"]:hover,
			#banner input[type="reset"]:hover,
			#banner input[type="button"]:hover,
			#banner button:hover,
			#banner .button:hover {
				background-color: white;
			}

			#banner input[type="submit"]:active,
			#banner input[type="reset"]:active,
			#banner input[type="button"]:active,
			#banner button:active,
			#banner .button:active {
				background-color: #f2f2f2;
			}

			#banner input[type="submit"].special,
			#banner input[type="reset"].special,
			#banner input[type="button"].special,
			#banner button.special,
			#banner .button.special {
				background-color: #5481ad;
				box-shadow: none;
				color: #fff !important;
			}

				#banner input[type="submit"].special:hover,
				#banner input[type="reset"].special:hover,
				#banner input[type="button"].special:hover,
				#banner button.special:hover,
				#banner .button.special:hover {
					background-color: #EC5D36;
				}

				#banner input[type="submit"].special:active,
				#banner input[type="reset"].special:active,
				#banner input[type="button"].special:active,
				#banner button.special:active,
				#banner .button.special:active {
					background-color: #1b292b;
				}

			#banner input[type="submit"].alt,
			#banner input[type="reset"].alt,
			#banner input[type="button"].alt,
			#banner button.alt,
			#banner .button.alt {
				background-color: transparent;
				box-shadow: inset 0 0 0 2px #fff;
				color: #fff !important;
			}

				#banner input[type="submit"].alt:hover,
				#banner input[type="reset"].alt:hover,
				#banner input[type="button"].alt:hover,
				#banner button.alt:hover,
				#banner .button.alt:hover {
					background-color: rgba(255, 255, 255, 0.05);
				}

				#banner input[type="submit"].alt:active,
				#banner input[type="reset"].alt:active,
				#banner input[type="button"].alt:active,
				#banner button.alt:active,
				#banner .button.alt:active {
					background-color: rgba(255, 255, 255, 0.1);
				}
			*/
		#banner h2 {
			font-size: 2.7em;
			margin: 0 0 .2em 0;
			padding: 0 1.5em;
			text-shadow:0px 3px 1em rgba(33,33,33,1);
		}

		#banner p {
			color: #fff;
			font-size: 2.2em;
			margin-bottom: 1.75em;
			text-transform: uppercase;
			padding:0 1.5em;
			}
		#banner p .small {
			display:inline-block;
			vertical-align:top;
			font-size:0.75em;
			opacity:.2;
			}

		#banner i.icon {
			border-radius: 100%;
			border: solid 2px #fff;
			color: #fff;
			display: inline-block;
			font-size: 3em;
			height: 2.25em;
			line-height: 1.25em;
			margin-bottom: 0.5em;
			padding: 0.5em;
			width: 2.25em;
		}
		#banner i.logo-banner {
		display: inline-block;
		font-size:3em;
		background:url(../img/logo.png) center center no-repeat;
		background-size:contain;
		border-color:rgba(255,255,255,.5);
		height: 3.3em;
		line-height: 3.75em;
		margin-bottom: 0.6em;
		padding: 0;
		width: 6.5em;
		}
		#banner i.logo-banner.s1 {
		background-image:url(../img/logo-3.png);
		}
		#banner i.logo-banner.s2 {
		background-image:url(../img/ampoule-2.png);
		}
		#banner i.logo-banner.s3 {
		background-image:url(../img/oreille-2.png);
		}
		#banner i.logo-banner.s4 {
		background-image:url(../img/oeil-2.png);
		}
		#banner a .icon {
		font-size: 1em;
		-webkit-transition: all .18s ease;
		-moz-transition: all .18s ease;
		-ms-transition: all .18s ease;
		-o-transition: all .18s ease;
		transition: all .18s ease;
		}
		#banner a:hover .icon {
		background-color:rgba(255,255,255,.92);
		color:rgba(31,32,33,.9);
		}
		#banner a .icon.bull {
			width:80px;
			height:80px;
			line-height:80px;
			border-radius:40px;
			font-size:1.1em;
			}

		@media screen and (max-width: 1680px) {

			#banner {
				/*padding: 11em 0 9em 0;*/
			}
			#banner .banner-content {
			padding:0;
			min-height:9px;
			}
			#banner a .icon.bull {
			width:70px;
			height:70px;
			line-height:70px;
			border-radius:35px;
			font-size:1em;
			}

		}

		@media screen and (max-width: 1280px) {

			#banner {
				/*padding: 9em 0 7em 0;*/
			}

				#banner h2 {
					font-size: 2.2em;
				}
			#banner i.logo-banner {
				height: 3em;
				width: 5em;
				}
			#banner .banner-content {
			padding:0;
			min-height:7px;
			}
			#banner a .icon.bull {
			width:60px;
			height:60px;
			line-height:60px;
			border-radius:30px;
			font-size:.88em;
			}
		}
		@media screen and (max-width: 1024px) {
			#banner .banner-content {
			padding-top:60px;
			min-height:70px;
			}
		}

		@media screen and (max-width: 980px) {
			#banner h2 {
			font-size:1.7em;
				/*padding: 5em 2em 3em 2em;*/
			}
			
			#banner a .icon.bull {
			width:50px;
			height:50px;
			line-height:50px;
			border-radius:25px;
			font-size:.85em;
			}

			#banner i.logo-banner {
				height: 2.8em;
				width: 5em;
				margin-bottom:.4em;
				}
		}

		@media screen and (max-width: 736px) {

			#banner {
				/*padding: 3em 2em 1em 2em;*/
			}

				#banner h2 {
					font-size: 1.4em;
					margin-bottom:0;
				}

				#banner p {
					font-size: 1em;
					margin-top:0;
				}
				#banner p .small {
				font-size:1.1em;
				}

				#banner a .icon {
					font-size: 1em;
				}
				#banner a .icon.bull {
					font-size: .8em;
				}
			#banner i.logo-banner {
				height: 2em;
				width: 4em;
				margin-bottom:.3em;
				}
		}
		@media screen and (max-width: 640px) {
			#banner .banner-content {
			padding-top:20px;
			min-height:70px;
			}
			#banner i.logo-banner {
				height: 1.6em;
				width: 3.2em;
				margin-bottom:.2em;
				}
			#banner p {
				margin-bottom:.5em;
				}
			#banner ul,
			#banner ul li {
			margin-bottom:0;
			}
			#banner a .icon.bull {
			width:40px;
			height:40px;
			line-height:40px;
			border-radius:25px;
			font-size:.75em;
			}
		}

		@media screen and (max-width: 480px) {
			#banner i.logo-banner {
				height: 1.4em;
				width: 2.8em;
				margin-bottom:.2em;
				}
			#banner {
				/*padding: 2em 2em 1em 2em;*/
			}
			#banner h2 {
					font-size: 1em;
				}
				
				#banner a .icon.bull {
					font-size: .75em;
				}
			#banner p .small {
				font-size:.9em;
				}
		}
		@media screen and (max-width: 360px) {
			#banner .banner-content {
			padding-top:25px;
			min-height:70px;
			}
			#banner i.logo-banner {
				height: 1.4em;
				width: 2.8em;
				margin-bottom:.25em;
				}
			#banner p {
				margin-bottom:.7em;
				}
			#banner h2 {
					font-size: .95em;
				}
			#banner ul li {
			margin-top:.5em;
			}
				#banner a .icon.bull {
					font-size: .8em;
				}
			#banner p .small {
				font-size:.9em;
				}
		}

/* Main */

	#main {
		padding: 0;
	}

		@media screen and (max-width: 1280px) {

			#main {
				padding: 0;
			}

		}

		@media screen and (max-width: 1024px) {

			#main {
				padding: 0;
			}

		}

		@media screen and (max-width: 736px) {

			#main {
				padding: 0;
			}

		}

/* Footer */

	#footer {
		position:relative;
		/*background-color: #e8e8e8;
		border-top:1px solid #d8d8d8;*/
		color: #212121;
		text-align: center;
		margin-bottom:-75px;
		bottom:0;
		font-size:1em;
	}

		#footer input, #footer select, #footer textarea {
			color: #fff;
		}

		#footer a {
			color: #fff;
		}

		#footer strong, #footer b {
			color: #fff;
		}

		#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 {
			color: #fff;
		}

		#footer blockquote {
			border-left-color: transparent;
		}

		#footer code {
			background: rgba(255, 255, 255, 0.05);
			border-color: transparent;
		}

		#footer hr {
			border-bottom-color: transparent;
		}

		#footer a {
			-moz-transition: color 0.2s ease-in-out;
			-webkit-transition: color 0.2s ease-in-out;
			-ms-transition: color 0.2s ease-in-out;
			transition: color 0.2s ease-in-out;
			color: #fff;
		}

			#footer a:active, #footer a:focus, #footer a:hover {
				color: #fff;
			}

		#footer .inner {
			padding: 4em 0 2em 0;
			border-top: solid 1px rgba(255, 255, 255, 0.1);
			margin: 0 auto;
			width: 75%;
		}

		#footer ul.icons li {
			padding-right: 2.5em;
		}

			#footer ul.icons li:last-child {
				padding-right: 0;
			}

		#footer .copyright {
			color: #666;
			font-size: 0.85em;
			margin:auto;
			padding: 1em 0 0;
		}

			#footer .copyright li {
				display: inline-block;
				list-style: none;
				margin: 0 0.1em;
			}
		#footer .droitinfo {
			width:100%;
			max-width:750px;
			margin:auto;
			color:#777;
			padding:0 0 1em;
			font-size:.7em;
			line-height:1em;
			text-align:center;
			}
		@media screen and (max-width: 1280px) {
		
		}
		@media screen and (max-width: 1024px) {
		
			#footer .droitinfo {
			width:90% !important;
			margin:0 auto;
			text-align:justify !important;
			}
		}

		@media screen and (max-width: 980px) {

			#footer .inner {
				padding: 5em 0 3em 0;
				width: 100%;
			}

		}

		@media screen and (max-width: 736px) {

			#footer .inner {
				padding: 3em 0 1em 0;
			}

			#footer .copyright li {
				display: block;
				margin: 0;
			}

			#footer ul.icons li {
				font-size: 0.9em;
			}

		}

		@media screen and (max-width: 480px) {

			#footer .inner {
				padding: 2em 0 0.1em 0;
			}

		}