@charset "utf-8";
body {
	font: 100%/2 Arial, Helvetica, sans-serif;
	line-height: 1.25;
	background: #f2fcf9;
	margin: 0;
	padding: 0;
	color: #000;
    background-color: #556247;
	background-image:url('figs/textbackground.png'); /* From http://www.chickswithcrossbows.com/wp-content/uploads/2012/01/neuronas_ramon_y_cajal.jpg */
	overflow-y:scroll /* Makes it so scrollbar always appears, to stop page from shifting */
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl {padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 {margin-top: 0;	padding-right: 15px; padding-left: 15px; text-align: left;}
p {margin-top: 0;	padding-right: 15px; padding-left: 15px; text-align: justify;}
a img {	border: none;}
a:link {color: #42413C;	text-decoration: underline;}
a:visited { color: #6E6C64;	text-decoration: underline;}
a:hover, a:active, a:focus { text-decoration: none;}

.container {
	width: 90%;
	max-width: 1200px;/*900px;*/
	min-width: 600px;
	background-color: #FFC;
	background-image:url('figs/textbackground.png'); /* From http://1.bp.blogspot.com/-ihQbYWaV8S4/TV8yHKJMdEI/AAAAAAAAHBE/rye7TRWNX4o/s640/_cortical_neuronal_network.jpg */
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	padding: 10px 10px 10px 10px;
	background: #89a2b7; /* Old browsers */
	background: -moz-linear-gradient(top,  #89a2b7 0%, #f2f2c4 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#89a2b7), color-stop(100%,#f2f2c4)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #89a2b7 0%,#f2f2c4 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #89a2b7 0%,#f2f2c4 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #89a2b7 0%,#f2f2c4 100%); /* IE10+ */
	background: linear-gradient(top,  #89a2b7 0%,#f2f2c4 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#89a2b7', endColorstr='#f2f2c4',GradientType=0 ); /* IE6-9 */
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 10px 10px 10px;
	background: #f2f2c4; /* Old browsers */
	background: -moz-linear-gradient(top,  #f2f2c4 0%, #89a2b7 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f2c4), color-stop(100%,#89a2b7)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f2f2c4 0%,#89a2b7 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f2f2c4 0%,#89a2b7 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f2f2c4 0%,#89a2b7 100%); /* IE10+ */
	background: linear-gradient(top,  #f2f2c4 0%,#89a2b7 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2c4', endColorstr='#89a2b7',GradientType=0 ); /* IE6-9 */
	padding: 10px 10px 10px 10px;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	font-size: 14px;
}

.sidebar1 {
	float: left;
	width: 130px;
	background: inherit;
/*	border-right: 2px solid;*/
	padding: 30px 0px 0px 25px;
}
.content {
	padding: 20px 25px 20px 20px;
	width: 80%; 
	max-width: 1040px;/*780px;*/
	min-width: 380px;
	float: right;
	background: inherit;
}

.content ul, .content ol { 
	padding: 0 15px 15px 40px;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none;  /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 0px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
	border-right:  1px solid #666;
	border-left:  1px solid #666;
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 108px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background: #ffd267;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #e36c09;
	color: #FFF;
}

body#Home a#Homenav, body#Research a#Researchnav, body#People a#Peoplenav, body#Publications a#Publicationsnav, body#Conferences a#Conferencesnav, body#Software a#Softwarenav {
	color: #fff;
	background: #930;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}h1 {
	font-family: Times New Roman, Times, serif;
}
