/*
* style_test.css
* Created By: Kelly Kitagawa
* November 2013
* Style sheet for robberbaron website 
*/

/****** --- Layout --- *****/
body{
    background-color: black; /*dark teal blue *//*is there a reason why we do backgroun instead of color? rgb(0,37,44)*/
    font-family: "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
    color: #FFF;
}
h1{
    text-transform: uppercase;
    font-weight: normal;
    color:rgb(22,130,37); /*dark green*/
}
h2{
    text-transform: uppercase;
    font-weight: normal;
    color:#999999; /*dark grey*/
}
h3{
    font-weight: normal;
    float:right;
}
ul,li{ 
    list-style-type: none; 
}


/******* --- Header --- *********/
header {
    text-align: center;
    width: 250px;
    margin: 0 auto;
}

.logo {
    height: 84px;
    background: url(rb_logo.jpg) center no-repeat;
    text-indent: -1000px;
    overflow: hidden;
}

.logo_text{
    margin-bottom: 29px;
}
/******* --- Nav --- ********/
.nav{
    position: absolute;
    top: -42px;
    width: 820px;
    margin: 0 auto;
    text-align: center;
    line-height: 20px;
}
.nav li{
    display: inline;
    padding: 30px;
}
.nav li a{
    color: #FFF;
    text-decoration: none;
    font-size: 12px;
    width: 50px;
}

/******** --- Main --- *******/
.main_container{
    width: 860px;
    border: 10px solid rgb(136,108,58);
    padding: 8px;
    background: slate;
    position: relative;
    margin: 0 auto;
    border-radius: 3px;
}
.hero{ /* --- 860 x 450 --- */
    text-align: center;
    background-color: black;
}

.about_text{
    text-align: center;
    font-size: 17px;
    padding: 22px;
}

.left_box{  /* --- on events page this is the left box within .hero --- */
    width: 49%;
    height: 450px;
    background: url(marlow_menu.jpg) no-repeat;
    display: inline-block;
}

.right_box{ /* --- on events page this is the right box within .hero --- */
    width: 49%;
    height: 450px;    
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

/******* --- Footer --- *********/
footer{
    font-size: 14px;
    text-align: center;
    width: 860px;
    margin: 0 auto;
    line-height: 25px;
}

a:link { /* unvisited link */
    text-decoration:none;
    color: #FFFFFF;
}      
a:visited {color:#FFFFFF;}  /* visited link */
a:hover { /* mouse over link */
    color:#660000;
    text-decoration:underline;
}  
a:active {color:#0000FF;}  /* selected link */


/********* --- Menu --- **********/

table{
    width: 99%;
}

th{ /* --- Main Headers i.e. Bubbles, White, Red --- */
    text-align: left;
}

th.title{ /* --- By the Glass, By the Bottle, Beer --- */
    color:#660000;
    border-bottom: 3px double;
    line-height: 1.7em;
}

th.title2{ /* --- "Eats" Main Headers --- */
    color:#FFFFFF;
    border-bottom: 3px double;
    line-height: 1.7em;
}

td{ /* --- Columns i.e. glass, bottle --- */
    vertical-align: top;
    font-size: 12px;
}

td.drinks{ /* --- Drinks side of page (all left side) --- */
    width: 50%;
}

td.glass{
    width: 50px;
    margin-left: 15px;
}

table#eats{ /* --- Food Menu (Eats) side of page (all right side) --- */
    margin-left: 8px;
}

.menu_text{
    text-align: center;
    font-size: 11px;
}

