/* ----------------------------------
#. Global
---------------------------------- */

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700);

* {
	-webkit-font-smoothing: antialiased;
}

img {
	border: none;
}

/* ----------------------------------
#. Body
---------------------------------- */

html, body {
	margin: 0;
	padding: 0;
}

body {
	color: #555;
	font: 13px 'Open Sans', Helvetica, Arial, sans-serif;
	background: #7B92B7;
}

/* ----------------------------------
#. General
---------------------------------- */

.clear {
	clear: both;
}

hr {
	margin: 20px 0;
	border: none;
	height: 3px;
	border-top: 1px dotted #ccc;
	border-bottom: 1px dotted #ccc;
}

.list {
	margin: 20px 0;
	padding: 0;
}

.list li {
	list-style: none;
	padding: 3px 0 3px 20px;
	background: url('../img/li.png') left center no-repeat;
}

/* ----------------------------------
#. Typography
---------------------------------- */

a {
	color: #0b187c;
	text-decoration: none;
	-webkit-transition: color 0.3s ease;
}

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

.wrapper {
	background: #f4f4f4;
	width: 1050px;
	margin: 0 auto;
}

/* ----------------------------------
#. Messages
---------------------------------- */

.error {
	padding: 10px 20px;
	color: #fff;

	background: #c3474b;
	
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
	
	border: 1px solid #7b2526;
}

	.error ul {
		margin: 0;
		padding: 0;
	}
	
	.error ul li {
		list-style: none;
		padding: 3px 0;
	}
	
.success {
	padding: 10px 20px;
	color: #fff;

	background: #60be5e;
	
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
	
	border: 1px solid #227737;
}

/* ----------------------------------
#. Form
---------------------------------- */

form {
	
}

	form label {
		display: block;
		margin: 10px 0;
	}
	
	form input[type='text'],
	form textarea {
		padding: 10px;
		border: 1px solid #ddd;
		border-radius: 3px;
		outline: none;
		box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
	}
	
	form input[type='text'] {
		width: 200px;
	}
	
	form textarea {
		width: 400px;
		height: 100px;
		min-height: 100px;
	}
	
	form input[type='submit'] {
		margin-top: 20px;
		padding: 10px 15px;
		
		border: 1px solid #3f4d60;
			
		box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 1px 3px rgba(0, 0, 0, 0.1);
		
		background-color: #7b92b7;
		background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(123, 146, 183)), to(rgb(106, 127, 157)));
		background-image: -webkit-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		background-image: -moz-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		background-image: -o-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		background-image: -ms-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		background-image: linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#7b92b7', EndColorStr='#6a7f9d');
		
		color: #fff;
		
		border-radius: 3px;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		
		box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
	}
	
		form input[type='submit']:hover {
			cursor: pointer;
		}

/* ----------------------------------
#. Container
---------------------------------- */

.container {
	width: 940px;
	margin: 0 auto;
}

/* ----------------------------------
#. Header
---------------------------------- */

.header {
	padding: 30px 25px;
}

	.header .logo {
		float: left;
	}
	
	.header .contact {
		float: right;
		font-size: 20px;
		text-align: right;
		line-height: 30px;
	}
	
		.header .contact p {
			margin: 0;
		}
		
		.header .contact h3 {
			font-size: 16px;
			color: #fff;
			padding: 5px 15px;
			
			border-radius: 3px;
			-moz-border-radius: 3px;
			-webkit-border-radius: 3px;
			
			border: 1px solid #3f4d60;
			
			box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 1px 3px rgba(0, 0, 0, 0.1);
			
			background-color: #7b92b7;
			background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(123, 146, 183)), to(rgb(106, 127, 157)));
			background-image: -webkit-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
			background-image: -moz-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
			background-image: -o-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
			background-image: -ms-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
			background-image: linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
			filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#7b92b7', EndColorStr='#6a7f9d');
		}
	
	.navigation {
		margin-left: -5px;
		width: 1060px;
		position: relative;
		
		border: 1px solid #3f4d60;
			
		box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 1px 3px rgba(0, 0, 0, 0.1);
		
		background-color: #7b92b7;
		background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(123, 146, 183)), to(rgb(106, 127, 157)));
		background-image: -webkit-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		background-image: -moz-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		background-image: -o-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		background-image: -ms-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		background-image: linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#7b92b7', EndColorStr='#6a7f9d');
	}
	
		.navigation .nav-left,
		.navigation .nav-right {
			position: absolute;
			bottom: -5px;
			width: 5px;
			height: 5px;
			background-repeat: no-repeat;
			background-position: center center;
		}
		
		.navigation .nav-left {
			left: 0;
			background-image: url('../img/nav-left.png');
		}
		
		.navigation .nav-right {
			right: 0;
			background-image: url('../img/nav-right.png');
		}
	
		.navigation ul {
			margin: 0;
			padding: 0;
		}
		
		.navigation ul li {
			float: left;
			list-style: none;
		}
		
			.navigation ul li.has_children {
				position: relative;
			}
			
			.navigation ul li.has_children > a {
				padding-right: 30px;
				background: url('../img/has_children.png') right center no-repeat;
				
				-webkit-transition: color 0.3s ease, background-image 0.3s ease;
			}
				
				.navigation ul li.has_children:hover ul {
					display: block;
				}
				
				.navigation ul li.has_children.current > a {
					background:
						url('../img/has_children.png') right center no-repeat,
						url('../img/10-opac.png') top left repeat
					;
				}
			
			.navigation ul li.has_children ul {
				display: none;
				
				position: absolute;
				top: 46px;
				left: 0px;
				z-index: 9999;
				
				background: #000;
				border-bottom: 2px solid #555;
			}
			
			.navigation ul li.has_children ul li {
				float: none;
			}
			
			.navigation ul li.has_children ul li a {
				padding: 10px 20px;
				width: 110px;
			}
		
		.navigation ul li a {
			color: rgba(255, 255, 255, 0.6);
			display: block;
			padding: 15px 20px;
		}
		
		.navigation ul li.current a,
		.navigation ul li a:hover {
			color: #fff;
			background-color: #000;
		}
		
		.navigation ul li.hovered a {
			background-color: #000;
		}
		
		.navigation ul li.current a {
			background: url('../img/10-opac.png');
		}
		
/* ----------------------------------
#. Content
---------------------------------- */

.content {
	padding: 50px 25px;
}

	.content p {
		line-height: 20px;
	}
	
	.content.full-width {
		
	}
	
	.content.full-width .inner {
		width: 848px;
		padding: 20px;
	}
	
	.content.full-width .sidebar {
		display: none;
	}
	
/* ----------------------------------
#. Columns
---------------------------------- */

.columns {
		
}

.columns .column {
	float: left;
	width: 424px;
	margin-right: 50px;
}

.columns .column.last {
	margin-right: 0;
}

/* ----------------------------------
#. Inner
---------------------------------- */

.inner {
	width: 558px;
	float: left;
	
	padding: 20px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

	.inner h1 {
		margin-top: 0;
		margin-bottom: 30px;
		font-size: 22px;
	}

/* ----------------------------------
#. Sidebar
---------------------------------- */

.sidebar {
	float: left;
	width: 260px;
	margin-left: 40px;
}

	.sidebar h2:first-child {
		margin-top: 0;
		font-size: 22px;
		margin-bottom: 30px;
	}
	
	.sidebar input[type='text'],
	.sidebar textarea {
		width: 236px;
	}
	
	.sidebar .cta {
		padding: 10px 15px;
		
		color: #fff;
		
		border-radius: 3px;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border: 1px solid #3f4d60;
			
		box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 1px 3px rgba(0, 0, 0, 0.1);
		
		background-color: #7b92b7;
		background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(123, 146, 183)), to(rgb(106, 127, 157)));
		background-image: -webkit-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		background-image: -moz-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		background-image: -o-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		background-image: -ms-linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		background-image: linear-gradient(top, rgb(123, 146, 183), rgb(106, 127, 157));
		filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#7b92b7', EndColorStr='#6a7f9d');
	}
	
/* ----------------------------------
#. Content Slider
---------------------------------- */

.content-slider-wrapper {
	padding: 50px 0;
	background: #d8d9db;
				background-image: url('../img/gallery/loading.gif');
				background-position: center center;
				background-repeat:no-repeat;
}

	.content-slider-wrapper li {
		background: #fff;
		padding-bottom: 15px;
	}
	
		.content-slider-wrapper li .slide-content {
			padding: 15px;
			text-align: center;
			position: relative;
		}
		
			.content-slider-wrapper li .slide-content .slide-caption {
				position: absolute;
				bottom: 15px;
				left: 15px;
				width: 210px;
				font-size: 13px;
				color: #fff;
				padding: 10px;
				font-weight: 600;
				background: rgba(0, 0, 0, 0.6);
			}
	
.bx-wrapper {
	margin-bottom: 0 !important;
}

.bx-viewport {
	background: none !important;
	left: 0 !important;
	border: none !important;
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
}

.bx-controls-direction {
	
}

	.bx-controls-direction .bx-next {
		right: -50px !important;
	}
	
	.bx-controls-direction .bx-prev {
		left: -50px !important;
	}
	
/* ----------------------------------
#. Gallery
---------------------------------- */

.gallery {
	margin: 0px;
	padding: 0;
}

	.gallery li {
		list-style: none;
		width: 209px;
		height: 150px;
		float: left;
		margin-right: 20px;
		margin-bottom: 20px;
		overflow: hidden;
	}
		
		.gallery li.last {
			margin-right: 0;
		}
	
	.gallery li img {
		max-width: 100%;
		min-height: 100%;
	}

/* ----------------------------------
#. Footer
---------------------------------- */

.footer {
	color: #fff;
	background: #7B92B7;
}

	.footer .upper {	
		font-size: 16px;
		padding: 30px 0;
		font-weight: 600;
	}
	
	.footer .lower {
		padding: 30px 0;
		background: url('../img/10-opac.png');
	}
	
	.footer .lower .col {
		float: left;
		width: 220px;
		margin-right: 20px;
	}
	
		.footer .lower .col.last {
			width: 460px;
			margin-right: 0;
		}
		
	.footer .lower .col h3 {
		font-size: 14px;
		color: #fff;
		text-transform: uppercase;
	}
		
	.footer .lower .col ul {
		margin: 0;
		padding: 0;
	}
	
	.footer .lower .col ul li {
		list-style: none;
		padding: 3px 0;
	}
	
		.footer .lower .col ul li.has_children {
			
		}
		
		.footer .lower .col ul li.has_children ul {
			display: none;
		}
	
	.footer .lower .col ul li a {
		color: rgba(255, 255, 255, 0.4);
	}
	
		.footer .lower .col ul li.current a,
		.footer .lower .col ul li a:hover {
			color: #fff;
		}
		

	/* ----------------------------------
#. Areas
---------------------------------- */

.areas {
	list-style: none;
	padding: 0px;
	margin: 0;
	text-align: center;
	margin-top: 20px;
	padding-top: 10px;
	border-top: 1px dotted #ccc;
	display: none;
}

	.areas li {
		display: inline-block;
		padding: 5px 10px;
	}
	.areas li a{
		color:#f0f0f0;
	}