/*
File:			custom.css
Description:	Custom styles

BASIC USAGE:

If you have enabled the custom stylesheet in the options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }				<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered 980808 !


*/
.custom #feedbox {width:348px;border: 1px solid #cccccc;margin-right:20px;margin-bottom:10px;}
.custom #multimedia_box { width: 100%; margin-bottom: 0; }

#wpcf label {
	clear: both;
	display: block;
	float: left;
	width: 150px;
}
#wpcf input {
	float: left;
	width: 200px;
	padding: 1px;
	margin: 2px 5px 2px 0;
}
#wpcf textarea {
	width: 350px;
	height: 100px;
	padding: 1px;
	margin: 0 5px 10px 0;
}
#wpcf #contactsubmit {
	margin-left: 250px;
	width: 100px;
}

body.custom {
    background: #980808;
}
.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #000000;
    border: 0.4em solid #980808;
}

.custom #page {
    background: #ffffff;
}

#header {padding:10px 0 4px 0;}

a:link 		{text-decoration: none; color:#2361A1;background:none; }
a:visited 	{text-decoration: none; color:#880088;background:none; }
a:hover 	{text-decoration: none; color:#0099FF;background:none;  }
a:active 	{text-decoration: none; color:#0099FF;background:none; }


#header #tagline { font-size: 1.4em; line-height: 1.429em; }

