@charset "UTF-8";
/* CSS Document */

/************ Css Reset  (ignore this, since it fixes most of the crap that IE 6 does)***********/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
	font-family:Helvetica, Arial, sans-serif;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*Text settings*/
p{
	font-size:11px;
	margin-bottom:20px;
}

h2{
	font-size:14px;
}


/************************************** ACTUAL EDITABLE STUFF *******************************************************/

/**** Notes for the Designer (that means you sarah)
 *
 *  The body styling controls the universal font options (size, default color, and type)
 *  
******/

body, html {
    background:#373637;
    
    /*********** Universal Font Controls ***********/
    
    font-size:.9em;
    font-family:helvetica, arial, sans-serif;
    color:#000;
	word-spacing:0.05em;
	line-height:140%;
}

div{
    display:block;
    margin:0;
    padding:0;
}

ul {
    padding:0;
    margin:0;
}

img {
    border:none;
    margin:0;
    padding:0;
}

/************* Alignments **************/

.centered {
    margin-left:auto;
    margin-right:auto;
    position:relative;
    clear:both;
    float:none;
    display:block;
}

.clear {
    clear:both;
    float:left;
    position:relative;
    display:block;
}

.contains {
    overflow:hidden;
}

/************* Container Divs ****************/

#header {
    height:150px;
    width:100%;
    float:left;
    background:#282828 url(../images/bgGradient.jpg) repeat-x;
}

#logoContainer{
	height:auto;
	width:865px;
}

#container{
    width:865px;
}

#contentLeft, #contentRight {
    float:left;
    display:inline;
    position:relative;
}

#contentLeft {
    width:600px;
    height:auto;
    margin-right:50px;
}

#contentRight {
    width:150px;
    height:auto;
}


/******************* Navigation ***************/


#navigation {
    width:592px; /*** = Size of div below ***/
    height:50px;
    margin-left:8px;
    display:block;
    list-style:none;
    overflow:hidden;
}

#navigation li {
    float:left;
    display:inline;
}

#navigation li a {
    height:50px;
    width:80px;
    background:url('../images/content/contentGrad.gif') bottom repeat-x #5d5d5d;
    float:left;
    margin-top:20px;
    line-height:35px;
    text-align:center;
    color:#fff;
    text-decoration:none;
    margin-right:2px;
    font-size:0.9em;
    color:#000;
}

#navigation li a:hover { /********* Temporary (unless specified) *************/
    /*font-weight:bold;*/
	color:#373637;
}

.current {
    margin-top:10px !important;
    line-height:40px !important;
    color:#fff !important;
}

/********************** Footer ************************/

#footer {
    width:100%;
    height:150px;
    background:#111;
    margin-top:30px;
}

/********************** Other Content Divs **************/

#sideBar{
    width:150px;
    background:url('../images/content/contentGrad.gif') bottom repeat-x #5d5d5d;
    clear:both;
}

#topMost {
    margin-top:0;
}

/********************* Constant Images ********************/

#logo {
    margin-top:20px;	
}


/******************* Content Classes **********************/

.contentBox {
    width:600px;
    background:url('../images/content/contentGrad.gif') bottom repeat-x #5d5d5d;
    margin-bottom:20px;
}


/***************** Stylising Classes ********************/

.hasBorder {
    border:1px solid #555;
    border-bottom-width:0px;
}

.roundedTopCorners {
    -moz-border-radius-topright:10px;
    -moz-border-radius-topleft:10px;
    -webkit-border-top-left-radius:10px;
    -webkit-border-top-right-radius:10px;
    -khtml-border-radius-topleft: 10px;
    -khtml-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.roundedBottomCorners {
    -moz-border-radius-bottomright:10px;
    -moz-border-radius-bottomleft:10px;
    -webkit-border-bottom-left-radius:10px;
    -webkit-border-bottom-right-radius:10px;
    -khtml-border-radius-bottomleft: 10px;
    -khtml-border-radius-bottomright: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}


/****************** Main Div - Inners ******************/


/******** Header *******/

.contentHeaderBar {
    width:100%;
    height:40px;
    display:block;
    margin-bottom:10px;
    background:#444;
}

.contentHeaderBarTitle {
    width:130px;
    height:20px;
    margin:10px 0 10px 20px;
    float:left;
    font-size:1.2em;
}

/********* Main Content *******/
/*** Use this to dictate how the content in the main divs will display
 *
 *
**/

.contentBoxInnerContent {
    margin:10px;
}

.contentBoxInnerContent p {
    margin-top:10px;
    margin-bottom:20px;
}

.contentBoxInnerContent h2 {
    
}

.contentBoxInnerContent ul {
    
}


/*********** Sidebar Content *************/
/*** Use this to dictate how the content in the sidebar will display
 *
 *
**/

.sidebarInnerContent {
    margin:5px;
    font-size:0.9em; /*** Secondary Font Styling (90% of standard size) ***/
}

.sidebarInnerContent p {
    margin-top:10px;
    margin-bottom:10px;
}

.sidebarInnerContent h2 {
    
}

.sidebarInnerContent ul {
    
}


/**********YouTube Stuff************/

#youTube{
    margin:20px 0 20px 129px;
}

.smallVidMarginTop{
    margin:10px 0 4px 5px;
}

.smallVidMarginBot{
    margin:0px 0 15px 5px;
}

.smallVidMargin{
    margin:0 0 5px 5px;
}

/*#centreSidebar{*/
/*    position:relative;*/
/*    margin:0 auto;*/
/*    width:130px;*/
/*    height:auto;*/
/*}*/
