
/*	#########################################################################
	#
	#	File: default_style.php
	#	Writer: Lucidblack
	#	Site:	http://www.lucidblack.co.uk/
	#
	#	Purpose:
	#
	#		It gives a default global style to be used with lucidblack.co.uk
	#		sites. Keeping a standard colour scheme and style through out, and
	#		enabling quicker creation of the basis of a new website.
	#
	#########################################################################
*/

/*	Default margin and padding values. */

*
{
	margin: 0;
	padding: 0;
}

/*	Common component defaults. */

body
{
	background: #000;
	background-image: url(http://www.lucidblack.co.uk/repos/images/ui/bg_stripe.png);
	color: #FFF;
	font-family: Verdana, Helvetica, Arial;
	font-size: 10px;
}

a
{
	color: 7bace9;
	text-decoration: none;
}

a:hover
{
	color: 9dcefb;
	text-decoration: underline;
}

/* Box component defaults. */

h1
{
	font-size: 45px;
	font-family: "Verdana";
}

h2
{
	padding: 5px 0 5px 0;
	margin: 0 0 10px 0;
}

p
{
	margin: 0 0 10px 0;
}

ul
{
	padding: 5px 0 5px 20px;
}

li
{
	padding: 3px 0 3px 0;
}

#wrapper 
{ 
	width: 800px; 
	margin: auto; 
}

#content-wrapper
{
	float: left;
	width: 100%;
}

#header
{
	height: 60px;
	padding: 15px 0 15px 0;
	border-bottom: 1px solid #ccc;
}

#content
{
	margin: 0 15% 0 20%; /* Margins for content column. Should be "0 Right column width 0 Left column width" */
	background-color: #111;
	border: 2px solid #333;
	padding-left: 10px;
	padding-right: 10px;
}

#left
{
	float: left;
	width: 20%; /* Width of left column in percentage */
	margin-left: -100%;
}

#left h2, #right h2
{
	margin-top: 5px;
	border-bottom: 1px dotted #CCC;
}

#content h2 
{ 
	margin-left: -10px; 
	margin-right: -10px; 
	/* background-color: #000; */
}

#right
{
	float: left;
	width: 15%; /* Width of the right column in pixels */
	margin-left: -15%; /* Set margin to that of (RightColumnWidth) */
}

#footer
{
	clear: left;
	width: 100%;
	//background: black;
	color: #FFF;
	text-align: center;
	padding: 4px 0;
}

#footer a
{
	color: #FFFF80;
}

.in
{
	margin: 10px; /* Margins for inner DIV inside each column (to provide padding) */
	margin-top: 0px;
}