@charset "utf-8";
@import url("../webfonts/colaborate/font_colaborate.css");

/* CSS Document */

a{
	color: #333;
	text-decoration: none;
}
#header {
	width: 1220px;
  	margin-left: auto;
  	margin-right: auto;}
	#header_left {
		float: left; 
		width: 590px;
		height: 48px;
		margin: 12px 0px 0px 20px;}
		#header_left img{
			border: 0px;
			max-width: 100%;}
		#header_left_b1 {
			float: left; 
			width: 48px;
			height: 48px;
			background-color: #34495E;
			border: 0px;
			margin: 0px 10px 0px 0px;}
			#header_left_b1:hover {
				box-shadow: 0 0 10px rgba(52, 73, 94, 1);
				-webkit-box-shadow: 0 0 10px rgba(52, 73, 94, 1); 
				-moz-box-shadow: 0 0 10px rgba(52, 73, 94, 1);}
		#header_left_b2 {
			float: left; 
			width: 48px;
			height: 48px;
			background-color: #E67E22;
			border: 0px;
			margin: 0px 10px 0px 0px;}
			#header_left_b2:hover {
				box-shadow: 0 0 10px rgba(211, 84, 0, 1);
				-webkit-box-shadow: 0 0 10px rgba(211, 84, 0, 1); 
				-moz-box-shadow: 0 0 10px rgba(211, 84, 0, 1);}
		#header_left_b3 {
			float: left; 
			width: 48px;
			height: 48px;
			background-color: #9B59B6;
			border: 0px;
			margin: 0px 10px 0px 0px;}
			#header_left_b3:hover {
				box-shadow: 0 0 10px rgba(142, 68, 173, 1);
				-webkit-box-shadow: 0 0 10px rgba(142, 68, 173, 1); 
				-moz-box-shadow: 0 0 10px rgba(142, 68, 173, 1);}
		#header_left_b4 {
			float: left; 
			width: 48px;
			height: 48px;
			background-color: #2ECC71;
			border: 0px;
			margin: 0px 0px 0px 0px;}
			#header_left_b4:hover {
				box-shadow: 0 0 20px rgba(39, 174, 96, 1);
				-webkit-box-shadow: 0 0 20px rgba(39, 174, 96, 1); 
				-moz-box-shadow: 0 0 20px rgba(39, 174, 96, 1);}
	#header_right {
		float: left; 
		width: 590px;
		height: 48px;
		margin: 12px 0px 0px 0px;
		text-align: right;
		line-height: 48px;
		font-family: Colaborate;
		font-size: 18px;
		font-weight: bold;
		font-variant: small-caps;
		color: #333;}

ul {
	text-align: center;
	display: inline;
	margin: 0;
	padding: 15px 4px 17px 0;
	list-style: none;
}

ul li {
	font: bold 16px/24px Colaborate;
	display: inline-block;
	margin-right: -8px;
	position: relative;
	padding: 15px 40px;
	background: #fff;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

ul li:hover {
	background: #5F5836;
	color: #fff
}

ul li ul {
	padding: 0;
	position: absolute;
	top: 54px;
	left: 0;
	width: 250px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	display: none;
	opacity: 0;
	visibility: hidden;
	-webkit-transiton: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	-transition: opacity 0.2s;
}

ul li ul li { 
	text-align: left;
	font: bold 14px/18px Colaborate;
	background: #C1B993; 
	display: block; 
	color: #fff;
}

ul li ul li:hover { 
	background: #867C4D;
}

ul li:hover ul {
	display: block;
	opacity: 1;
	visibility: visible;
}