/* CSS Document */

/* "Texas" Template for Joomla
 Copyright 2007 All rights reserved
 Beau Hicks
 Bond Computers
 beau.hicks@bondcomputers.com
 http://www.bondcomputers.com
   26 April 2007 
   Single site licence ONLY!
   */
/* CSS global reset for all browsers */ 
* {
	padding: 0;
	margin: 0;
	}
/* Background - a small image goes a long way, and basic font styling */
body {
	background: url(../images/body.jpg);
	text-align: center;
	font-family:Georgia, "Times New Roman", Times, serif;
     color: #000000;
	}
	/* 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: 798px;
	margin-left: auto;
	margin-right: auto;
	max-width: 798px;
	}
	/* Area to put the main heading text in */	
#header
	{
	width: 798px;
	padding: 0em;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
}
/* 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/header.jpg) top left no-repeat;
	width: 798px;
	height: 272px; 
	text-indent: -5000px;
	}
	/* Start of the main content once the header has been done */
#core
	{
	text-align: left;
	padding: 0em;
	}
	/* Static menu area */
#menu
	{
	width: 798px;
	height: 34px;
	position: relative;
	}
/* Workaround for IE flicker bug for the menu items - partly based on Pixy's CSS rollovers without flicker */
#menu a:hover {
	top: 0px;
	left: 0px;
}
#menu a:active {
	top: 0px;
	left: 0px;
}
/* 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 */


/* 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: 11px;
	padding-top: 0px;
	padding-right: 13px;
	min-height: 14px;
	max-width: 798px;
	}
/* Split the main content area into two columns - via static widths and a float */
#sidebar
	{
	width:147px;
	float: left;
}
	
#bodytext {
	width: 450px;
	padding-left: 11px;
}

/* Make sure the font size for links and paragraphs doesn't break */ 
 p, a {
	font-size: 0.8em;
}
#rightbar {
	width:147px;
	background: transparent url(../images/module_top.jpg) left repeat-y;
margin-bottom: 10px;
	float: right;

}
	
 /* Footer  - need I say more? */
 #footer
	{
	background: url(../images/foot.jpg) no-repeat 0% 0%;
	width: 798px;
	height: 31px;
	}
/* Mambo specific calls - there are more out there, this is just a reduced set for high speed layout*/
/* Formatting for modules */

a.mainlevel:link, a.mainlevel:visited {
	display: block;
	background: url(../images/menu_bg.png) no-repeat;
	vertical-align: middle;
	font-size: 11px;
	font-weight: bold;
	color: #ccc;
	text-align: left;
	padding-top: 5px;
	padding-left: 18px;
	height: 20px !important;
	height: 25px;
	width: 100%;
	text-decoration: none;
	}
	
	a.mainlevel:hover {
	background-position: 0px -25px;
	text-decoration: none;
	color: #fff;
}
	



table.moduletable
	{
	width: 100%;
	padding-left: 0px;
	padding-top: 2px;
	padding-bottom: 10px
	text-align: left;
	background-color: #3d63ae;

	
}

/* Heading text of the modules */
table.moduletable.th {
	color: #000099;
	text-align: left;
	padding-left: 4px;
	padding-bottom: 8px;
	height: 24px;
	line-height: 80px;
	font-weight: bold;
	font-size: 10px;
	margin: 0 0 2px 0;
}

/* 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;
}
	
