/* CSS global reset for all browsers */ 
* {
	padding: 0;
	margin: 0;
	}

body {
	text-align: center;
	font-family: Arial,Helvetica, San Serif;
	font-size: 11px;
        color: #000;
	line-height: 1.3;
	background-color: #ddd;
	}

/* Now we figure out how wide our main page is  - Alignment comes from the margin calls here combined with the text-align: center in the body call*/	
#container
	{
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
	}
/* Area to put the main heading text in */	
#header
	{
	width: 800px;
	padding: 0em;
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
}

/* Farhner Image Replacement - the code says its a header with the sitename, so we replace the header text with this header image - sweet  :-) )*/
#logo
	{
	background: url(../images/shotgun_header.jpg) top left no-repeat;
	width: 800px;
	height: 250px; 
	text-indent: -5000px;
	background-color: #fff;
	background-position: top center;
	}

/* Start of the main content once the header has been done */
#core
	{
	text-align: left;
	padding: 0em;
	}
/* Static menu area */
#menu
	{
	width: 800px;
	height: 44px;
	position: relative;
	background-color: white;
	}
/* Workaround for IE flicker bug for the menu items - partly based on Pixy's CSS rollovers without flicker */
#menu a:link {
        font-weight: bold;
	font-color: #fff;
	}

#menu a:hover {
	top: 0px;
	left: 0px;
}
#menu a:active {
	top: 0px;
	left: 0px;
}

/* Static menu area */
#menu
	{
	width: 800px;
	height: 44px;
	position: relative;
	}

/* Menu items - menu(number) items are just image padding, the rest are declared as id's within their href calls - see index.php code for this */	
/* Float left for everything to speed up layout generation - it's a quick way of doing faux tabling */
#menu1
	{
	width:63px;
	height: 44px;
	float: left;
	}

#home
	{
	width:77px;
	height: 44px;
	float: left;
	text-decoration : none;
	font-weight: bold;
	color: #000;
	}

#menu2
	{
	height: 44px;
	width:37px;
	float: left;
	}	

#forum
	{
	height: 44px;
	width:84px;
	float: left;
	text-decoration : none;
        font-weight: bold;
        color: #000;

	}

#menu2
	{
	height: 44px;
	width:37px;
	float: left;
	}
	
#down
	{
	height: 44px;
	width:94px;
	float: left;
	text-decoration : none;
        font-weight: bold;
        color: #000;

	}

#menu3
	{
	height: 44px;
	width:37px;
	float: left;
	}
	
#rost
	{
	height: 44px;
	width:85px;
	float: left;
	text-decoration : none;
        font-weight: bold;
        color: #000;

	}

#menu4
	{
	height: 44px;
	width:47px;
	float: left;
	}

#log
	{
	height: 44px;
	width:74px;
	float: left;
	text-decoration : none;
	font-weight: bold;
        color: #000;
	}

#menu5
	{
	height: 44px;
	width:34px;
	float: left;
	}
	
#cont
	{
	height: 44px;
	width:118px;
	float: left;
	text-decoration : none;
        font-weight: bold;
        color: #000;
	}

#menu6
	{
	height: 44px;
	width:22px;
	float: left;
	}
	
#menu7
	{
	height: 44px;
	width:28px;
	float: left;
	}

* Main content area  - faux columns CSS as previously seen on AListApart.com */
/* One image for the background and borders with some padding for the internal layout, so as to move the content text itself off the borders */

#content
	{
	background: url(../images/content.jpg);
	padding-left: 30px;
	padding-top: 10px;
	padding-right: 30px;
	min-height: 330px;
	}


/* Split the main content area into two columns - via static widths and a float */
#sidebar
	{
	width:180px;
	float: left;
}
	
#bodytext {
	width: 520px;
	#float: left;
}

/* Make sure the font size for links and paragraphs doesn't break */ 
 p, a {
	#font-size: 0.8em;
}

 /* Footer  - need I say more? */
 #footer
	{
	width: 800px;
	height: 64px;
	color: #999999;
	}

 /* Mambo specific calls - there are more out there, this is just a reduced set for high speed layout*/
/* Formatting for modules */
table.moduletable
	{
	width: 95%;
	padding-left: 2px;
	text-align: left;
}

/* Heading text of the modules */
table.moduletable.th {
	text-align: left;
	font-weight: bold;
	font-size: 1em;
}

/* content/data text for the modules */
table.moduletable.td {
	font-size: 0.7em;
	font-weight: lighter;
}

/* All internal headings, including the contact page */
.contentheading, .componentheading, .contact.th {
	font-weight: bold;
	font-size: 1em;
}

/* Pathway and other stuff */
.small {
	font-weight: bold;
	font-size: 0.6em;
}

.createdate, .modifydate {
	font-size: 0.8em;
}

#right_outer {
        margin-left: 2px;
        width: 165px;
}

#right_inner {
  float: none !important;
  float: left;
  border: 1px solid #cccccc;
  padding: 2px;
}




