/* @override 
	http://cerritos.org/templates/cerritos2009/css/template.css
*/

/* @group Reset */
html,body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,fieldset,input { 
	margin: 0; padding: 0; 
}
h1,h2,h3,h4,h5,h6,pre,code,address,caption,cite,code,em,strong,th { 
	font-size: 1em; font-weight: normal; font-style: normal; 
}
ul,ol { list-style-type: none; }
fieldset,img { border: none; }
caption,th { text-align: left; }
/* @end */

html,body {
	height: 100%;
}


/* @group Classes */
	/* @group Colors */
	/* @group Text */	
	.graytext {
		color: #404040;
	}
	.text_999 {
		color: #999;
	}
	.text_777 {
		color: #777;
	}
	.text_666 {
		color: #666;
	}
	/* @end */
	/* @group Background */

	/* @end */
	/* @group Borders */

	/* @end */

	/* @end */
/* box widths */
div.left, div.right {
	float: left;
}

.w_25,
.quarter {
	width: 25%;
}
.w_33,
.third {
	width: 33%;
}
	.w_33_10,
	.third {
		width: 31%;
		padding: 10px;
	}
	.w_33_20,
	.third {
		width: 29%;
		padding: 20px;
	}
.w_40 {
	width: 40%;
}
.w_45,
.forty_five {
	width: 45%;
}
.w_50,
.half {
	width: 50%;
}
	.w_50_10 {
		width: 46%;
		padding: 2%;
	}
	.w_50_20 {
		width: 43%;
		padding: 20px;
	}
.w_60 {
	width: 60%;
}
.w_66,
.two_thirds {
	width: 66%;
}
.w_75,
.three_quarters {
	width: 75%;
}

/* sectional highlighting */
.blue {
	margin: 0 0 10px 0;
	padding: 10px;
}
.unavailable {
	opacity: .40;
}
.overflow {
	overflow: auto;
}

/* floating/positioning */
.center {
	margin: 0 auto;
}
.floatright,
.float_right {
	display: block;
	float: right;
	margin: 0 !important;
}
.floatleft,
.float_left {
	display: block;
	float: left;
	margin: 0;
}
.floatnone,
.float_none {
	float: none;
	display: inline;
}
/* text alignment */
.textcenter,
.text_center {
	text-align: center;
}
.textleft,
.text_left {
	text-align: left;
}
.textright,
.text_right {
	text-align: right;
}
/*line height*/
.line_height_1.3,
.actions {
	line-height: 1.3;
}
/* clearing */
.clearleft,
.clear_left {
	clear: left;
}
.clearright,
.clear_right {
	clear: right;
}
.clearboth,
.clear_both,
.indent {
	clear: both;
}
	
/* display properties */
.block {
	display: block;
}
.inline {
	display: inline;
}
.hidden {
	display: none;
}
.nowrap, .no_wrap {
	white-space: nowrap;
}
/* padding */
.padding_30 {
	padding: 30px;
}
.padding_20 {
	padding: 20px;
}
.padding_10,
.padding {
	padding: 10px;
}
.padding_5 {
	padding: 5px;
}
.padding_3 {
	padding: 3px;
}
.paddingtopbottom_10,
.padding_top_bottom_10 {
	padding: 10px 0;
}
.paddingleftright_10,
.padding_left_right_10 {
	padding: 0 10px;
}
.paddingleft_10,
.padding_left_10 {
	padding-left: 10px;
}
.paddingright_10,
.padding_right_10 {
	padding-right: 10px;
}
.paddingbottom_10,
.padding_bottom_10 {
	padding-bottom: 10px;
}
.paddingnone,
.padding_none {
	padding: 0;
}
	
/* margin */
.margin_20 {
	margin: 20px;
}
.margin_20_0 {
	margin: 20px 0;
}

.margin_10,
.margin {
	margin: 10px;
}
.margin_10_0 {
	margin: 10px 0;
}
.margintop_10,
.margin_top_10 {
	margin-top: 10px;
}
.margintop_20,
.margin_top_20 {
	margin-top: 20px;
}

.marginright_5,
.margin_right_5 {
	margin-right: 5px;
}
.marginright_10,
.margin_right_10 {
	margin-right: 10px;
}

.marginbottom_10,
.margin_bottom_10 {
	margin-bottom: 10px;
}
.marginbottom_20,
.margin_bottom_20 {
	margin-bottom: 20px;
}

.marginleft_5,
.margin_left_5 {
	margin-left: 5px;
}
.marginleft_10,
.margin_left_10,
.indent {
	margin-left: 10px;
}

.marginnone,
.margin_none {
	margin:0;
}
.marginauto,
.margin_auto {
	margin:0 auto;
}
/* separators */
.post_separator,
.separator,
.separator_20 {
	margin: 20px 30px;
	border-bottom: 1px solid #eee;
}
.separator_10 {
	margin: 10px 30px;
	border-bottom: 1px solid #eee;
}

/* @end */
/* @group Rounded Corners */
/* 30px ALL corners */
.all_30 {
	-moz-border-radius-topleft:30px;
	-webkit-border-top-left-radius:30px;
	border-top-left-radius:30px;
	
	-moz-border-radius-topright:30px;
	-webkit-border-top-right-radius:30px;
	border-top-right-radius:30px;
	
	-moz-border-radius-bottomright:30px;
	-webkit-border-bottom-right-radius:30px;
	border-bottom-right-radius:30px;
	
	-moz-border-radius-bottomleft:30px;
	-webkit-border-bottom-left-radius:30px;
	border-bottom-left-radius:30px;
}
/* 20px ALL corners */
.all_20 {
	-moz-border-radius-topleft:20px;
	-webkit-border-top-left-radius:20px;
	border-top-left-radius:20px;
	
	-moz-border-radius-topright:20px;
	-webkit-border-top-right-radius:20px;
	border-top-right-radius:20px;
	
	-moz-border-radius-bottomright:20px;
	-webkit-border-bottom-right-radius:20px;
	border-bottom-right-radius:20px;
	
	-moz-border-radius-bottomleft:20px;
	-webkit-border-bottom-left-radius:20px;
	border-bottom-left-radius:20px;
}
/* 10px ALL corners */
.all_10,
.sidebar .module {
	-moz-border-radius-topleft:10px;
	-webkit-border-top-left-radius:10px;
	border-top-left-radius:10px;
	
	-moz-border-radius-topright:10px;
	-webkit-border-top-right-radius:10px;
	border-top-right-radius:10px;
	
	-moz-border-radius-bottomright:10px;
	-webkit-border-bottom-right-radius:10px;
	border-bottom-right-radius:10px;
	
	-moz-border-radius-bottomleft:10px;
	-webkit-border-bottom-left-radius:10px;
	border-bottom-left-radius:10px;
}
/* 10px BOTTOM corners */
.bc_10 {	
	-moz-border-radius-bottomright:10px;
	-webkit-border-bottom-right-radius:10px;
	border-bottom-right-radius:10px;
	
	-moz-border-radius-bottomleft:10px;
	-webkit-border-bottom-left-radius:10px;
	border-bottom-left-radius:10px;
}

/* 10px TOP corners */
.tc_10,
.blog .posts .category_header {
	-moz-border-radius-topleft:10px;
	-webkit-border-top-left-radius:10px;
	border-top-left-radius:10px;
	
	-moz-border-radius-topright:10px;
	-webkit-border-top-right-radius:10px;
	border-top-right-radius:10px;
}
/* 10px TOP LEFT corner */
.tlc_10 {
	-moz-border-radius-topleft:10px;
	-webkit-border-top-left-radius:10px;
	border-top-left-radius:10px;
}
/* 10px TOP RIGHT corner */
.trc_10 {
	-moz-border-radius-topright:10px;
	-webkit-border-top-right-radius:10px;
	border-top-right-radius:10px;
}
/* 10px BOTTOM LEFT corner */
.blc_10 {
	-moz-border-radius-bottomleft:10px;
	-webkit-border-bottom-left-radius:10px;
	border-bottom-left-radius:10px;
}
/* 10px BOTTOM RIGHT corner */
.brc_10 {
	-moz-border-radius-bottomright:10px;
	-webkit-border-bottom-right-radius:10px;
	border-bottom-right-radius:10px;
}

/* 5px ALL corners */
.all_5,
blockquote  {
	-moz-border-radius-topleft:5px;
	-webkit-border-top-left-radius:5px;
	border-top-left-radius:5px;
	
	-moz-border-radius-topright:5px;
	-webkit-border-top-right-radius:5px;
	border-top-right-radius:5px;
	
	-moz-border-radius-bottomright:5px;
	-webkit-border-bottom-right-radius:5px;
	border-bottom-right-radius:5px;
	
	-moz-border-radius-bottomleft:5px;
	-webkit-border-bottom-left-radius:5px;
	border-bottom-left-radius:5px;
}
/* 5px TOP corners */
.tc_5 {
	-moz-border-radius-topleft:5px;
	-webkit-border-top-left-radius:5px;
	border-top-left-radius:5px;
	
	-moz-border-radius-topright:5px;
	-webkit-border-top-right-radius:5px;
	border-top-right-radius:5px;
}

/* 5px TOP LEFT corner */
.tlc_5 {
	-moz-border-radius-topleft:5px;
	-webkit-border-top-left-radius:5px;
	border-top-left-radius:5px;
}
/* 5px TOP RIGHT corner */
.trc_5,
.mainleft .module ul li a {
	-moz-border-radius-topright:5px;
	-webkit-border-top-right-radius:5px;
	border-top-right-radius:5px;
}

/* 5px BOTTOM LEFT corner */
.blc_5 {
	-moz-border-radius-bottomleft:5px;
	-webkit-border-bottom-left-radius:5px;
	border-bottom-left-radius:5px;
}

/* 5px BOTTOM RIGHT corner */
.brc_5,
.mainleft .module ul li a {
	-moz-border-radius-bottomright:5px;
	-webkit-border-bottom-right-radius:5px;
	border-bottom-right-radius:5px;
}

/* 3px ALL corners */
.all_3 {	
	-moz-border-radius-topleft:3px;
	-webkit-border-top-left-radius:3px;
	border-top-left-radius:3px;
	
	-moz-border-radius-topright:3px;
	-webkit-border-top-right-radius:3px;
	border-top-right-radius:3px;
	
	-moz-border-radius-bottomright:3px;
	-webkit-border-bottom-right-radius:3px;
	border-bottom-right-radius:3px;
	
	-moz-border-radius-bottomleft:3px;
	-webkit-border-bottom-left-radius:3px;
	border-bottom-left-radius:3px;
}

/* 3px TOP corners */
.tc_3 {	
	-moz-border-radius-topleft:3px;
	-webkit-border-top-left-radius:3px;
	border-top-left-radius:3px;
	
	-moz-border-radius-topright:3px;
	-webkit-border-top-right-radius:3px;
	border-top-right-radius:3px;
	
}
/* @end */
/* @group Background Colors & Images */
body {
	color: #202020;
	background: #fff;
}
#wrapper {
	border: 1px solid #444;
	border-top: none;	
	-moz-border-radius-bottomright:10px;
	-webkit-border-bottom-right-radius:10px;
	border-bottom-right-radius:10px;
	
	-moz-border-radius-bottomleft:10px;
	-webkit-border-bottom-left-radius:10px;
	border-bottom-left-radius:10px;
}
#head-bar {background: #fff url(../images/h_bkgd.jpg) repeat-x left 15px;}
#header{background:url(../images/header.jpg) left bottom no-repeat;
}

div#fp-logo {
	background: url(../images/cerritosreg.png) top left no-repeat;
}
div#logo {
	background: url(../images/cerritosreg_sm.png) top left no-repeat;
}

td.left,
td.right {background:#9BB8D6;}

td.left {
	border-right: 1px solid #444;
}
td.right {
	border-left: 1px solid #444;
	/*border-right: 1px solid #333;*/
}
#footer {
	background:#336799;
	border-top:1px solid #444;
		-moz-border-radius-bottomright:10px;
	-webkit-border-bottom-right-radius:10px;
	border-bottom-right-radius:10px;
	
	-moz-border-radius-bottomleft:10px;
	-webkit-border-bottom-left-radius:10px;
	border-bottom-left-radius:10px;
}
/* @end */
/* @group Fonts & Colors*/
body {
	font-size: 12px;
	font-family: "Lucida Grande", Arial, Verdana, sans-serif;
	line-height: 18px;
}	 
h1,h2,h3,h4,h5,h6,
.componentheading,
.componentheading-contact,
.sectiontableheader,
span.pathway,
.small,
.createdate,
.modifydate,{
	font-weight: bold;
	padding-bottom: 5px;
}
h1,
.componentheading,
td.contentheading {
	letter-spacing:.03em;
	margin: 0 0 20px 0;
	padding:0;
	font-size:170%;
	color: #999;
}
.componentheading {
	font-weight: bold;
}
td.contentheading {
	margin: 0;
	padding: 0 0 15px 0;
	font-weight: bold;
}
table.blog td.contentheading {
	color: #1f396a;	
}
h2 {
	margin: 0 0 10px 0;
	padding:0;
	font-size:140%;
	color: rgb(0,0,128);
}
table.blog h2 {
	color: #666;
}
#submenu h2 {
	color:#214887;
}
h3,
table.moduletable th {
	margin: 0 0 10px 0;
	padding:0;
	font-size:130%;
	color: #214887;
}
h4 {
	margin: 0 0 5px 0;
	padding:0;
	text-transform:capitalize;
	font-size:120%;
	color: #333;
}
p {
	margin-bottom:18px;
}
acronym, abbr{
	cursor: help;
}
blockquote {
	margin: 1em 2.5em;
	padding:0 1em;
	line-height:1.5em;
	font-size:1.2em;
}
small {
	font-size: 85%;
}
strong {
	font-weight: bold;
}
code {
	font: 8px "Arial";
}
#val {
	font-size:18px;
	color:#000;
}
#footer {
	font-size:12px;
	line-height: 1.2em;
	color:#eee;
}

/* @group Lists */
ul {
	list-style-position:outside;
	list-style-type:circle;
	padding: 0 0 1em 1em;
	margin: 0 0 0 2em;
}

ol {
	padding: .5em 0;
	margin: 0 0 0 4em;
}

li {
	margin:0 0 .5em 1em;
	padding:0 0 0 .5em;
}

.top ul,
.top ul li,
.inset ul,
.inset ul li,
.left ul,
.right ul {
	list-style-type:none !important;
	list-style-image:none !important;
	margin:0;
	padding:0;
}

.left ul,
.right ul {
	margin:0 0 0 15px;
	padding:0;
}

.left li,
.right li {
	padding:0;
	margin:0 0 5px 0;
}
/* @end */
/* @end */
/* @group Links */
/* @group Menus */
/* @group Side Menus */
.left a.mainlevel,
.left a.mainlevel:link,
.left a.mainlevel:visited,
.right a.mainlevel,
.right a.mainlevel:link,
.right a.mainlevel:visited {
	color: #1f396a;
	text-decoration: none;
	font-size: 120%;
	line-height: 1.5em;
}
.left a.mainlevel:hover,
.left a.mainlevel:active,
.right a.mainlevel:hover,
.right a.mainlevel:active {
	color: #336799;
}
a#active_menu.mainlevel {
	color: #000;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 16px;
}
a#active_menu.sublevel {
	color: #555;
}
.right table.moduletable div {
	margin-left:10px;
}
.left a.sublevel,
.left a.sublevel:link,
.left a.sublevel:visited,
.right a.sublevel,
.right a.sublevel:link,
.right a.sublevel:visited {
	color: #214887;
	text-decoration: none;
}
.right table.moduletable div div {
	margin-left:0;
	padding: 0;
}
.left div.moduletable div > a.sublevel,
.left div.moduletable div > a.sublevel:link,
.left div.moduletable div > a.sublevel:visited,
.right div.moduletable div > a.sublevel,
.right div.moduletable div > a.sublevel:link,
.right div.moduletable div > a.sublevel:visited {
	font-size: 14px;
	font-weight: normal;
}
.right div.moduletable div {
	margin-bottom:10px;
}
.right div.moduletable div > div{
	margin-bottom:0px;
}

.left div.moduletable div div > a.sublevel,
.left div.moduletable div div > a.sublevel:link,
.left div.moduletable div div > a.sublevel:visited,
.right div.moduletable div div > a.sublevel,
.right div.moduletable div div > a.sublevel:link,
.right div.moduletable div div > a.sublevel:visited {
	font-size: 12px;
	margin: 0 0 0 5px;
}

.left div.moduletable div div div > a.sublevel,
.left div.moduletable div div div > a.sublevel:link,
.left div.moduletable div div div > a.sublevel:visited,
.right div.moduletable div div div > a.sublevel,
.right div.moduletable div div div > a.sublevel:link,
.right div.moduletable div div div > a.sublevel:visited {
	font-size: 11px;
	margin: 0 0 0 5px;
}
/* @end */
/* @group Top Menus */

div.top div.moduletable,
div.inset div.moduletable {
	border-right:3px solid #369;
	padding-right:10px;
	width: 30%;
	text-align: right;
}
div.top div.moduletable.chamber {

}
div.top div.moduletable {
	margin-top: 5px;
	float: right;
	height: 130px;
}
div.inset div.moduletable {
	margin: 35px 0;
	float: left;
	height: 163px;
}
a#active_menu-menu.mainlevel-menu,
a#active_menu-menu.sublevel-menu {
	color: #999;
}

ul.menu li.parent a,
ul.menu li.parent a:link,
ul.menu li.parent a:visited,
a.mainlevel-menu {
	font-size: 16px;
	font-weight:bold;
	letter-spacing:normal;
	text-transform:uppercase;
	margin-bottom: 3px;
	display: block;
}
ul.menu li.parent ul a,
ul.menu li.parent ul a:link,
ul.menu li.parent ul a:visited,
a.sublevel-menu {
	text-transform: lowercase;
	font-size: 12px;
	line-height: 14px;
	font-weight: normal;
	margin-bottom: 0px;
}
/* @end */
/* @end */
a, a:link, a:visited {
	color: #369;
	text-decoration: underline;
}
a:hover, a:active {
	color:#999;
	text-decoration: none;
}

ul.menu li a,
ul.menu li a:link,
ul.menu li a:visited {
	color: #000;
	text-decoration: none;
}
ul.menu li a:hover,
ul.menu li a:active  {
	color:#333;
	text-decoration: underline;
}
#footer a, #footer a:link, #footer a:visited {
	color: #eee;
	text-decoration: none;
}
#footer a:hover, #footer a:active {
	color:#000;
	text-decoration: underline;
}
/* @end */
hr {
	width:80%;
	height:1px;
}
/* @group Tables */
/* @group article table list */
table.category {
	margin: 15px 0 0 0;
	width: 100%;
	clear: both;
}
table.category tr.sectiontableentry1 {
	background: #f9f9f9;
}
table.category tr.sectiontableentry2 td {
	/*background: #fff;*/
}
table.category tr.sectiontableentry1 td,
table.category tr.sectiontableentry2 td {
	padding: 5px;
}
/* @end */
table {
	
}
td.left table.moduletable th,
td.right table.moduletable th {
	text-align: left;
}
td {
	vertical-align: top;
}
table.app {
	width: 100%;
	border: 1px solid #ddd;
}
table.app tr.odd td{
	background: #f0f0f0;
}

table.app td{
	padding: 5px;
}
table.app th {
	background: #ddd;
	line-height: 25px;
	font-size:14px;
	padding: 0 5px;
}
/* @end */
/* @group Moduletables */
td.left table.moduletable,
td.right table.moduletable {
	margin: 0 0 20px 0;
}
/* @end */

/* @group Clearing Classes */
/* @group clearfix */
/* Clear floats without structural markup courtesy of positioniseverything.net/easyclearing.html */
.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
.clearfix {display: inline-table;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac *//* CSS Document */

div.clearer {
	clear: both;
	display: block;
	margin: 0;
	padding: 0;
	height: 0;
	line-height: 1px;
	font-size: 1px;
}
/* @end */
div.clearer {
	clear: both;
	display: block;
	margin: 0;
	padding: 0;
	height: 0;
	line-height: 1px;
	font-size: 1px;
}
/* @end */
/* @group Formatting */
/* @group Classes */
span.alert,
span.info,
span.download,
span.note {
	display: block;
	padding: 10px 10px 10px 50px;
	margin: 15px 0;	
}
span.alert {
	color: #c00;
	border-top: 3px solid #fe7b7a;
	border-bottom: 3px solid #fe7b7a;
	background: #ffcccc url(../images/status-alert.png) 10px 50% no-repeat;
}

span.info {
	color: #0055BB;
	border-top: 3px solid #629de3;
	border-bottom: 3px solid #629de3;
	background: #CDDFF6 url(../images/status-info.png) 10px 50% no-repeat;
}

span.note {
	color: #B79000;
	border-top: 3px solid #fde179;
	border-bottom: 3px solid #fde179;
	background: #fff5cc url(../images/status-note.png) 10px 50% no-repeat;
}

span.download {
	color: #57861A;
	border-top: 3px solid #c2df88;
	border-bottom: 3px solid #c2df88;
	background: #e8f4d2 url(../images/status-download.png) 10px 50% no-repeat;
}
blockquote {
	width: auto;
	padding: 10px 10px 10px 80px;
	margin: 15px 0;
	background: #f9f9f9 url(../images/blockquote.png) 0 0 no-repeat;
	color: #666;
	font-style: italic;
	font-size: 120%;
	line-height: 150%;
}
pre {
	background: #f6f6f6;
	border-top: 3px solid #ddd;
	border-bottom: 3px solid #ddd;
	padding: 10px;
}
#mainbody ul.check1,
#mainbody ul.check2,
#mainbody ul.arrow1,
#mainbody ul.arrow2,
#mainbody ul.arrow3,
#mainbody ul.star,
#mainbody ul.circle,
#mainbody ul.morespace {
	margin-left: 35px;
	padding: 0;
}

ul.check1 li,
ul.check2 li,
ul.arrow1 li,
ul.arrow2 li,
ul.arrow3 li,
ul.star li,
ul.circle li,
li.check1,
li.check2,
li.arrow1,
li.arrow2,
li.arrow3,
li.star,
li.circle {
	list-style: none;	
	padding-bottom: 15px;
	padding-left: 40px;
}
#mainbody ul.check1 li,
#mainbody li.check1 {
	background: url(../images/bullet-1.png) 0 0 no-repeat;
}

#mainbody ul.check2 li,
#mainbody li.check2 {
	background: url(../images/bullet-3.png) 0 0 no-repeat;
}

#mainbody ul.arrow1 li,
#mainbody li.arrow1 {
	background: url(../images/bullet-2.png) 0 0 no-repeat;
}

#mainbody ul.arrow2 li,
#mainbody li.arrow2 {
	background: url(../images/bullet-4.png) 0 0 no-repeat;
}

#mainbody ul.arrow3 li,
#mainbody li.arrow3 {
	background: url(../images/bullet-5.png) 0 0 no-repeat;
}

#mainbody ul.star li,
#mainbody li.star {
	background: url(../images/bullet-6.png) 0 0 no-repeat;
}

#mainbody ul.circle li,
#mainbody li.circle {
	background: url(../images/bullet-7.png) 0 0 no-repeat;
}
/* @end */
/* @group pathway */
div#pathway {
	margin-bottom: 5px;
	border-bottom: thin solid #eee;
}
span.pathway {
	color: #369;
	font-size: 11px;
}
span.pathway img {
	float:  left;
	margin: 8px 5px 0 5px;
	border: 0;
	width: 17px;
	height: 16px;
	/*vertical-align: middle;*/
	background: url(../images/bullet-pathway.png) no-repeat;
}
a.pathway,
a.pathway:link,
a.pathway:visited {
	color: #369;
	text-decoration: none;
}
a.pathway:hover,
a.pathway:active {
	color: #999;
	text-decoration: none;
}
/* @end */
.highlight {
  background-color: #ffd;
  padding: 10px 5px;
}
.newsflash {
	height: 40px;
	background:#dee;
	border-bottom: 1px solid #333;
	text-align: center;
	padding-top:25px;
}
.newsflash table.moduletable {
	margin: 0 auto;
}

#wrapper {
	width: 870px;
	margin:0 auto;
}
#header {
	height:145px;
}
#logo {
	width:246px;
	height:125px;
	float:left;
	margin:5px 0 0 0;
}
div#mainbody {
	/*width: 760px;
	margin:0 auto;*/
}
#fp-logo {
	width:285px;
	height:143px;
	position:absolute;
	top:28px;
	left:50%;
	margin-left:-142px;
}
div.moduletable-trilogy {
	width:530px;
	margin:0 auto;
	clear: both;
}
#val {
	height:25px;
	float: right;
	margin: 60px 15px 0 0;
}
div.top {
	float: right;
	width:500px;
	margin-right: 10px;
}
td.mainbody {
	padding:10px;
}
td.left,
td.right {
	width:250px;
	padding:5px;
	margin: 0;
}

/* @group Article Formatting */

div.blog {
	
}
div.buttonheading {
	float: right;
}
div.buttonheading a,
div.buttonheading a:link,
div.buttonheading a:visited {
	text-decoration: none;
	font-size: 10px;
	color: #666;
}
div.buttonheading a:hover,
div.buttonheading a:active {
	color: #369;
}

/* @end */
#footer {
	padding:.5em 0;
	text-align:center;
}
#footer table.moduletable {
	text-align: center;
	margin: 0 auto;
}
/* @end */
/* @group VirtueMart */
div.related img {
	display: none;
}


/* @end */

/* @group Contact Form */
div.contact {
	margin: 0 0 0 20px;
}
div.contact p {
 	margin: 0 0 10px 0;
}

div.contact p.name {
	font-size: 130%;
	font-weight: bold;
	margin: 0 0 20px 0;
}
div.contact div.vcard {
	margin: 20px 0;
	padding: 20px 0 0 5px;
	width: 250px;
}
div.contact p.vcard {
	padding: 0 0 20px 10px;
	margin: 0;
}

span.marker {
	font-weight: bold;
	float: left;
	width: 90px;
}
div.contact address {
	font-weight: normal;
	font-style: normal;
}
div.contact address p {
	margin: 0 0 10px 90px;
}

/* Email Form */
form#emailForm {
	margin: 20px 0;
}

form#emailForm div.contact_email label {
	display: block;
	width: 150px;
	float: left;
	font-weight: bold;
}
form#emailForm div.contact_email {
	margin: 0 0 10px 0;
}
form#emailForm textarea,
form#emailForm input {
	margin: 0;
	width: 220px;
}
form#emailForm textarea {
	height: 60px;
}
form#emailForm button {
	margin: 0 0 10px 150px;
}


/* @end */