/*** Reset some styles ***/
ul, ol, div, img {
    margin: 0;
    padding: 0;
    border: 0px none;
}
li { list-style-type: none; }


/*** Typography ***/
body { font-size: 10pt; font-family: arial, sans-serif; }
h1, h2, h3 {
    font-family: "Times New Roman", Times, serif;
    font-style: italic;
    color: #212121;
    margin-right: 1em;
}

p {
    color: #212121;
    line-height: 1.5em;
}
a, a:visited {
    color: #6b3c21;
    text-decoration: none;
}
a:hover { color: white; }

#content-main ul li {
    list-style-type: disc;
    list-style-position: inside;
}

#content-main ul.itemlist li { list-style-type: none; }

#content-main img {
    border: 0;
    padding: 4px;
    background-color: rgb(230,230,230);
}


/*** Layout and Design ***/
body {
    background: url('/media/static/images/background.png') repeat;
}

#wrapper {
    margin: 0 auto;
    width: 800px;
}

#header {
    text-align: center;
    margin-bottom: 0.5em;
}

#nav {
    width: 100%;
    overflow: hidden;
    font-size: 10pt;
    margin-left: 1em;
}
#nav ul li {
    display: inline-block;
    float: left;
    margin-right: 1em;
}
#nav ul li a, #nav ul li a:visited {
    padding: 0 1em;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    background-color: rgb(200,200,180);
    border-bottom: 1px solid black;
    text-decoration: none;
    font-weight: bold;
    color: #212121;
}
#nav ul li a:hover { 
    background-color: rgb(230,230,230);
}

#content {
    width: 100%;
    overflow: hidden;
}
#content-small { width: 20%; }
#content-medium { width: 50%; }
#content-large { width: 80%; }
#content-xlarge { }

* html #content-small { width: 19%; }

#content-main { min-height: 400px; }

.portlet { 
    background: url('/media/static/images/content-background.png') no-repeat top right transparent;
    /* background-color: rgb(255,255,255,0.75);
    background-color: rgba(255,255,255,0.75); */
    background-color: rgb(200,200,180);
    padding: 1em;
    margin-bottom: 0.5em;
}
.portlet h1:first-child {
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#footer {
    background-color: rgb(200,200,180);
    padding: 1em;
    font-size: 10pt;
    text-align: center;
}
#footer p { color: #212121; }
#footer a, #footer a:visited {
    text-decoration: none;
    font-weight: bold;
    color: #212121;
}
#footer a:hover { color: white; }

.left { float: left; }
.right { float: right; }


/*** Individual Portlets ***/
#content-small .portlet {
    background-color: rgb(200,200,180);
    background-image: none;
    margin: 1em 0;
    padding: 1em 0.5em;
    font-size: 10pt;
    text-align: center;
    border-left: 2px solid black;
    line-height: 1.5em;
}
#content-small .portlet h3 {
    text-align: right; 
    margin: 0 0 0.5em 0;
}


/*** Rounded Corners ***/
.rounded {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}
.rounded-top {
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-radius-topleft: 10px;
    -webkit-border-radius-topright: 10px;
}
.rounded-bottom {
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-radius-bottomleft: 10px;
    -webkit-border-radius-bottomright: 10px;
}
.rounded-right {
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-radius-topright: 10px;
    -webkit-border-radius-bottomright: 10px;
}
.rounded-left {
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-radius-topleft: 10px;
    -webkit-border-radius-bottomleft: 10px;
}

