/* ------------------ Basic Typography -------------------------------- */

        body {
            font-family: "Lucida Grande", Arial, Tahoma;
            line-height: 1.3em;
            color: #333;
        }

    /* -- */
    
        a {
            color: #3B5998;
            border-bottom: 1px solid #b7c2d9;
        }
        
        a:hover {
            border-bottom: 1px solid #3B5998;            
        }
        
        strong {
            font-weight: bold;
        }
        
        hr {
            border: none;
            height: 1px;
            overflow: hidden;
            background: #eee;
            margin-bottom:24px;
        }

    /* -- */
    
        h1, h2, h3, h4, p, form, blockquote, ul, ol, table {
            margin-bottom: 21px;
        }    

        h1 { 
            font-size: 28px; 
            font-weight: bold;
            letter-spacing: -1px;
        }
    
        h2 { 
            font-size: 21px; 
            font-weight: bold;            
        }

        h3 { 
            font-size: 16px; 
            font-weight: bold;
            margin-bottom: 18px;
        }

        h4 { 
            font-size: 14px; 
        }

     /* -- */

        p, li, blockquote, pre, code {
            font-size: 14px;
        }
        
     /* -- */
     
        ul, ol {
            margin-left: 40px;
        }
        
        ul li {
            list-style: disc;
        }
        
        ol li {
            list-style: decimal;
        }
        
        /* -- */

        blockquote {
            background: #fafafa;
            padding: 20px 20px 20px 20px;
            border: 1px solid #f1f1f1;
            border-left: 0;
            border-right: 0;
            font-family: georgia;
            font-style: italic;
        }
        
            blockquote p.attribution {
                font-style: normal;
                text-align: right;
                color: #444;
                margin-bottom: 0;
            }
        
        pre {
            background: #fafafa;
            padding: 20px 20px 20px 20px;
            border: 1px solid #f1f1f1;
            border-left: 0;
            border-right: 0;
            margin-bottom: 25px;            
        }
        
        code,pre {
            font-size: 12px;
            line-height: 18px;
        }

/* ------------------ Basic Positioning & Layout ---------------------- */

        body {
            text-align: center;
            background: #eeebcc url(../images/top_wrapper_bg.png) repeat-x top left;
        }
        
        #top_wrapper {
            /*background: #eeebcc url(../images/top_wrapper_bg.png) repeat-x top left;*/
        }
        
        #bottom_wrapper {
            background: #544a6d;
        }
        
        #container {
            width: 1080px; /* width of inner container PLUS 130 (65 x 2) to account for the header logo's left alignment */
            margin: 0 auto;
            text-align: left;
            overflow: hidden;
        }
        
    /* -- */
    
        #inner_header {
            padding-top: 0px;
            overflow: hidden;
            width: auto;
            margin-right: 65px;
        }
        
        #inner_content {
            margin-bottom: 25px;
            margin-left: 65px;
            margin-right: 65px;
            background: #fff url(../images/hr_div.png) center 20px no-repeat;
            border: 1px solid #d6d6be;
            padding: 50px 25px 25px 25px;
            clear: both;    
            overflow: hidden;
            width: auto; 
			min-height: 420px;
        }
        
        #inner_footer {
            margin-left: 65px;
            margin-right: 65px;            
            overflow: hidden;
            width: auto;
        }

    /* -- */

        #full-column {
            clear: both;
            margin-bottom: 25px;
            padding-bottom: 10px;
            background: #fff url(../images/hr_div.png) center bottom no-repeat;            
        }

        #main-column {
            width: 590px;
            float: left;
            padding-right: 25px;
        }

        #side-column {
            width: 250px;
            float: right;       
            padding-right: 10px;
        }

        #outer_footer {
            color: #fff;
            margin: 0 auto;
            clear: both;
            overflow: hidden;
            text-align: left;
            width: 950px;
            background: #544a6d;
            padding: 20px 65px;
        }

    /* -- */
    
        