/***************************************************
			      Reset
***************************************************/
html, body, div, span, h1, h2, h3, h4, h5, h6, p, ol, ul, li, form, label, legend, caption, aside, details, figcaption, figure, footer,header, hgroup, menu, nav, section, summary {
    margin: 0;
	padding: 0;
	border: 0;
	font-weight: normal;
}

ol, ul {
	list-style: none;
}


a img { border:none }
a { text-decoration:none; border: 0;}
a:hover { text-decoration:none; }

aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {display: block}

html, html a {
    -webkit-font-smoothing: antialiased !important;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}

/***************************************************
			      Global styles
***************************************************/
@font-face {
    font-family: 'open sans';
    src: url('fonts/OpenSans-Regular-webfont.eot');
    src: url('fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/OpenSans-Regular-webfont.woff') format('woff'),
         url('fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
         url('fonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
body {
	background: ;
	font-family: 'open sans', Verdana, sans-serif;
	font-size: 13px;
	color: #444;
}
#wrapper {
	width: 940px;
	margin: 0 auto;
	padding: 25px;
	background: #fff;
}
.clearfix:after { 
   content: "."; 
   visibility: hidden; 
   display: block; 
   height: 0; 
   clear: both;
}
.clear {
	clear: both;
}
h1, h2, h3, h4, h5, h6{
	margin-bottom: 16px;
}
#main h1, #main  h2, #main  h3, #main  h4, #main  h5, #main  h6{
	margin-top: 16px;
	font-weight: bold;
}
h1 {
	font-size: 20px;
}
h2 {
	font-size: 18px;
}
h3{
	font-size: 16px;
}
h4{
	font-size: 14px;
}
h5 {
	font-size: 12px;
}
h6 {
	font-size: 10px;
}
a{
	color: #00BCF2;
}
img {
	display: block;
    max-width: 100%;
}
.alignleft {
	float: left;
	margin-right: 20px;
}
.alignright {
	float: right;
	margin-left: 20px;
}
a img{
	transition-property:opacity; 
	transition-duration: 0.2s; 
	transition-timing-function: ease-out;
}
a img:hover{
	opacity: 0.5;
}
/***************************************************
				Logo & Navigation
***************************************************/
header {
	height: 70px;
	padding: 5px 0 5px 0;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}
#logo {
	width: 190px;
	float: left;
}
#logo a img 	{ 
	transition-property:opacity; 
	transition-duration: 0.2s; 
	transition-timing-function: ease-out;
}
#logo a img:hover { 
	opacity: 0.5;
}
nav {
	width: 740px;
	float: right;
	margin-top: -4px;
}
nav ul {
	float: right;
    
}
nav ul li {
	position: relative;
	float: left;
	margin-left: 40px;
    
}
nav ul li a { 
	display: block; 
	font-weight: normal; 
	text-transform: uppercase; 
    text-align: right;
	color: #aaa; 
	font-size: 13px; 
	padding: 14px 0px 47px 10px;
    -webkit-transition: color 1s ease-out; /* Saf3.2+, Chrome */
    -moz-transition: color 1s ease-out; /* Firefox 4+ */
    -ms-transition: color 1s ease-out; /* IE10+ */
    -o-transition: color 1s ease-out; /* Opera 10.5+ */
    transition: color 1s ease-out;
  
    -webkit-transition: border-bottom 0.1s ease-out; /* Saf3.2+, Chrome */
    -moz-transition: border-bottom 0.1s ease-out; /* Firefox 4+ */
    -ms-transition: border-bottom 0.1s ease-out; /* IE10+ */
    -o-transition: border-bottom 0.1s ease-out; /* Opera 10.5+ */
    transition: border-bottom 0.1s ease-out;
}
nav ul li a:hover, nav ul li a.current {
	//border-bottom: 2px solid #00BCF2;
	color: #00BCF2;
}
.dropdown{
	background: url('images/dropdown_icon.png') no-repeat right 21px;
    padding: 14px 18px 47px 10px;
}
.dropdown:hover{
    border-bottom: none;
}
.highlight {
    width: 192px;
    font-weight: normal;
    color: #222;
    background: url('images/dropdown_icon.png') no-repeat right 21px,  linear-gradient(transparent 90%, #f2005d);
    background-image: url('images/dropdown_icon.png') no-repeat right 21px;
}
.highlight:hover{
    color: #f2005d;
}

nav ul li ul{
    display: none;
    border-top: 2px solid #00BCF2;
	position: absolute;
    right: 0px;
	background-color: #eee;
	z-index: 1;
    min-width: 105px;
}
nav ul li:hover  ul{
    display: block;
}

nav ul li ul li{
    margin: 0px;
    float: right;
}
nav ul li ul li a{ 
    text-align: right;
	padding: 5px 10px;
}
nav ul li:hover ul li a:hover, nav ul li:hover ul li a.current{
	border-bottom: none;
}

/***************************************************
				    Featured
***************************************************/
#featured {
	background: url('images/featured.jpg') no-repeat;
	margin-bottom: 20px;
}
#featured a{
	display: block;
	width: 940px;
	height: 400px;
	color: #fff;
	font-size: 12px;
	position: relative;
	z-index: 0;
}
	
#featuredinfo{
	width: 700px;
	background-color: rgba(0,0,0,.8);
	padding: 5px 10px 10px 10px;
	position: absolute;
	bottom: 15%;
	left: 0;
	border-radius: 0 2px 2px 0;
  -webkit-transition: background-color 0.3s ease-out; /* Saf3.2+, Chrome */
  -moz-transition: background-color 0.3s ease-out; /* Firefox 4+ */
  -ms-transition: background-color 0.3s ease-out; /* IE10+ */
  -o-transition: background-color 0.3s ease-out; /* Opera 10.5+ */
  transition: background-color 0.3s ease-out;
}
#featured #featuredinfo:hover{
		background-color: #00BCF2;
}
#featuredinfo h1{
	text-transform: uppercase;
	margin-bottom: 5px;
}

/***************************************************
			Introduction Message	
***************************************************/
#intromessage{
	padding: 25px 35px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
	font-size: 20px;
	text-transform: uppercase;
	text-align: center;
}

/***************************************************
			   Home Articles	
***************************************************/
#articles{
	padding-bottom: 20px;
	margin-bottom: 20px;
	overflow: hidden;
}
#articles article{
	width: 220px;
	float: left;
	margin-right: 20px;
	font-size: 12px;
	overflow: hidden;
}
#articles #lastarticle{
	margin-right: 0;
}
#articles article h1{	
	text-transform: uppercase;
	margin: 5px 0;
	font-weight: bold;
	font-size: 14px;
	color: #222;
}

.rm{
	display: inline-block;
	background: #00BCF2;
	padding: 2px 10px;
	color: #fff;
	margin-top: 10px;
	border-radius: 2px;
  -webkit-transition: background-color 0.3s ease-out; /* Saf3.2+, Chrome */
  -moz-transition: background-color 0.3s ease-out; /* Firefox 4+ */
  -ms-transition: background-color 0.3s ease-out; /* IE10+ */
  -o-transition: background-color 0.3s ease-out; /* Opera 10.5+ */
  transition: background-color 0.3s ease-out;
    
	-webkit-transition: color 0.3s ease-out; /* Saf3.2+, Chrome */
  -moz-transition: color 0.3s ease-out; /* Firefox 4+ */
  -ms-transition: color 0.3s ease-out; /* IE10+ */
  -o-transition: color 0.3s ease-out; /* Opera 10.5+ */
  transition: color 0.3s ease-out;
}
.rm:hover{
	background: #888;
	color: #000;
}

/***************************************************
			   Page Title	
***************************************************/
#pagetitle{
	border-bottom: 1px solid #eee;
	height: 26px;
	padding-bottom: 25px;
	margin-bottom: 20px;
	overflow: hidden;
}
#pagetitle h1{
	font-size: 20px;
	color: #444;
	text-transform: uppercase;
	padding-right: 25px;
	border-right: 1px solid #eee;
	float: left;
}
#pagetitle p{
	font-size: 13px;
	color: #aaa;
	float: left;
	margin: 5px 0 0 30px;
	max-width: 770px;
	max-height: 18px;
	overflow: hidden;
}

/***************************************************
			  Columns  & Quotes	
***************************************************/
.half{
	display: inline-block;
	vertical-align: top;
	width: 450px;
	margin-right: -4px;
	padding: 0 10px;
	margin-bottom: 40px;
}
.one_third {
	display: inline-block;
	vertical-align: top;
	margin-right: -4px;
	padding: 0 10px;
	width: 292px;
	margin-bottom: 40px;
}
.one_fourth {
	display: inline-block;
	vertical-align: top;
	margin-right: -4px;
	padding: 0 10px;
	width: 215px;
	margin-bottom: 40px;
}	

.quote p {
	border-left: 5px solid #eee;
	padding: 0 20px;
	font-style: italic;
	margin-bottom: 40px;
	color: #888;
}


/***************************************************
			        Tables	
***************************************************/
table{
    width: 100%;
    border: 1px solid #eee; 
    border-collapse: collapse; 
	margin-bottom: 20px;
}	
table tr td, table tr th {
    border: 1px solid #eee;
}
table tr td.left {
    text-align: center;
}

#table1 td, #table1 th {
    border: 1px solid #eee;
	padding: 8px 25px 8px 12px;
}

#table2 td, #table2 th{
	border-bottom: 1px solid #eee;
	padding: 8px 26px 8px 12px;
}

hr.configFiles{
    margin-top: -5px;
    margin-bottom: -10px;
    border: 0;
    border-bottom:  1px solid #eee; 
}
table.configFiles{
    width: 100%;
    border: none; 
    margin-bottom: 30px;
}
table.configFiles td{
    vertical-align: top;
    border: none; 
    border-top:  1px solid #eee; 
    padding: 5px;
}

table.configFiles td.order{
    font-weight: 1000;
    font-size: 20px;
    padding-top: 19px;
    width: 7%;
    text-align: right;
}
table.configFiles td.dimension{
    font-weight: 800;
    font-size: 15px;
    padding-top: 25px;
    width: 14%;
    text-align: center;
}
table.configFiles td.name{
    font-weight: 800;
    width: 20%;
    text-align: right;
    padding-top: 27px;
}
.name2{
    color: lightseagreen;
}
table.configFiles td.points{
    width: 8%;
    text-align: center;
    padding-top: 27px;
}
table.configFiles td.orien{
    width: 10%;
    text-align: center;
    vertical-align: middle;
}
table.configFiles td.image{
    width: 8%;
    text-align: center;
    vertical-align: middle;
}
table.configFiles td.angles{
    width: 10%;
    text-align: center;
    vertical-align: middle;
}
table.configFiles td.weighting{
    width: 8%;
    text-align: right;
    vertical-align: middle;
}
table.configFiles td.file{
    width: 15%;
    text-align: center;
    vertical-align: middle;
}





table#databaseHeader{
    height:50px;
    background:#eee;
    text-align: center;
}
table#databaseHeader td{
    padding: 5px;
}

table#databaseLedgend{
    text-align: center;
}
table#databaseLedgend td{
    padding: 5px;
}

table#databaseLabels{
    text-align: center;
}
table#databaseLabels td{
    padding: 5px;
}

table#databaseData{
    text-align: center;
    margin-bottom: 10px;
}
table#databaseData td{
    padding: 5px;
}
table#databaseData img{
    width: 100%;
}

table#versionControl{
    text-align: center;
    margin-top: 40px;
    border: none;
}
table#versionControl tr{
    border-bottom: 1px solid black;
}
table#versionControl th, table#versionControl td{
    border: none;
}
td.update, th.update{
    text-align: left;
}


table td.c1{
    width: 8%;
}
table td.c2{
    width: 12.5%;
}
table td.c3{
    width: 19%;
}
table td.c6{
    width: 22.5%;
}


/***************************************************
			       Blog	
***************************************************/
/* The Content */
#content {
	width: 700px;
	float: left;
	margin-bottom: 20px;
}
#content article {
	margin-bottom: 50px;
}
#content p {
	margin-bottom: 20px;
}
#content h1 {
	text-transform: uppercase;
	margin-top: 0;
	font-weight: normal;
}
#content .post-title {
	text-transform: uppercase;
	margin-bottom: 0;
	color: #fff;
}
.post-image {
	position: relative;
}
.post-info {
	display: block;
	position: absolute;
	top: 60%;
	left: 0;
	max-width: 580px;
	border-radius: 0 2px 2px 0;
	background-color: rgba(0,0,0,.8);
	padding: 5px 10px 10px 10px;
  -webkit-transition: background-color 0.2s ease-out; /* Saf3.2+, Chrome */
  -moz-transition: background-color 0.2s ease-out; /* Firefox 4+ */
  -ms-transition: background-color 0.2s ease-out; /* IE10+ */
  -o-transition: background-color 0.2s ease-out; /* Opera 10.5+ */
  transition: background-color 0.2s ease-out;
}
.post-info:hover{
	background-color: #00BCF2;
}
.author, .date, .comments {
	color: #fff;
	display: block;
	float: left;
	font-size: 11px;
	padding-right: 6px;
	margin-right: 6px;
}
.date {
	background: url('images/date.png') no-repeat left;
	padding-left: 18px;
}
.comments {
	background: url('images/comments.png') no-repeat left;
	padding-left: 18px;
}
.readmore {
	display: inline-block;
	padding: 2px 10px;
	background-color: #00bcf2;
	color: #fff;
	border-radius: 2px;
	margin-top: -10px;
	-webkit-transition: background-color 0.15s ease-out; /* Saf3.2+, Chrome */
  -moz-transition: background-color 0.15s ease-out; /* Firefox 4+ */
  -ms-transition: background-color 0.15s ease-out; /* IE10+ */
  -o-transition: background-color 0.15s ease-out; /* Opera 10.5+ */
  transition: background-color 0.15s ease-out;
}
.readmore:hover {
	background: #444;
}

/* Single Post */
.author-bp, .date-bp, .comments-bp {
	color: #959595;
	display: block;
	float: left;
	font-size: 11px;
	padding-right: 6px;
	margin-right: 6px;
	margin-bottom: 4px;
}
.date-bp {
	background: url('images/date-bp.png') no-repeat left;
	padding-left: 18px;
}
.comments-bp {
	background: url('images/comments-bp.png') no-repeat left;
	padding-left: 18px;
}

/* The Sidebar */
#sidebar {
	width: 220px;
	margin: 0 0 0 20px;
	float: right;
}
#sidebar ul li{
	margin-bottom: 2px;
}
.sidebar_item {
	margin-bottom: 35px;
	font-size: 12px;

}
#sidebar h5{
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.categories ul {
	float: left;
	width: 110px;
}

/***************************************************
			      Portfolio	
***************************************************/
.portfolio article {
	width: 300px;
	float: left;
	margin: 0 20px 40px 0;
}
.portfolio .last-article {
	margin-right: 0;
}
.portfolio h1 {
	text-transform: uppercase;
	margin: 0;
	font-weight: bold;
	font-size: 14px;
	color: #222;
}

/***************************************************
			      Contact	
***************************************************/
#contact-form { 
	width: 500px;
	float: left;
}
#twitter { 
	width: 400px;
	float: right;
}
#contact_type {
    display: inline-block;
    float: left;
    text-align: right;
    margin-right: 10px;
}
#contact_info {
    display: inline-block;
}
#contact-info{ 
	width: 399px;
	padding-left: 40px;
	float: right;
	border-left: 1px solid #eee;
}
.contact p {
	margin-bottom: 20px;
}
.contact input{
	margin-right: 10px;
	border: 1px solid #e1e1e1;
	height: 25px;
}
.contact input[type="email"], .contact  input[type="user"] {
	width: 230px;
	padding: 0 6px;
}
.contact textarea {
	width: 420px;
	border: 1px solid #e1e1e1;
	height: 140px;
	padding: 6px;
}

.contact input[type="submit"]{
	font-family: 'open sans', arial, sans-serif;
}
.contact input[type="submit"]:hover {
	cursor: pointer;
}

/***************************************************
			      404	
***************************************************/
.error {
	font-size: 350px;
	text-align: center;
	margin-top: -50px;
}

/***************************************************
			Buttons  & Alerts	
***************************************************/
.button {
	padding: 2px 8px;
	display: inline-block;
	margin: 10px;
	border-radius: 2px;
	-webkit-transition: background-color 0.15s ease-out; /* Saf3.2+, Chrome */
  -moz-transition: background-color 0.15s ease-out; /* Firefox 4+ */
  -ms-transition: background-color 0.15s ease-out; /* IE10+ */
  -o-transition: background-color 0.15s ease-out; /* Opera 10.5+ */
  transition: background-color 0.15s ease-out;
}
.big-button {
	font-size: 14px;
	padding: 4px 16px;
	display: inline-block;
	margin: 10px;
	border-radius: 2px;
	-webkit-transition: background-color 0.15s ease-out; /* Saf3.2+, Chrome */
  -moz-transition: background-color 0.15s ease-out; /* Firefox 4+ */
  -ms-transition: background-color 0.15s ease-out; /* IE10+ */
  -o-transition: background-color 0.15s ease-out; /* Opera 10.5+ */
  transition: background-color 0.15s ease-out;
}
.big-button:hover, .button:hover {
	background-color: #444;
	color: #fff;
}
.red {
	background-color: #FF1A1A;
	color: #fff;
}
.light {
	background-color: #e1e1e1;
	color: #444;
}
.green{
	background-color: #99CC00;
	color: #fff;
}
.blue {
	background-color: #00bcf2;
	color: #fff;
}
.yellow {
	background-color: #FBEE00;
	color: #444;
}
.alert {
	color: #fff;
	padding: 20px 20px 20px 80px;
	margin: 10px;
	border-radius: 2px;
	background: #00bcf2 url('images/warning.png') no-repeat 15px ;
}
.note {
	color: #fff;
	padding: 20px 20px 20px 80px;
	margin: 10px;
	border-radius: 2px;
	background: #00bcf2 url('images/note.png') no-repeat 15px ;
}

/***************************************************
					Footer	
***************************************************/
footer{
	font-size: 12px;
	clear: both;
	border-top: 1px solid #eee;
	padding-top: 20px;
	margin-top: 20px;
}
footer a img{
	transition-property:opacity; 
	transition-duration: 0.2s; 
	transition-timing-function: ease-out;
}
footer a img:hover{
	opacity: 0.5;
}
footer h1, footer h2{
	color: #222;
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 15px;
}
footer h1{
	text-transform: uppercase;
}
footer h2{
	font-size: 12px;
	line-height: 0.9em;
	-webkit-transition: color 0.3s ease-out; /* Saf3.2+, Chrome */
  -moz-transition: color 0.3s ease-out; /* Firefox 4+ */
  -ms-transition: color 0.3s ease-out; /* IE10+ */
  -o-transition: color 0.3s ease-out; /* Opera 10.5+ */
  transition: color 0.3s ease-out;
}
#widget1, #widget2, #widget3{
	width: 220px;
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}
#widget4{
	float: left;
	width: 220px;
	margin-bottom: 20px;
}
#widget3 a img{
	float: left;
	clear: both;
	margin-right: 10px;
}
#footerarticle{
	height: 55px;
}
#footerarticle #fainfo{
	width: 170px;
	float: right;
}
#footerarticle p{
	font-size: 10px;
	margin: -5px 0 0 0;
	line-height: 1px;
}	
footer #footerarticle #fainfo  h2:hover{
	color: #00BCF2;
}
	
#copyrights{
	clear: both;
	padding: 20px 0;
	border-top: 1px solid #eee;
}
#copyrights p{
	float: left;
}
#disclaimer{	
	float: right;
}

/***************************************************
					Slideshow	
***************************************************/

/* ANIMATION */
@-moz-keyframes cycle {
	0%  { top:0px; }
	4%  { top:0px; } 
	16% { top:0px; opacity:1; z-index:0; } 
	20% { top:325px; opacity:0; z-index:0; } 
	21% { top:-325px; opacity:0; z-index:-1; }
	92% { top:-325px; opacity:0; z-index:0; }
	96% { top:-325px; opacity:0; }
	100%{ top:0px; opacity:1; }
	
}
@-moz-keyframes cycletwo {
	0%  { top:-325px; opacity:0; }
	16% { top:-325px; opacity:0; }
	20% { top:0px; opacity:1; }
	24% { top:0px; opacity:1; } 
	36% { top:0px; opacity:1; z-index:0; } 
	40% { top:325px; opacity:0; z-index:0; }
	41% { top:-325px; opacity:0; z-index:-1; } 
	100%{ top:-325px; opacity:0; z-index:-1; }
}
@-moz-keyframes cyclethree {
	0%  { top:-325px; opacity:0; }
	36% { top:-325px; opacity:0; }
	40% { top:0px; opacity:1; }
	44% { top:0px; opacity:1; } 
	56% { top:0px; opacity:1; } 
	60% { top:325px; opacity:0; z-index:0; }
	61% { top:-325px; opacity:0; z-index:-1; } 
	100%{ top:-325px; opacity:0; z-index:-1; }
}
@-moz-keyframes cyclefour {
	0%  { top:-325px; opacity:0; }
	56% { top:-325px; opacity:0; }
	60% { top:0px; opacity:1; }
	64% { top:0px; opacity:1; }
	76% { top:0px; opacity:1; z-index:0; }
	80% { top:325px; opacity:0; z-index:0; }
	81% { top:-325px; opacity:0; z-index:-1; }
	100%{ top:-325px; opacity:0; z-index:-1; }
}
@-moz-keyframes cyclefive {
	0%  { top:-325px; opacity:0; }
	76% { top:-325px; opacity:0; }
	80% { top:0px; opacity:1; }
	84% { top:0px; opacity:1; }
	96% { top:0px; opacity:1; z-index:0; }
	100%{ top:325px; opacity:0; z-index:0; }
}

@-webkit-keyframes cycle {
	0%  { top:0px; }
	4%  { top:0px; }
	16% { top:0px; opacity:1; z-index:0; } 
	20% { top:325px; opacity:0; z-index:0; }
	21% { top:-325px; opacity:0; z-index:-1; }
	50% { top:-325px; opacity:0; z-index:-1; }
	92% { top:-325px; opacity:0; z-index:0; }
	96% { top:-325px; opacity:0; }
	100%{ top:0px; opacity:1; }
	
}
@-webkit-keyframes cycletwo {
	0%  { top:-325px; opacity:0; }
	16% { top:-325px; opacity:0; }
	20% { top:0px; opacity:1; }
	24% { top:0px; opacity:1; } 
	36% { top:0px; opacity:1; z-index:0; } 
	40% { top:325px; opacity:0; z-index:0; }
	41% { top:-325px; opacity:0; z-index:-1; }  
	100%{ top:-325px; opacity:0; z-index:-1; }
}
@-webkit-keyframes cyclethree {
	0%  { top:-325px; opacity:0; }
	36% { top:-325px; opacity:0; }
	40% { top:0px; opacity:1; }
	44% { top:0px; opacity:1; } 
	56% { top:0px; opacity:1; z-index:0; } 
	60% { top:325px; opacity:0; z-index:0; } 
	61% { top:-325px; opacity:0; z-index:-1; }
	100%{ top:-325px; opacity:0; z-index:-1; }
}
@-webkit-keyframes cyclefour {
	0%  { top:-325px; opacity:0; }
	56% { top:-325px; opacity:0; }
	60% { top:0px; opacity:1; }
	64% { top:0px; opacity:1; }
	76% { top:0px; opacity:1; z-index:0; }
	80% { top:325px; opacity:0; z-index:0; }
	81% { top:-325px; opacity:0; z-index:-1; }
	100%{ top:-325px; opacity:0; z-index:-1; }
}
@-webkit-keyframes cyclefive {
	0%  { top:-325px; opacity:0; }
	76% { top:-325px; opacity:0; }
	80% { top:0px; opacity:1; }
	84% { top:0px; opacity:1; }
	96% { top:0px; opacity:1; z-index:0; }
	100%{ top:325px; opacity:0; z-index:0; }
}

/* ANIMATION BAR */
@-moz-keyframes fullexpand {
    0%, 20%, 40%, 60%, 80%, 100% { width:0%; opacity:0; }
    4%, 24%, 44%, 64%, 84% { width:0%; opacity:0.3; }
   16%, 36%, 56%, 76%, 96% { width:100%; opacity:0.7; }
   17%, 37%, 57%, 77%, 97% { width:100%; opacity:0.3; }
   18%, 38%, 58%, 78%, 98% { width:100%; opacity:0; }	
}
@-webkit-keyframes fullexpand {
    0%, 20%, 40%, 60%, 80%, 100% { width:0%; opacity:0; }
    4%, 24%, 44%, 64%, 84% { width:0%; opacity:0.3; }
   16%, 36%, 56%, 76%, 96% { width:100%; opacity:0.7; }
   17%, 37%, 57%, 77%, 97% { width:100%; opacity:0.3; }
   18%, 38%, 58%, 78%, 98% { width:100%; opacity:0; }	
}


/* LAYOUT */
.container {
	margin:0 auto;
	overflow:hidden;
	width:940px;
}

/* CONTENT SLIDER */
#content-slider {
	width:100%;
	height:400px;
	margin:0px auto 0;
}
/* SLIDER */
#slider {
	background:#000;
	border:0px solid #eaeaea;
	box-shadow:0px 0px 0px rgba(0,0,0,0.7);
	height:400px;
	width:940px;
	margin:0px auto 0;
	overflow:visible;
	position:relative;
}
#mask {
	overflow:hidden;
	height:400px;
}
#slider ul {
	margin:0;
	padding:0;
	position:relative;
}
#slider li {
	width:940px;
	height:400px;
	position:absolute;
	top:-325px;
	list-style:none;
}

#slider li.firstanimation {
	-moz-animation:cycle 50s linear infinite;	
	-webkit-animation:cycle 50s linear infinite;		
}
#slider li.secondanimation {
	-moz-animation:cycletwo 50s linear infinite;
	-webkit-animation:cycletwo 50s linear infinite;		
}
#slider li.thirdanimation {
	-moz-animation:cyclethree 50s linear infinite;
	-webkit-animation:cyclethree 50s linear infinite;		
}
#slider li.fourthanimation {
	-moz-animation:cyclefour 50s linear infinite;
	-webkit-animation:cyclefour 50s linear infinite;		
}
#slider li.fifthanimation {
	-moz-animation:cyclefive 50s linear infinite;
	-webkit-animation:cyclefive 50s linear infinite;		
}


#slider .tooltip {
	background:rgba(0,0,0,0.7);
	width:700px;
    height: 85px;
    padding-top: 10px;
    padding-bottom: 5px;
	position:relative;
	left:0px;
    bottom: 130px;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;  
}
#slider .tooltip h1 {
	color:#fff;
	font-size:24px;
	font-weight:300;
	line-height:10px;
	padding:10px 0 0 20px;
}

#slider .tooltip h3 {
	color:#fff;
	font-size:12px;
	font-weight:300;
	line-height:20px;
	padding:0 0 0 20px;
}

#slider li#first:hover .tooltip, 
#slider li#second:hover .tooltip, 
#slider li#third:hover .tooltip, 
#slider li#fourth:hover .tooltip, 
#slider li#fifth:hover .tooltip {
	left:0px;
}
#slider:hover li, 
#slider:hover .progress-bar {
	-moz-animation-play-state:paused;
	-webkit-animation-play-state:paused;
}

/* PROGRESS BAR */
.progress-bar { 
	position:relative;
	top:-5px;
	width:900px; 
	height:5px;
	background:#000;
	-moz-animation:fullexpand 50s ease-out infinite;
	-webkit-animation:fullexpand 50s ease-out infinite;
}

/*****************************/
/* Social Media Buttons */
 
#share-buttons img {
width: 35px;
padding: 5px;
border: 0;
box-shadow: 0;
display: inline;
}
 