@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	font: Arial, Helvetica, sans-serif;
	font-family: Arial, Helvetica, sans-serif;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (max-width: 499px) {
	.headercontent {
		margin-left: auto ;
	}
	
	.main {
		width: 90%;
	}
}

@media screen and (min-width: 500px) {
	.headercontent {
		margin-left: 20% ;
	}
	
	.main {
		width: 60%;	
	}
}

a {
	text-decoration: none;
	color: inherit;
}

.background {
	background-repeat: repeat;
	background-image: url(images/hexabump.png);
}

#bannername {
	color: #000;
	background-color: #FFC;
	padding: 10px;
}

.dropdown ul{
	font-size: 12px;
	font-weight: bold;
	position: absolute;
	display: block;
	visibility: hidden;
	text-align: center;
	line-height: 30px;
	width: inherit;
}

.dropdown:hover ul{
	visibility: visible;
}

.dropdown ul li {
	background-color: #FFC;
	float: none;
	width: auto;
}

.dropdown ul li:hover {
	color: #FFF;
}

.headermain {
	background-color:#FFC;
		
	-moz-box-shadow: 0px 5px 5px rgba(0,0,0,0.6);
	-webkit-box-shadow: 0px 5px 5px rgba(0,0,0,0.6);
	box-shadow: 0px 5px 5px rgba(0,0,0,0.6);
}

.main {
	background-color: #FFF;
	padding: 20px;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	min-height: 800px;
	
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.6);
	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.6);
	box-shadow: 5px 5px 5px rgba(0,0,0,0.6);
}

.main a {
	text-decoration: underline;
	font-weight: bold;
}

.main a:hover {
	color: #666;	
}

.main ul {
	list-style-type: none;
}

.navbar {
}

.navigation {
	background-color: #FFC;
	overflow: hidden;
	line-height: 40px;
	zoom: 1;
	list-style-type: none;

}

.navigation a {
	display: block;
}

.navigation li {
	float: left;
	border-left: 5px solid #666;
	cursor: pointer;
	list-style-type: none;
	min-width: 80px;
	width: 20%;

	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
}

.navigation li h2 {
	font-family: georgia;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
}

.navigation li:hover {
	background-color: #333;
	border-left: 5px solid #000;
}

.navigation li:hover h2 {
	font-weight: bold;
	color: #FFF;
}

.thumbnails {
	overflow: scroll;
	overflow-y: hidden;
	white-space: nowrap;
	width: 100%;
	height: 90px;
}

.thumbnails img {
	height: 60px;
	border: 4px solid #333;
}

.thumbnails img:hover {
	border: 4px solid #666;
	curser: pointer;	
}

.preview {
	text-align: center;
}

.preview img {
	border: 4px solid #333;
	width: 100%;
	max-width: 500px;
}

.video {
	background-color: #000;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 480px;
}

