/* -------------------------------------------------------------- 
Base stylesheet for ProofOrPropaganda.com

Author: Andrew Le, Alchemist Creative
Author Site: http://alchemistcreative.com
Project: Proof or Propaganda Website
Project URL: http://prooforpropaganda.com
Date: August 2008
-------------------------------------------------------------- */

@import "reset.css";
@import "typography.css";

/* Layout & Positioning
-------------------------------------------------------------- */
body {
    background-color: #000;
    text-align: center;
}

#container {
    position: relative;
    margin: 0 auto;
    text-align: left;
    width: 707px;
}

#header {
    margin-bottom: 1em;
}

#header h1 {
    background: url("../images/banner.jpg") no-repeat top left;
    display: block;
    width:707px;
    height: 126px;
    text-indent: -999999px;
}

ul#nav {
    display: inline;
    float: left;
    list-style: none;
    margin: 0;
    width: 140px;
}

ul#nav li {
     text-align: center;
}

ul#nav li label,
label {
    display: block;
    font-weight: normal;
    text-align: left;
}

#content {
    float: left;
    font-size: 14px;
    margin-left: 20px;
    padding: 12px 12px 0;
    min-height: 350px;
    width: 503px;
}

#footer {
    background: url("../images/footer_bg.png") repeat-x bottom left;
    display: block;
    font-size: 12px;
    margin: 100px 0 0;
    width: 707px;
}

.imgbox {
    float: right;
    font-size: 10px;
    margin: 5px 0 5px 10px;
    width: 182px;
}

.screengrab {
    display: block;
}

/* Footer
-------------------------------------------------------------- */
#footer p {
    float: left;
    margin: 0 1em;
}

#footer p.right {
    float: right;
}

/* Embedded
-------------------------------------------------------------- */
object {
    border: 1px solid #666;
}

#zoom_table, #zoom_table td, #zoom_table tr {
    border: none;
}

#zoom_table td, #zoom_table tr {
    background: transparent!important;
}

#zoom_table td.mm {
    background-color: #333!important;
}


/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clear { display: inline-block; }   
.clear:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
* html .clear { height: 1%; }
.clear { display: block; }
