/* 
    Document   : screen.css
    Created on : Feb 5, 2010, 9:16:22 AM
    Author     : Casey
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   CSS Selectors
1-Element selector - you must declare the element name (e.g. body)
2-ID selector - it controls elements that have an ID attribute (e.g. #header)
3-Context selector:  the name of the partent followed by the name or type of
the decendent.

*/

body{
    margin: 0;
    padding: 0;
}
#header{
    height: 1in;
    
}
#header img{
    height: 1in;
    width: 100%;
}
#header p{
    margin-top: 0px;
}

#navi{
    width: 100%;
    height: .35in;
    background-color: silver;
}

#navi ul{
    margin-top: 0;
    padding-top: .1cm;
    padding-bottom: .1cm;
    margin-left: 2cm;
    list-style-type: none;

}
#navi form{
    display: inline;
}
#navi li{
    display: inline;
    padding-left: 0;
    margin-left: 0;
    padding-right: .75cm;
}
#navi a:visited{
    color: white;
}
#navi a:active{
    color: #000080;
}
#navi a:hover{
    color: #000080;
}
#navi a:link{
    color: #FFFFFF;
}
/* #content{
    width: 80%;
    background-color: white;
    position: absolute;
    top: 1in;
    left: 10%;
    right: 10%;
}

#aside{
    width: 10%;
    background-color: silver;
    position: absolute;
    top: 1in;
    right: 0;
}

#subnavi{
    height: .5in;
    background-color: gray;
    position: absolute;
    top: 1in;
    left: 10%
}

#footer{
    height: 1in;
    width: 100%;
    background-color: navy;
    position: absolute;
    bottom: 0;

}
*/
/* This section uses
*/

#centerbox{
    position: relative;
    overflow: auto;
    background-color: gray;
}

#subnavi{
    width: 1in;
    background-color: gray;
    float: left;
}
#subnavi p{
    color:gray;
}
#subnavi ul{
    margin-top: 0;
    padding-top: .1cm;
    padding-bottom: .1cm;
    margin-left: 0;
    list-style-type: none;
}
#subnavi li{
    margin-left: 0;
    padding-left: 0;
    padding-right: .25cm;
    
}
#subnavi a:visited{
    color: white;
}
#subnavi a:active{
    color: #000080;
}
#subnavi a:hover{
    color: #000080;
}
#subnavi a:link{
    color: #FFFFFF;
}

#subnavi_movies{
    width: 1in;
    background-color: gray;
    float: left;
}
#subnavi_movies ul{
    margin-top: 0;
    padding-top: .1cm;
    padding-left: .3cm;
    padding-bottom: .1cm;
    list-style-type: none;
    text-decoration: none;
    float: left;
}
#subnavi_movies li{
    margin-left: 0;
    padding-left: 0;
    padding-right: .25cm;

}
#subnavi_movies a:visited{
    color: white;
}
#subnavi_movies a:active{
    color: #000080;
}
#subnavi_movies a:hover{
    color: #000080;
}
#subnavi_movies a:link{
    color: #FFFFFF;
}

#content{
    width: 80%;
    background-color: white;
    float: left;
    padding-left: 1px;
    padding-bottom: 2cm;
}
#content img{
    padding-left: 1cm;
}
#content h1{
    color: #000080;
    font-family: cambria;
    font-weight: bold;
    padding-left: .9cm;
}
#content h2{
    padding-left: .5cm;
    }

#content h3{
    padding-left: .3cm;
}

#content p{
    margin-top: 0;
    padding-left: .4cm;
}
#content a{
    padding-left: .6cm;
}

#content dt{
    padding-left: .2cm;
}

#aside{
    width: 10%;
    background-color: gray;
    float: left;
}
#aside p{
    color: gray;
}


#footer{
    height: 1in;
    width: 100%;
    background-color: navy;

}
#footer ul{
    margin-top: 0;
    margin-left: .2cm;
    padding-top: .3cm
}
#footer li{
    display: inline;
    padding-left: .25cm;
    padding-right: .25cm;
}
#footer a:visited{
    color: white;
}
#footer a:active{
    color: #000080;
}
#footer a:hover{
    color: yellow;
}
#footer a:link{
    color: #FFFFFF;
}