@charset "UTF-8";
@import "reset.css";


/* CSS Document */


/*
	----------------------------
	HTML SELECTORS
	____________________________
*/


body { background: #333; font:14px/21px Helvetica, Arial, sans-serif; color: #333; margin: 0; padding: 0; }
a { color: #ccc; text-decoration: none; }
a:hover { color: #fb2b2b; }
h1, h2 { font-size: 26px; line-height: 28px; font-weight: normal; letter-spacing: -1px; color: #fff; }
h3 { font-size: 18px; font-weight: normal; margin: 8px 0; }
h4 { font-size: 14px; font-weight: normal; margin: 0; }
h5 { font-size: 12px; font-weight: normal; margin: 0; }
ol { margin-left: 36px; }


/*
	----------------------------
	LAYOUT
	____________________________
*/


#wrapper { width: 960px; margin: 0 auto; padding: 48px 0 72px; }
#main { width: 800px; float: left; }
#main > p, #main > div { margin-left: 7px; }
#cont {
	position:fixed;
    bottom:0;  
	left:0; 
	background-color: #333;
	width: 100px;
	padding-left: 40px;
	padding-top: 5px;
}
/*
	----------------------------
	PAGE/SECTION SPECIFIC
	____________________________
*/


#video-controls { width: 333px; }
#video-controls a { color: #ddd; text-decoration: none; }


/*
	----------------------------
	UTILITY CLASSES
	____________________________
*/


.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
	----------------------------
	LISTS
	____________________________
*/

ul {
  text-align: center;
  display: inline;
  margin: 0;
  padding: 0px;
  list-style: none;
 }
 
ul li {
	font: 12px/18px sans-serif;
	display: inline-block;
	margin-right: -4px;
	position: relative;
	padding: 15px 20px;
	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 ul {
  padding: 0;
  position: absolute;
  top: 48px;
  left: 0 px;
  width: 150px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: none;
  opacity: 0;
  visibility: hidden;
 
}
ul li ul li { 
   position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
 
  background: #ff6677; 
   opacity: 0.6;
  display: block; 
  color: #000;
  
}
ul li ul li:hover {
	background: #666;
	text-align: left;
}
ul li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
}
