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

html, body { height:100%; width:100%; margin:0; padding:0; background:url(images/DSCN0950-05.jpg) no-repeat; background-position:50% 75px; background-attachment:fixed; font-family:Arial, Helvetica, sans-serif; }

a { color:#09F; font-weight:bolder; text-decoration:none; }
a:hover {color:#F00;}

#menu_bar {
	width: 100%;
	height:50px;
	background: #006; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#006, #000); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#006, #000); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#006, #000); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#006, #000); /* Standard syntax */
	
}

#main {margin:auto; padding-top:10px;}

.body_textl {float:left; padding:5px;}

#footer {margin:auto; text-align:center; clear:both;}
#footer a { color:#09F; font-weight:bolder; text-decoration:none; }
#footer a:hover {color:#F00;}

.evt_date {text-align:left; }
.evt_detail {overflow:hidden; text-align:center; }

.videotile { margin:15px; width:122px; height:140px; float:left; position:relative; z-index:20; }
.videotile:hover {cursor:pointer;}
.videotile p {font-size:12px; text-align:center; }


/*Strip the ul of padding and list styling*/
nav_ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

/*Create a horizontal list with spacing*/
nav_li {
	display:table;
	float: left;
	margin-right: 1px;
}

/*Style for menu links*/
nav_li a {
	display:block;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	text-decoration: none;
}

/*Hover state for top level links*/
nav_li:hover a {
	background:#BE2200;
	color:#fff;
}

/*Style for dropdown links*/
nav_li:hover nav_ul a {
	background: #f3f3f3;
	color: #2f3036;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
nav_li:hover nav_ul a:hover {
	background: #19c589;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
nav_li nav_ul {
	display: none;
}

/*Make dropdown links vertical*/
nav_li nav_ul nav_li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
nav_li nav_ul nav_li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
nav_ul nav_li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	display: none;
}

/*Hide checkbox*/
/*input[type=nav_checkbox]{*/
#show-menu {
    display: none;
}

/*Show menu when invisible checkbox is checked*/
/* input[type=checkbox]:checked ~ #menu{ */
#show-menu:checked ~ #menu {
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 760px){
	/*Make dropdown links appear inline*/
	nav_ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	nav_li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	nav_ul nav_li, nav_li a {
		width: 100%; background:#2f3036;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
	
	#main {width:100%; padding:0;}

	.body_textr {float:left; width:100%;}
}

@media screen and (min-width : 760px) {
	
	#menu_div {width:80%; margin:auto; height:50px;}
	
	#main {width:80%;}
	
	.body_textr {float:right;}
	
	nav_ul {width:90%;}
	
	nav_li { min-width:14%; }
	
}

@media screen and (min-width : 1000px) {

		
}