/*
Styles for the Systems Software Research Group Website.
Author: Rob Lyerly
*/

/* ---------- Page-wide styles ---------- */

body {
	background-image:url('images/chip_bg_test.png');
	background-repeat:no-repeat;
	background-position:center top;
	background-color:#A8A8A8;
	background-attachment:fixed;
	font-family: georgia,"times new roman",times,serif;
	font-size: 14px;
}

body h1, h2, h3 {
	font-family:"Palatino Linotype",sans-serif;
	color:#700000;
	border-bottom-style:solid;
	border-color:black;
}

/* ---------- Styling of specific elements ---------- */

#content {
	width:800px;
	margin-left:auto;
	margin-right:auto;
	margin-top:-8px;
	background-color:white;
	-moz-box-shadow: 0px 0px 15px 10px #888;
	-webkit-box-shadow: 0px 0px 15px 10px #888;
	box-shadow: 0px 0px 15px 10px #888;
	padding:0px;
}

#content hr {
	margin-top:20px;
	clear:both;
}

/* ---------- Header and Navigation Bar ---------- */

#header {
	border-color:#FFCC00;
	border-width:1px;
	border-bottom-style:solid;
}

#tabs {
	height:22px;
	background-color:black;
	list-style-type:none;
}

#tabs ul {
	margin-top:0px;
	float:right;
	list-style:none;
}

#tabs ul li {
	float:left;
	padding-right:0px;
	color:white;
}

#tabs ul li a {
	display:block;
	width:93px;
	height:22px;
	color:white;
	text-decoration:none;
	text-align:center;
}

#tabs ul li a:hover {
	width:93px;
	background-color:#FFCC00;
	color:black;
}

#tabs ul li a.current {
	color:#FFCC00;
	font-weight:bold;
}

#tabs ul li a.current:hover {
	color:black;
}

/* ---------- Main Content ---------- */

#information {
	margin-left:10px;
	margin-right:10px;
	padding-bottom:20px;
}

#information ul {
	list-style-type:none;
}

#information ul.bullet_list {
	list-style-type:disc;
}

#information ul.bullet_list li {
	padding-bottom:10px;
}

.item {
	clear:both;
}

.left {
	width:375px;
	float:left;
	clear:left;
}

.right {
	width:375px;
	float:right;
	clear:right;
}

.project_desc {
	width:780px;
	margin-left:auto;
	margin-right:auto;
}

.project_desc a {
	display:block;
	text-align:center;
}

.project_desc a img {
	border:none;
}

.project_desc p {
	display:block;
}

/* ---------- Footer ---------- */

#gold_separator {
	height:35px;
	width:800px;
	margin-left:auto;
	margin-right:auto;
	background-image:url('images/gold_bg.png');
	clear:both;
}

#footer {
	width:800px;
	margin-left:auto;
	margin-right:auto;
	padding-top:10px;
	padding-bottom:10px;
	text-align:center;
	background-image:url('images/footer_bg.png');
	background-repeat:horizontal;
}

#footer a {
	color:#303030;
	font-weight:bold;
}

#footer a img {
	border:0 none;
}

/* ---------- Slideshow ---------- */
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  height: 400px;
  width: 760px;
  background-color: black;
  position: relative;
  margin: auto;
}

.mySlides {
    display: none;
	margin-left: auto;
	margin-right: auto;
}

.slidePhoto {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	margin-left: auto;
	margin-right: auto;
	max-height: 400px;
	max-width : 760px;
}
.caption {
	position: absolute; 
	bottom: 0px;
	height: 40px; 
	padding: 10px;
	color: white; 
	background: black; 
	line-height:20px;
	text-align: center; 
	font-weight: bold; 
	opacity: 0.9; 
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}