@charset "UTF-8";
/* CSS Document */

/* --------------------------- STYLED TAGS ----------------------------- */
body{
    margin: 0px;
    padding: 0px;
    background-color: #8298A1;
    font-family: Verdana, Geneva, sans-serif;
}
p{
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 150%;
}
h1 {
    padding: 50px 0px 25px 0px;
}
h4 {
    padding: 20px 0;
    font-weight: bold;
}
table {
    border: solid #E0B961 1px;
    border-collapse: collapse;
}
td {
    padding: 6px;
    border: solid #ffffff 1px
}
th {
    font-weight: bold;
    text-align: center;
    padding: 8px;
    border: solid #ffffff 1px;
    background-color: rgba(255,255,255,0.5)
}
a:link {
    color: #545458;
    text-decoration: none;
}
a:visited {
    color: #802817;
    text-decoration: line-through;
}
a:hover {
    color: #7e7f84;
}

/* -------------------------- PAGE SECTIONS ---------------------------- */
#splash{
    height: 1000px;
    background: url(images/grease_logo.png) no-repeat center top fixed;
    background-size: cover;
    height: 1000px;
}
#overview{
    padding: 0px 0px 60px 0px;
    background-color: #FFF4D4;
}
#grease-I{
    padding: 0 0 60px 0;
    background-color: #FFD6B2;
}
#video{
    padding: 0 0 100px 0;
    background-color: #EBCCB8;
}
#discography{
    padding: 0 0 60px 0;
    background-color: #FEBFA8;
}
#footer{
    background-color: #8298A1;
}
.container {
  width: 960px; /* static width container always stays at this width no matter what the window size */
  margin: 0 auto;
  overflow: hidden;
}
/* ---------------- CONTAINER STYLES ----------------- */
/* Containers are used to keep the page content within bounds centered in the browser window. */
.container {
  width: 960px; /* static width container always stays at this width no matter what the window size */
  margin: 0 auto;
  overflow: hidden;
}
.half_container { /* provides a two column presentation */
  width: 50%;
  float: left;
  overflow: hidden;
}
/* ----------------- NAVIGATION BAR STYLES -------------------*/ 

#navbar{
	width: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	height: 54px;
	position: fixed;
	top: 0px;
}
/* horizontal menu bars are typically created using a styled unordered list. Here's how! */
ul#menu {
	list-style: none; /* eliminates bullets */
	/* adjust padding top to adjust nav bar vertical position */
	padding-top: 0px;
} 
ul#menu li {
	float: left; /* changes list from vertical to horizontal */
	padding-bottom: 20px;
} 
ul#menu li a.button {
	font-size: 16px;
	text-decoration: none;
	/* this padding defines the size of the buttons */
	padding: 20px 70px 20px 70px; 
}
/* change button color when mouse hovers over */
ul#menu li a.button:hover {
	background-color: rgba(238, 169, 173, 0.1);
}  
/* ---------------- TITLE PAGE STYLES ------------------- */

#title-page{
  width: 100%;
  padding-top: 0px;
  color: #fff;
  text-align: right;
}
#title-page h1 {
  font-size: 30px; 	
  text-shadow: 3px 3px #000;
  margin-top: 460px
}
#title-page h3 {
  font-size: 1em;
  font-style: italic;
  margin: 0 40px;
  padding-bottom: 20px; /* to push nav arrow down */
  text-shadow: 2px 2px #000;
}
/* ------------------- FOOTER CREDITS --------------------- */

#credits {
  text-align: center;	
}
#credits table{      /* centers the color palette table */
  margin-right: auto;
  margin-left: auto; 			
}
#credits p {
  font-size: .8em;
  margin: 10px 0;
}
/* ---------------------- MISC -----------------------------*/

.fltright{
	float:right;
	margin: 20px;
}
.fltleft{
	float:left;
	margin: 20px 20px 20px 0;
}
.center{
    float: none;
    margin: 50px 50px 50px 0;
}
div.leftside_image {
float: right;
float: top;
padding: 50px 10px 10px 10px;
margin: 10px;
}
