/*
Company:    Destiny School
File:        main.css - This contains all the main styles for the website.

All the styles are separted into the following groups:
Global Browser Reset - they make sure that all browsers start with the same default settings
HTML, Body - for the html and body tags
Layout - any style that defines how the site is laid out (position and size of objects)
Nav - navigation bar
Headings - headings like h1, h2, etc
Text Styles - Styles for text
Lists - unordered and ordered lists
Forms - html forms
Links - links
Misc - anything that doesn't fit elsewhere
*/

/* @group Global Browser Reset */
* {

padding:0;

margin:0;

}

h1, h2, h3, h4, h5, h6, p, pre, blockquote, label, fieldset, address { margin:20px 0; }

blockquote { margin-left: 40px; }

fieldset { padding:10px; }

img { border: 0px; }
/* @end */

/* @group HTML, Body */
body {
    background: url(../images/body-bkg.jpg) repeat-x;
}
/* @end */

/* @group Layout */
div#outer-wrapper {
    background: url(../images/main-bkg.jpg) no-repeat top left;
    width: 945px;
    margin-left: auto;
    margin-right: auto;
    height: 772px;
    font-family: Verdana, Arial, sans-serif;
    font-size: 13px;
}
div#hd {
    height: 98px;
    padding: 1px 0;
}
div#hd p {
    margin: 75px 0 0 165px;
    font-size: 77%;
    color: #263163;
}
div#hd p a {
    padding-left: 15px;
}
div#hd a:link, div#hd a:visited {
    color: #00355f;
    text-decoration: none;
}

div#bd {
    width: 748px;
    height: 615px;
    margin-left: auto;
    margin-right: auto;
    font-size: 92%;
}
body#inside div#bd {
    padding-top: 24px;
    height: 589px;
}

div#top-content {
    height: 245px;
    padding-top: 20px;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}
div#btm-content {
    margin-top: 14px;
    padding-top: 15px;
    height: 289px;
    background: url(../images/front-shade-bkg.jpg) no-repeat;
}

div.front-col {
    width: 204px;
    margin: 0 21px;
    float: left;
    display: inline;
}

div#inside-content {
    width: 725px;
    height: 538px;
    background: url(../images/inside-bkg.jpg) no-repeat;
    padding: 10px;
    overflow: auto;
}

div#ft {
    font-size: 77%;
    color: #263163;
    width: 760px;
    margin-left: auto;
    margin-right: auto;
}
/* @end */

/* @group Nav */
div#nav ul {
    padding-left: 110px;
}
div#nav ul li {
    list-style-type: none;
    float: left;
    display: inline;
}
div#nav ul li a {
    display: block;
    line-height: 35px;
    padding: 0 20px;
    background: url(../images/nav-div.gif) no-repeat top left;
    float: left;
    display: inline;
}
div#nav a:link, div#nav a:visited {
    color: #fff;
    text-decoration: none;
}
/* @end */

/* @group Headings */
h1 {
    color: #c22133;
    font-size: 90%;
    font-weight: normal;
    margin: 0 0 10px 0;
}
h2 {
    color: #263163;
    font-size: 90%;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}
h3 {
    color: #000;
    font-size: 90%;
    font-weight: bold;
}
h4 {
    color: #000;
    font-size: 90%;
    font-weight: bold;
}
h5 {
    color: #000;
    font-size: 90%;
    font-weight: bold;
}
h6 {
    font-size: 200%;
    color: #000;
    font-weight: normal;
}
/* @end */

/* @group Text Styles */
    
/* @end */

/* @group Lists */
div#outer-wrapper ul {
    margin-left: 20px;
}
div#outer-wrapper ol {
    margin-left: 27px;
}
/* @end */

/* @group Forms */
    
/* @end */

/* @group Links - link visited hover active */
a:link, a:visited {
    color: #263163;
    text-decoration: underline;
}
a:hover, a:active {
    text-decoration: none;
}
/* @end */

/* @group Misc */
.clear {
    clear: both;
}
/* @end */
