/* > > > > >  GLOBAL CONSTANTS  < < < < <
        
    COLORS
        Dark purple: #4a1251
        Light purple: #8f3785
        Light grey: #bfbfbf
        Dark grey: #7f7f7f

    DIMENSIONS
        Site width: 852px
        
        
    9 CSS Ethics Every Designer Should Have: 
    http://www.noupe.com/how-tos/9-css-ethics-every-designer-should-have.html
    */


/*  RESET
*************************************************************/

@import url(reset.css);

/*  Global styles
*************************************************************/

*
{
    color: #333333;
    font-family: Tahoma, Verdana, Arial, Sans-Serif;
    font-size: 12px;
}

body
{
    background-color: #fff;
}

a
{
    color: #8f3785;
    font-size: 1em;
}
    a:hover
    {
        text-decoration: underline;
    }

p
{
    margin-bottom: 1em;
}


/*  Structural elements
*************************************************************/

#mainContainer
{
    margin: auto;
    width: 852px;
}

#logoBar
{
    
    padding: 45px 0 0 10px;
}

#menu
{
    border-top: 10px solid #4a1251;
    border-bottom: 3px solid #4a1251;
    height: 30px;
}
    #menu ul
    {
        list-style: none;
        margin: 6px 0 0 15px;
        padding: 0;
    }
        #menu ul li
        {
            font-family: Verdana;
            font-size: 1.2em;
            font-weight: bold;
            float: left;
            margin-right: 30px;
        }
            #menu ul li#lastOne
            {
                margin-right: 0;
            }
            #menu ul li#current
            {
                padding-bottom: 5px;
                border-bottom: 3px solid #4a1251;
            }
            #menu ul li a
            {
                color: #4a1251;
                text-decoration: none;
            }

ul#breadcrumbs, ul#breadcrumbs li
{
    color: #4a1251;
    display: inline;
    list-style: none;
    margin: 0;
    padding: 0;
}
    ul#breadcrumbs li
    {
        display: inline;
        font-size: 0.9em;
    }

#contentContainer
{
    border-color: #bfbfbf;
    border-style: solid;
    border-width: 2px;
    border-bottom-width: 1px;
    border-top-width: 1px;
    height: auto;
    margin-bottom: 20px;
}

#contentMain
{
    margin: 10px 9px 0 9px;
}
    #contentMain #leftColumn
    {
        float: left;
        width: 630px;
    }
        #frontpageStatement
        {
            color: #8f3785;
            font-family: Times, Times New Roman, Serif;
            font-size: 2.6em;
            font-style: italic;
            font-weight: bold;
            height: 117px;
            margin: 0 10px 10px 10px;
        }
        
    #contentMain #rightColumn
    {
        background-color: #e8ecde;
        border-bottom: 3px solid #000;
        float: left;
        width: 200px;
    }
        
            #rightColumn p img
            {
                float: left;
                margin: 0 8px 5px 0;
            }

#blurp
{
    background-image: url("/data/assets/images/blurp_back.png");
    height: 117px;
    float: left;
    margin-bottom: 10px;
    width: 200px;
}
    #blurp ul
    {
        line-height: 1.8em;
        list-style: none;
        margin: 13px 0 0 14px;
        padding: 0;
    }
        #blurp ul li
        {
        }
            #blurp ul li a 
            {
                color: #fff;
                font-size: 1.2em;
                font-weight: normal;
                text-decoration: none;
            }
                #blurp ul li a:hover
                {
                    text-decoration: underline;
                }

#footer
{
    border-bottom: 10px solid #4a1251;
    color: #8f3785;
    font-size: 1.15em;
    font-weight: bold;
    padding: 30px 9px 6px 9px;
}

/*  Article page 
*************************************************************/

.articlePage #leftColumn img, .articlePage #leftColumn p img
{
    
}
.articlePage #leftColumn
{
    padding-right: 10px;
    width: 620px !important;
}
.articlePage #leftColumn span.articleQuote
{
    color: #8f3785;
    font-family: Times, Times New Roman, Serif;
    font-size: 1.7em;
    font-style: italic;
    float: left;
    padding: 10px 10px 10px 10px;
    margin-right: 20px;
    text-align: center;
    width: 280px;
}


#headlineSection
{
    float: left;
    height: 127px;
    width: 630px;
}
    #headlineSection h1
    {
        background: none;
        color: #8f3785;
        font-family: Times, Times New Roman, Serif;
        font-size: 2.4em;
        font-weight: bold;
        margin: 26px 10px 20px 0;
        padding: 0;
    }
    #headlineSection h2
    {
        color: #8f3785;
        font-size: 1.2em;
        font-weight: bold;
    }

/*  Popup page 
*************************************************************/

#popup * h1
    {
        background: none;
        color: #8f3785;
        font-family: Times, Times New Roman, Serif;
        font-size: 1.8em;
        font-weight: bold;
        margin: 5px 0 10px 0;
        padding: 0;
    }