/*
 * Nemesis FRC 2590 Main CSS
 *
 */
 
 /* this is the root css value, used
	as storage for doc wide variables only 
	
	NOT SUPPORTED BY [ANY] BROWSERS
	but near future hopefully
	
	usage is
	
	:root{ var-bgColor: #d6d6d6;}
	body{ background-color: var(bgColor); }
 */
 /* ======================================================*/
 /* Global CSS Rules */
 @font-face{
	font-family: "codeBold";
	src: url("../fonts/code/Code_Bold.otf");
}
@font-face{
	font-family: codeLight;
	src: url('../fonts/code/Code_Light.otf');
}
 body {
	background-color: #d6d6d6;
	color: #575656;
	font-family: 'Open Sans', Verdana, Helvetica, sans-serif;
	font-size: 12px;
	height: 100%;
 }
 h1{
	/*font-family:"codeBold";*/
	font-size: 28px;
	font-weight:600; 
	text-transform:uppercase;
	margin:0px;
 }
 h2{
	font-family: 'Open Sans', Verdana, Helvetica, sans-serif;
	text-transform:uppercase;
	color:#f01d0c;
	margin:0px;
	font-weight:400;
	font-size:20px;
 }
 h3{
	font-family: 'Open Sans', Verdana, Helvetica, sans-serif;
	text-transform:uppercase;
	color:#f01d0c;
	font-weight:400;
	font-size:14px;
	margin: 0px;
 }
 h4{
	font-weight:300;
 }
 a{
	text-decoration:none;
	color:#f01d0c;
	
	-webkit-transition:color 0.3s ease;  
	-moz-transition:color 0.3s ease;  
	-o-transition:color 0.3s ease;  
	transition:color 1s ease;  

 }
 ul{
	list-style:none;
	padding:0px;
 }
.red{
	color:#f01d0c;
	display:inline-block;
	vertical-align:top;
}
.grey{
	color:#a4a4a4;
	display:inline-block;
	vertical-align:top;
}
.lblue{
	color:#e4eff6;
	display:inline-block;
	vertical-align:top;
	/*rgba(228,239,246,0.8)*/
}
.blue{
	color:#5cbfd8;
	display:inline-block;
	vertical-align:top;
}
.white{
	color:#fff;
}
.border{
	border-color: #d6d6d6;
	border-width: 2px;
}
 /* ======================================================*/
 /* Container Class */
 /*
	CSS Classes are any style that will be
	applied to multipe div tags
 */
 .container {
 	width: 1100px;
	min-width:800px;
	overflow: hidden;
	margin:0px auto;
 }
 
 .bgReplace{
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center; 
 }
 
 /* ======================================================*/
 /* Header Styles */

 #header-home {
	margin-bottom: 20px;
	height: 100px;
	background-color:white;
	/*background-image:url('../images/headerBG.png');*/
	background-size:100% 100%;
 }
	#banner img{
		width: 100%;
	}
	#nemesis{
		position:absolute;
		padding-left:30px;
		top:30px;
		z-index:1;
		min-width:800px;
		height:47px;
	}
		#nemesis h1 {
			margin: 0px;
			padding: 0px;
			display:block;
		}
	#frc{
		display:inline-block;
		vertical-align:top;
		padding-left:250px;
		color:#000;
	}
		#frc img{
			height:47px;
		}
	#logo{
		position:absolute;
		margin-left:840px;
		top:35px;
		z-index:1;
	}
		#logo img{
			height:240px;
			width:240px;
		}
		
/* ======================================================*/
/* Index Content */

 #main{
	background-color:#fff;
	width: 1100px;
	height:100%;
 }
 #main-container{
	padding:20px;
 }
	#main-container #flexslider-container{
		width:785px;
	}
	
 #content{
	float: left;
	vertical-align:top;
	width:840px;
	/*width:75%;*/
	height:100%;
}
#flexslider-container{
	height:560px;
}
.flexslider{
	display:inline-block;
	width:100%;
}

.flex-viewport{
	height:500px;
}
.flex-caption{
	/*--------------*/
	height:60px;
	width:785px;
	display:block;
	position: absolute;
	float:left;
	bottom: 45px;
	
	padding-top:10px;
	background: rgba(255,18,12,.6);
	color: #fff;
	text-align: center;
	font-size: 14px;
	line-height: 18px;
	/*--------------*/
}

#section-container{
	margin-bottom:50px;
}
#spacer{
	margin-right:27px;
}
#content section{
	width:376px;
	height:378px;
	display:inline-block;
	vertical-align: top;
}
	#content section img{
		width:100%;
	}
#robotImage{
	width:100%;
	height:378px; 
}
	.label{
		text-transform:uppercase;
		font-size:14px;
		color:#fff;
		width:100%;
		height: 20px;
		text-align:center;
		padding-top:4px;
		margin-bottom:5px;
	}
	#robot-label{
		background-image:url('../images/div3_small.jpg');
		background-size: 100% 100%;
	}
	#twitter-label{
		background-image:url('../images/div4_small.jpg');
		background-size: 100% 100%;
	}
.scrolltotop{
    position: fixed;
    bottom: 30px;
    right: 20px;
    padding: 11px;
    border-radius: 5px;
    border: 2px #E7E7E7 solid;
	    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    opacity: 0;
    z-index: 99999;
	}
.scrolltotop.active {
    opacity: 0.6;
    right: 50px;
}
.scrolltotop:hover {
    opacity: 1;    
}
.scrolltotop img {
    width: 24px;
    height: 24px;
}
#topscroller{
	position: fixed;
	top: 20px;
	left: 20px;
	display: none;
	opacity: 0;
}
/* ======================================================*/
/* Sidebar */
aside{
	float: right;
	vertical-align: top;
}
	#sidebar{
		padding: 150px 20px 0 0px;
		width: 240px;
	}
	#sidebar img{
		margin: 10px 0 10px 0;
		width:240px;
	}
	#first img{
		width: 190px;
		margin-left: 20px;
		}
	
	#sidebar section{
		border-style: solid none;
		border-color: #f01d0c;
		width: 240px;
		padding:2px 0;
		margin-bottom:10px;
	}
	#sidebar p{
		width: 240px;
	}
/* Sidebar Animation */
.animateLeftToRight {
  -moz-animation-duration: 1s;
  -webkit-animation-duration: 1s;
  -moz-animation-name: asideLeftToRight;
  -webkit-animation-name: asideLeftToRight;
}
	@-moz-keyframes asideLeftToRight{
		from{
		}
	}
	@-webkit-keyframes asideLeftToRight{
	}
/* ======================================================*/
		/* Navigation */
		nav{
			text-transform:uppercase;
			font-size:14px;
			padding-left: 20px;
		}
			nav li{
				margin: 0 0 25px 0;
			}
			nav a{
				color:#a4a4a4;
			}
			nav a:hover{
				color:#f01d0c; /*red*/
			}
		.subNav{
			padding:0 0 20px 20px;
		}
			.subNav li{
				margin: 0 0 10px 0;
			}
			.subNav a{
				color:#f01d0c;
			}
		/*Search form*/	
		#search-container{
			padding:20px;
		}
			#search-container li{
				padding-bottom:10px;
			}
			#search-container .blockList{
				padding-top:40px;
				min-height: 100px;
				height:auto;
			}
			#blogLinks{
				height:auto;
				width: 480px;
			}
		#search_form{
			padding-bottom:15px;
		}
		#search_submit {
			font-family: inherit;
			color: white;
			background-color: #a4a4a4;
			text-transform: uppercase;
		}
		#search_query{
			color:#a4a4a4;
		}
		button, input, select, textarea {
		font-family : inherit;
		font-size   : 100%;
		}

 /* ======================================================*/
 /*Search */
	#search-results{
		padding: 20px 0 20px 50px;
	}
	.center{
		margin:auto;
		width:400px;
		padding-top:50px;
	}
 
 /* ======================================================*/
 /*Footer */
 footer{
	border-top:solid;
	border-color:#5e5e5e;
	border-width:10px;
	background-color:white;
 }
 #stripe{
	width:100%;
	height:5px;
	background-color:#f01d0c;
 }
 #foot{margin-top:20px;
	}
	#foot #sponsor-logo{
		width:100%;
		height:110px;
		vertical-align:top;
		background-size:contain;
		background-repeat:no-repeat;
		background-position:center; 
	}
 footer section{
	width:151px;
	height:100%;
	padding-left:10px;
	margin:20px 0 10px 10px;
	display:inline-block;
	vertical-align:top;
	border-style:none none none dotted;
	border-color:#f01d0c;
	border-width:2px;
	overflow:hidden;
	}
	#first-footer{
		margin-left:10px;
		margin-top:13px;
	}
		#first-footer img{
			width:160px;
		}
	.large-footer{
		width:175px;
	}
 #icons img{
	width:25px;
 }
 #icons li{
	display:inline-block;
	margin-left:3px;
 }
/* ======================================================*/
/* Member */
#member-container{
	margin: 20px 0px 20px 20px;

	width:78%;
	height:100%;
	display:inline-block
}
#member{
	display: inline-block;
	width:250px;
	vertical-align:top;
	margin:20px 10px 0 0px;
	padding-right:10px;
	height:100%;
	
	border-style: none solid none none;
	border-color: #d6d6d6;
	border-width: 1px;
}
	#member #profile{
		width: 250px;
		height: 250px;
		-moz-border-radius:300px;
		-webkit-border-radius:300px;
		border-radius:300px;
	}
	#fields{
		font-size:14px;
		text-align:center;
		padding:10px 0;
		border-style:dotted none;
		border-color: #d6d6d6;
		border-width: 2px;
	}
	#fields #name{
		font-size:24px;
	}
	#profession{
		margin-top:10px;
	}
#bio{
	display: inline-block;
	width:53%;
	height:100%;
	margin-top:20px;
	padding-right: 10px;
	border-style: none solid none none;
	border-color: #d6d6d6;
	border-width: 1px;
}
#recentPosts{
	display:inline-block;
	vertical-align:top;
	margin-top:40px;
	width:150px;
	border-style: dotted none none none;
	border-color: #d6d6d6;
	border-width: 2px;
}
#blog-side{
	display:inline-block;
	width: 100%;
	padding-top:10px;
	border-style: none none dotted none;
	border-color: #d6d6d6;
	border-width: 2px;
}
	#blog-side li{
		padding-bottom:5px;
	}
/* ======================================================*/
/* Members */
#members-container{
	padding:20px;
}
	#members-container #barR{
		height:18px;
	}
	#bar li{
		display:inline-block;
		width:100px;
	}
.person{
	width:175px;
	padding:10px;
	display:inline-block;
	vertical-align:top;
}
.person #profile{
	display:inline-block;
	width:175px;
	height:175px;
}
.person #profile img{
	width:160px;
	height:160px;
	-moz-border-radius:200px;
	-webkit-border-radius:200px;
	border-radius:200px;
}
.person #fields{
	display:inline-block;
	width:100%;
}
.bio{
	display: inline;
	position: relative;
}
.bio:hover:after{    background: #333;
    background: rgba(255,18,12,.8);
    border-radius: 5px;
    bottom: 156px;
    color: #fff;
    content: attr(title);
    left: 0%;
    padding: 5px 15px;
    position: absolute;
    z-index: 98;
    width: 200px;
	min-height:100px;
	vertical-align:top;
}
.bio:hover:before{
    border: solid;
   /* border-color: #333 transparent;*/
	border-color: #f01d0c transparent; 
    border-width: 6px 6px 0 6px;
    bottom: 150px;
    content: "";
    left: 70%;
    position: absolute;
    z-index: 99;
}
#teamNav li{
	padding-bottom:10px;
}
/* ======================================================*/
/* Blog Home */
#blog-container{
	margin: 20px;
	height: 100%;
}
	#blog-container p a, #blog-container p{
	color:#575656;
	}	
	#blog-container #profile{
		margin:10px auto;
	}
#bar{
	width:100%;
	background-image: url('../images/div5g_large.png');
	height:20px;
	margin: 10px 0;
}
	#bar h3{
		padding-left:120px;
		font-weight:600px;
	}
.featured{
	display: inline-block;
	width:377px;
	vertical-align:top;
}
	.featured:hover{
	background-color:rgba(228,239,246,0.8);
	}
	.featured #fields{
		height:138px;
	}
	#blog-container #fields{
		font-size:12px;
		text-align:left;
		overflow:hidden;
		/*264 chara*/
	}
#blogImg-container{
	width:100%;
	height:200px;
	margin-bottom:10px;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center; 
	
}
.mostRecent{
	width:174px;
	display:inline-block;
	vertical-align:top;
	padding:10px;
}
.mostRecent:hover{
	background-color:rgba(228,239,246,0.8);
}
	.mostRecent #profile {
		width:150px;
		height:150px;
	}
	.mostRecent #fields {
		height:140px;
	}
.archive{
	height:200px;
	overflow:hidden;
	border-style: none none dotted none;
	border-color: #d6d6d6;
	border-width: 2px;
	padding:10px 0;
}
	.archive #blogImg-container{
		width:377px;
		display:inline-block;
		vertical-align:top;
	}
	.archive #postContent{
		display:inline-block;
		width:360px;
		padding: 0 20px;
		height:200px;
		overflow:hidden;
	}
	.archive #postContent:hover{
		background-color:rgba(228,239,246,0.8);
	}
	.MarkupPagerNav li{
		display:inline-block;
		padding-right:5px;
	}
/* ======================================================*/
/* Blog */
#blogPost-container{
	width:850px;
}
	#blogPost-container .flexslider{
		margin-left:20px;
		width:790px;
	}
#author{
	display: inline-block;
	vertical-align:top;
	padding:20px 20px 0 20px;
	
	border-style: none dotted none none;
	border-color: #d6d6d6;
	border-width: 2px;
	height:100%;
}
#post{
	display: inline-block;
	width: 64%;
	padding:20px;
}

	/* Author profile */
	#profile{ /*circular profile image*/
		width: 200px;
		height: 200px;
		-moz-border-radius: 200px;
		-webkit-border-radius: 200px;
		border-radius: 200px;
		background-size: cover;
		background-repeat: no-repeat;
		background-position:center;
		margin-bottom: 10px;
	}
	#name{
	text-transform: uppercase;
	font-size: 14px;
	}
	#status, #team {
		display: block;
	}
	/* Blog Post Header */
	#post-header{
		padding-bottom: 10px;
		border-style: none none dotted none;
		border-color: #d6d6d6;
		border-width: 2px;
	}
		#post-header #title{
			display:block;
		}
	#details{
		text-transform:uppercase;
	}
	#post-content{
		padding-top: 20px;
	}
	#featured img{
		width:100%;
	}
	#blogPost img{
		max-width:100%;
	}
/* ======================================================*/
/* Robot */
	#robot-container{
		padding:20px;
	}
		#robot-container #spacer{
			margin-right:10px;
		}
		#spacerLarge {
			margin-right: 30px;
		}
		#robot-container h1{
			letter-spacing:5px;
		}
		#robot-container #flexslider-container{
			height:570px;
			width:100%;
			overflow:hidden;
		}
		#robot-container .flexslider{
			 width: 100%;
			}
			#robot-container .flex-viewport{
				height:490px;
			}
			#robot-container .flexslider:hover .flex-next { 
				 right: 50px; 
			}
		#robot-container .tumblr{
			display:inline-block;
			width:380px;
			padding: 10px 5px;
		}
		#robot-container #tumblrImg{
			margin-bottom:10px;
		}
	/*----------------------*/
	#articles li{
		margin-bottom:10px;
		margin-left:10px;
	}
	#robot-header{
		height:50px;
		padding-bottom:10px;
	}
	#barR{
	width:100%;
	background-image: url('../images/div5_large.png');
	height:7px;
	margin-bottom: 10px;
}
	#barR h3{
		padding-left:100px;
		font-weight:600px;
	}
	#title{
		display:inline-block;
	}
	#year{
		float:right;
		display:inline-block;
	}
	/*----------------------*/
	#stats-container{
		display:inline-block;
		width:50%;
		margin-bottom:10px;
	}
		#robotImg {
			width:100%;
			height:450px;
			margin-top:10px;
			border-style:none none solid none;
			border-width:4px;
			border-color:#f01d0c;
			background-size:cover;
			background-repeat:no-repeat;
			background-position:center; 
		}
		#stats{
			margin-top:10px;
			border-style: dotted none;
			border-color: #d6d6d6;
			border-width: 2px;
		}
			#stats table, tr, th, td{
				text-align:left;
			}
			#stats table{
				margin:10px;
			}
			#stats th{
				width:100px;
			}
			#stats p{
				margin: 8px 0;
				line-height:1.2em;
			}
	/*----------------------*/
	#desc-container{
		width:380px;
		display:inline-block;
		vertical-align: top;
	}
	#desc{
		display:inline-block;
		width:100%;
		padding:0 10px;
		vertical-align:top;
	}
		#desc #title{
			float:left;
			padding:5px 0 0 0;
			border-bottom:dotted;
			border-color: #d6d6d6;
			border-width: 2px;
			width:100%;
		}
		#about{
			width:100%;
			overflow:hidden;
			height:24.55em;
			line-height:1.42em;
		}
		.readMore{
			text-align:right;
			width:100%;
		}
		#about p{
			margin-top:0px;
			margin-top: 0px;
			-webkit-margin-after: 1.42em;
		}
	#extras{
		padding-top:10px;
	}
	.extra{
		display: inline-block;
		vertical-align:top;
		width:256px;
	}
	.extra .label{
		height:15px;
		font-size:12px;
		background-size:100%;
		padding-top:0px;
	}
/* ======================================================*/
/* Robots */
#robots-container{
	margin:20px 20px;
}
	#robots-container #spacer{
		margin-right:20px;
	}
	#robots-container #robotImg{
		width:100%;
		height: 300px;
	}
	#robots-container #stats-container{
		width:100%;
	}
	#robots-container #robot-header{
		padding:0px;
		height:40px;
	}
	#robots-container #bar{
		height:19px;
		margin-bottom:0px;
	}
	#robots-container #about{
		height:8.43em;
		width:100%;
	}
	#robots-container #tumblr{
		width:100%;
	}
	
	.robot-small{
		width:248px;
		display:inline-block;
		vertical-align:top;
	}
	.robot-small h1{
		font-weight:400;
		font-size:20px;
	}
	.robot-large{
		width:382px;
		display:inline-block;
		vertical-align:top;
	}
/* ======================================================*/
/* Calendar */
#calendar-container{
	margin: 10px;
}
#calendarContainer1{
	background-color: #d6d6d6;
}
#mvDaynamesTable{
	background:#d6d6d6;
}
/* ======================================================*/
/* Sponsors */
#sponsors-container{
	margin: 20px;
}
	#sponsors-container #bio{
		height:100%;
		vertical-align:top;
		border-style: none dotted;
		border-width: 2px;
		padding: 0 10px;
	}
#sponsor{
	display:inline-block;
	padding-left:10px;
	margin-right:10px;
	width:40%;
}
	#sponsor-logo{
		width:100%;
		height:200px;
		background-repeat: no-repeat;
		background-position:center;
	}
#sponsors-container #{
	display:inline-block;
	width:25%;
}
.sponsor-robot{
	width:118px;
	display:inline-block;
	margin: 10px;
	vertical-align:top;
}
.sponsor-robot #profile{
	width:115px;
	height:115px;
}
#sponsor-robot-container{
	margin:20px 0;
	padding:20px 0;
	border-style:dotted none none none;
}
.sponsor{
	width:370px;
	padding:10px;
	display:inline-block;
}

#sponsorImg{
	width:100%;
	height:100px;
}
#supportImg{
	display:inline-block;
	margin-right:20px;
	vertical-align:top;
}
#support{
	display:inline-block;
	width:510px;
}
#feat img{
	width:100%;
	margin-bottom:10px;
}
#sponsors-container #barR{
	height:7px;
}
/* ======================================================*/
/* Resources */

#resources-container{
	margin:20px;
	border-style: none dotted none none;
	height:100%;
	font-size:14px;
}
	#resources-container li{
		/*
		border-style: dotted none none none;
		border-color: #d6d6d6;
		border-width: 2px;
		margin-left:40px;*/
		padding:4px 0;
		padding-right: 5px;
	}
	#resources-container a{
		color: #a4a4a4;
		position:relative;
	}
		#resources-container a:hover{
		color:#f01d0c; /*red*/
		}

		#resources-container a.linkDesc span{
			display:none;
		}
		#resources-container a.linkDesc:hover span{
			display: block;
			width:250px;
			left: 50px;
			top: 20px;
			position: absolute;
			
			background: rgba(255,18,12,.8);
			color: #fff;
			z-index: 100;
			padding: 10px;
			
		}
		
#blockLeft{
	width:240px;
	height:100%;
	border-style:none dotted none none;
	display:inline-block;
	vertical-align:top;
	padding-right:10px;
}
	#blockLeft img{
		padding:0 15px;
	}
.blockList{
	display:inline-block;
	vertical-align:top;
	padding:10px;
	margin-left:10px;
	/*width: 535px;*/
	width: 220px;
	height:290px;
}
	#noMargin{
		margin-left:0px;
		margin-right:0px;
		margin-top:0px;
		margin-bottom:0px;
	}
#heading{
	margin-bottom:20px;
	border-style:none none dotted none;
}
#tumblr{
	display:inline-block;
	padding-bottom:10px;
}
.tumblr{
	position: relative;
	width:500px;
	vertical-align:top;
}
	#tumblr img{
		width:500px;
	}
	#tumblr-desc{
		width:500px;
		height:50px;
		position:absolute;
		float:left;
		bottom:20px;
		
		text-align:center;
		color:#fff;
		background-color:rgba(255,18,12,.8);
	}
		#tumblr-desc p{
			color:#fff;
		}
#tutorials{
	display:inline-block;
	width:230px;
	height:100%;
	vertical-align:top;
	padding:10px 10px;

	color:#fff;
	background-color:rgba(255,18,12,.85);
}
	#tutorials #heading{
		color: white;
	}
	#tutorials a{
		color: white;
	}
	#tutorials a:hover{
		color: rgb(102,208,234);
	}
		#tutorials a span{
			display:none;
		}
		#tutorials a:hover span{
			display: block;
			width:250px;
			left: 50px;
			top: 20px;
			position: absolute;
			
			background: rgba(102,208,234,0.9);
			color:#fff;
			z-index: 100;
			padding: 10px;
		}
		#tutorials a.linkDesc:hover span{
			background: rgba(102,208,234,0.95);
		}
		#firstLinks a.linkDesc:hover span{
			background: rgba(102,208,234,0.9);
		}
/* ======================================================*/
/* Resources */
#team-container{
	margin:20px;
	border-style: none dotted none none;
	height:100%;
}
	#team-container li{
		padding:5px 0;
	}
		#team-container li a{
			/*color:#a4a4a4;*/
			color:#5cbfd8;
		}
		
	#team-container .featured{
	width:252px;
	padding:5px;
	}
	#team-container #details{
		margin-bottom:10px;
	}
	#team-container #blockLeft{
		min-height:379px;
		/* height:379px; */
	}
	/*Slider Div*/
	#team-container .flex-viewport{
		height:350px;
		width:98%;
	}
	#team-container .flex-control-nav{
		bottom: -10px;
	}
	
	/*Tumblr Div*/
	#team-container .tumblr{
		width: 380px;
		padding: 10px 5px;
		display:inline-block;
	}
	#team-container #tumblr-desc{
		width: 380px;
	}
	#team-container #tumblr{
		width:100%;
	}
	#team-container #tumblr img{
		width: 380px;
	}
#teamHeader{
	position:relative;
	height: 390px;
	width:783px;

}
#teamLabel{
	width:300px;
    height: auto;
	position: relative;
	margin: 0 auto;
	padding: 20px;
	top:-280px;
	z-index: 1;
	text-align:center;
	color:#fff;
	background-color:rgba(255,18,12,.9);
}
	#canvasHeader #teamLabel{
		top:-240px;
	}
.teamBlock{
	padding: 10px 0;
		border-color: #d6d6d6;
	border-width: 2px;
	border-style:none none dotted none;
}
#mentorBlock{
	display:inline-block;
	vertical-align:top;
	padding-left:10px;
	width: 515px;
	padding-bottom:10px;
}
	#mentorBlock .person{
		width:156px;
		padding:5px;
	}
	#mentorBlock .person #profile{
		width:155px;
		height:155px;
	}
	#mentorBlock .bio:hover:after{
		width:150px;
		min-height:50px;
		bottom:120px;
	}
	#mentorBlock .bio:hover:before{
		bottom:114px;
	}
#blockLarge{
	width:525px;
	display:inline-block;
}
	#blockLarge #fields{
		font-size:12px;
		text-align:center;
		overflow:hidden;
		/*264 chara*/
	}
	#blockLarge #fields h3{
		margin-bottom:10px;
	}
	#blockLarge #blogImg-container{
		height:250px;
	}
/*
#team-container #blogImg-container{
	border-style:solid none none none;
	border-width:5px;
	border-color:#f01d0c;
}*/
#blockSmall{
	width:230px;
	height:390px;
	display:inline-block;
	vertical-align:top;
	font-size:14px;
	border-style:none none none dotted;
	padding-left:15px;
}

#tumblrImg{
	width:380px;
	height:300px;
}

/* ======================================================*/
/* Media Container */

#media-container{
	padding:20px;
}
	#media-container li{
		display:inline-block;
		margin-left:20px;
		width:240px;
		overflow:hidden;
		vertical-align: top;
	}
	#media-container li img{
		height:240px;
	}
	#media-container #blogImg-container{
		height:240px;
	}
	#youtube{
		width:500px;
	}
	#player{
		margin-left:20px;
	}