/* default vrillusions.com site config
Try to use em units as much as possible.  %s should be fine too.  Basically
avoid non-fluid units like pt or px unless needed.  For example, no matter what
the size of text is, you would always want a 1px border.

Remember em units are inherited.  so 1em -> .8em -> 1em means that last 1em is
actually .8em globally

75% would reset 1em to approx 12px in most browsers

*/
body {
	background: #333;
	font: 1em Verdana, sans-serif;
	color: #000;
}

/* this wraps all the content except the page footer at the bottom */
#mainWrapper {
	max-width: 60em;
	margin: 0 auto;
	padding: 0 2em;
}

/* page heading, currently unused */
#heading {
	height: 1em;
}



/* begin sidebar menu defs */
#sidebar {
	background: #eee;
	float: right;
	width: 15em;
	border: 1px inset black;
	margin: 0 0 1em 1em;
	font-size: 0.8em;
}
#sidebar ul {
	margin: 0.75em 0;
	padding: 0;
}
#sidebar ul li {
	list-style: none;
}
#sidebar ul li.heading {
	font: bold 1.25em Verdana, sans-serif ;
	color: #000;
	background-color: #aaa;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	margin: 0.65em 0;
	text-align: center;
	display: block;
}
#sidebar ul li ul {
	padding: 0 0 0 0.75em;
	margin: 0;
}
/* center needs to correct for above offset */
#sidebar .center {
	margin: 0 0 0 -0.75em;
}
/* end sidebar menu defs */



/* the main content of the page */
#content	{
	font-size: 0.8em;
	background: #fff;
	color: #000;
	border: 1px solid black;
	padding: 0 1em 1em;
	margin: 0 16.5em 1em 0;
}




/* this is the footer placed below the content */
#footer {
	background: #fff;
	font: 0.8em Verdana, sans-serif;
	text-align: center;
	border: 1px solid;
	padding: 0;
	margin: 1.5em 16.5em 1.5em 0;
}
#footerContent {
	font-size: 0.9em; /* want text to be a little smaller than normal */
}
#footer p {
	margin: 0.75em;
}

/* -- begin all the page footer hackery -- */
/* source: http://www.sitepoint.com/forums/showpost.php?p=1239966&amp;postcount=3 */
/* commented backslash hack \*/
html, body{
	height: 100%;
}
/* end hack */

html, body {
	margin: 0;
	padding: 0;
}
#mainWrapper{
	min-height: 100%;
	margin-bottom: -1em;
	height: auto;
}
* html #content{
	height: 100%;
}
#pageFooterSpacer{
	clear: both;
	height: 1em;
}
#pageFooterWrapper {
	width: 100%;
	clear: both;
	height: 1em;
	background-color: #000;
	color: #fff;
}
#pageFooter {
	font-size: 0.6em;
	margin: 0 1em;
}
#pageFooter a, #pageFooter a:hover, #pageFooter a:active, #pageFooter a:visited {
	color: #8be6fa
}
/* -- end page footer stuff -- */



/* -- begin general settings -- */
dt {
	font-weight: bold;
}

a, h2 a:hover, h3 a:hover {
	color: #0066cc;
	text-decoration: none;
}

a:hover {
	color: #147;
	text-decoration: underline;
}

a img {
	border-width: 0;
	border-collapse: collapse;
}

.floatLeft {
	float: left;
}
.floatRight {
	float: right;
}

h1 {
	font-size: 1.5em;
}

h2 {
	font-size: 1.25em;
}

ul {
	list-style-type: disc;
	padding-left: 2em;
}

ul.noMarker {
	list-style-type: none;
}

.error {
	padding: .25em;
	margin: 1em 2em 0;
	background-color: #fcc;
	border: 1px solid #f00;
}

.center {
	text-align: center;
}

img.center {
	margin-left: auto;
	margin-right: auto;
}

.blogTitle {
	margin-bottom: 0;
	padding-bottom: 0;
}
.blogTitle a {
	color: #000;
}
.blogTitle a:hover {
	color: #0066cc;
}

.blogPostDate {
	color: #777;
	font-size: .9em;
}

.blogCategories {
	text-align: center;
	color: #777;
	font-size: .9em;
}
/* -- End General Settings -- */



/* -- Begin Table formatting -- */
table, td, th {
	border: 1px solid #000;
	border-collapse: collapse;
	empty-cells: show;
	padding: 0.5em;
}

table.wide {
	width: 90%;
	margin: 1em auto;
}

table.centerContents {
	text-align: center;
}

table.noBorder, table.noBorder td, table.noBorder th {
	border: 0;
}

table.twoColumn td {
	width: 50%;
}
/* -- End Table Formatting -- */



/* -- begin form stuff -- */
form {
	/*enable this to allow in-place editing.  Keep in mind the margin tag won't work */
	/*display: inline; */
	margin: 1em 0;
}

input {
	font-family: arial, verdana, sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
}

.formText {
	border: 1px solid black;
	padding: 0.1em;
	width: 15em;
	margin-bottom: 0.1em;
}
select.formText {
	width: auto;
}
.formText:focus {
	background-color: #f5f5dc;
	border-color: #8b7d6b;
}

textarea {
	font: 1em arial, verdana, sans-serif;
	border: 1px solid black;
	padding: 0.1em;
	width: 30em;
	height: 8em;
	margin-bottom: 0.1em;
}
textarea:focus {
	background-color: #f5f5dc;
	border-color: #8b7d6b;
}

.formCheckbox {
	border: 1px solid black;
	margin-top: 0.3em;
}

/* lines up all the labels to the same width, so then the form tags are aligned as well
   choose whichever size you need to have enough space for all labels */
.alignFormSmall label {
	width: 10em;
	float: left;
	clear: left;
	padding-top: .2em;
	padding-right: .5em;
	text-align: right;
	white-space: nowrap;
}
.alignFormSmall .submit, .g-recaptcha {
	margin-left: 10.5em;
}
.alignFormMedium label {
	width: 17em;
	float: left;
	clear: left;
	padding-top: .2em;
	padding-right: .5em;
	text-align: right;
	white-space: nowrap;
}
.alignFormMedium .submit, .alignFormMedium #recaptcha_widget_div {
	margin-left: 17em;
}
.alignFormLarge label {
	width: 24em;
	float: left;
	clear: left;
	padding-top: .2em;
	padding-right: .5em;
	text-align: right;
	white-space: nowrap;
}
.alignFormLarge .submit, .alignFormLarge #recaptcha_widget_div {
	margin-left: 24em;
}

/*use this class to remove the above formattings*/
label.noAlign {
	width: auto;
	float: none;
	text-align: left;
}

.required {
	font-weight: bold;
}

/* -- end form stuff -- */



/* -- Fix for FancyZoom js -- */
#ShadowBox table, #ShadowBox tr, #ShadowBox td {
	border: 0;
	padding: 0;
}
