/* 
    Document   : ss_screen
    Created on : Jan 29, 2010, 8:56:23 AM
    Author     : SHJ
    Description:
        Purpose of the stylesheet follows.
*/

/* 
Selector Types:
1- element: the name of the element to be changed (e.g. body)
2- id: designanated by a "#" symbol in the css (e.g. #header)
3- class: designated by a "." symbol in the css (e.g. .nomargin)
4- Context Selector: based on the inheritance of objects
*/
/*The positions the center part of the wireframe and the footer using floats*/
*{font-family:Arial,Helvetica,sans-serif;}

body {
    margin: 0;
    padding: 0;
    background-color: #A0B8FF;
    background-image: url('/images/bg_grdt.png');
    background-repeat: repeat-x;
}
/*body>img {
    position: absolute;
    z-index: -1;
}*/
#wrapper {
    width: 90%;
    min-width: 480px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}
#header {
    height: 123px;
}
#header #logo {
    width: 10%;
    float: left;
}
#header #logo img {
    position: absolute;
    border: 0;
}
#header h1 {
    font-size: 50px;
    font-family: 'Lucida Handwriting',sans-serif;
    color: #533717;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 40px;
    left: 280px;
}
#header #tools {
    width: 30%;
    float: right;
}
#header #tools li {
    display: inline;
}
/*#wrapper2 {
    width: 80%;
    float: left;
    margin-left: 10%;
    margin-right: auto;
}*/
#nav {
    padding-left: 164px;
    height: 26px;
}
#nav ul {
    color: white;
    background-color: #533717;
    background-image: url('/images/nav_grdt.png');
    background-repeat: repeat-x;
    border-top-left-radius: 10px;
    border-top-rigt-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    margin: 0;
    padding: 0;
}
#nav li {
    display: inline;
    list-style: none;
    text-align: center;
}
#nav a:link, #nav a:visited {
    color: white;
    display: inline-block;
    width: 100px;
    text-decoration: none;
    padding: 2px 0 0 0;
    margin: 0;
}
#nav a:hover, #nav a:active {
    color: #A0B8FF;
    outline: none;
}
.home #nav a[title~=home],
.assignments #nav a[title~=assignments],
.about_us #nav a[title~=about],
.products #nav a[title~=products],
.contact #nav a[title~=contact] {
    color: black;
    font-weight: bold;
    height: 24px;
    background-color: #D7D7F4;
    cursor: default;
}
.home #nav a[title~=home]{
    border-top-left-radius: 9px;
    -moz-border-radius-topleft: 9px;
    -webkit-border-top-left-radius: 9px;
}
#centerbox {
    background-color: #D7D7F4;
    overflow: auto;
    border-top-left-radius: 9px;
    -moz-border-radius-topleft: 9px;
    -webkit-border-top-left-radius: 9px;
}
#categories {
    width: 15%;
    float: left;
}
#categories ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#content {
    width: 85%;
    float: left;
}
#content *:last-child {
    margin-bottom: 0;
}
.home .img1 {
    border: solid 5px #533717;
}
.home .img2 {
    float: left;
    border: solid 5px #533717;
    margin-left: 5px;
}
/*.products img {
    margin-bottom: 0;
}*/
.products p {
    margin-top: 0;
}
#footer {
    color: #c0c0c0;
    background-color: #707070;
    border-top: solid 1px black;
}
#footer *:first-child {
    margin-top: 0;
}
#footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#footer li {
    display: inline;
}
/*#aside {
    width: 20%;
    float: left;
    margin-top: 26px;
}*/
/*#aside>div {
    background-color: white;
    border: 5px solid #533717;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}*/