/* CSS Document */

/* style.css
------------------------------------------------------------------------------

Author:  			Dean Goddard.
Date:				26/02/2010

Version:			1.0
Designed for:		All browsers

CSS file:			Design one-colour scheme pink.

------------------------------------------------------------------------------*/
/* HACK for FIREFOX!! - to always display right hand scroll bars in short pages
this prevents the page bouncing left when changing pages */

html { 
overflow: -moz-scrollbars-vertical; 
height: 				100%; 
}

/*Hack over*/

* {
	margin: 0;
	padding: 0;
}

body {
	background-color:#000000;
	font-family: Tahoma;
	font-size: 13px;
	color: #666666;

}



a:link {
	color: #1953A7;
}

a:active {
	color: #ED5C0C;
}

a:visited {
	color: #666666;
}

a:hover {
	text-decoration: none;
	color: #067600;
}

logo {
	border: none;
}

#wrapper {
    width: 800px;
	margin-left: auto;
	margin-right: auto;
/*	background: #f2f3f9;*/
}


/* Menu */

#menu {
 
	width: 900px;
	height: 67px;
	background: url("images/menu_01.jpg") no-repeat;
	margin-top: 60px;
	
	
}

#menu ul {
	margin: 0;
	padding-left:0px;
	list-style: none;
}

#menu li {
	display: inline;
}

#menu a {
	float: left;
	width: 100px;
	height: 45px;
	padding: 20px 0 0 0;
	border-left: none;
	text-transform: lowercase;
	text-decoration: none;
	text-align: center;
	font-size: 12px;
	color: #FFFFFF;
	
	
	
}

#menu a:hover {
	background: #FFFFFF;
	color: #000000;
}

#menu .active a {
	
	color: #F348B1;
}


/* Menu2 */

#menu2 {
 
	width: 900px;
	height: 10px;
	background: url("images/menu_01.jpg") no-repeat;
	margin-top: 1px;
	
	
}

#menu2 ul {
	margin: 0;
	padding-left:0px;
	list-style: none;
}

#menu2 li {
	display: inline;
}

#menu2 a {
	float: left;
	width: 100px;
	height: 12px;
	padding: 12px 0 0 0;
	border-left: none;
	text-transform: lowercase;
	text-decoration: none;
	text-align: center;
	font-size: 10px;
	color: #FFFFFF;
	
	
	
}

#menu2 a:hover {
	background: #FFFFFF;
	color: #000000;
}

#menu2 .active a {
	
	color: #F348B1;
}

/* Header */

#header {
	width: 800px;
	height: 164px;
	background: url("images/pinkpattern.gif") no-repeat;
	
	
}

#header h1 {
	float: left;
	width: 300px;
	height: 40px;
	margin: 0;
	padding: 20px 0 10px 20px;
	
	text-align: center;
	font-size: 36px;
	color:#FFFFFF
}

#header h2 {
	float: left;
	width: 600px;
	height: 20px;
	margin: 0;
	padding-left: 20px;
	
	text-align: center;
	font-size: 12px;
	color:#FFFFFF
}




/* Page */

#page {
	width: 800px;
	height: auto;
	clear: both;
	background: url("images/content_filler.gif");
}


/* Content */



#content {
	float: left;
	width: 490px;
	padding-left: 30px;
	margin: 0;
	
	font-size: 12px;
	background-color: #f2f3f9;
	color: #000000;
	

}





/* rightcol */

#rightcol {
	float: right;
	width: 200px;
    height: 250px;
	margin: 0;
	padding-top: 20px;
	
}


/* Footer */

#footer {
	clear: both;
	width:800;
	height: 150px;
	margin: 0;
	background: url no-repeat;
	padding-left: 9px;
	padding-right: 9px;
}


#copyright {
  padding-top: 20px;
  color: grey;
  font-size: 10pt;
  float: left;
}
#copyright a:link, #copyright a:visited {
  text-decoration: none;
  color: grey;
}

#copyright a:hover {
  text-decoration: none;
  color: red;
}

#design_by {
  padding-top: 40px;
  color: grey;
  font-size: 8pt;
  float: right;
}

#design_by a:link, #design_by a:visited {
  text-decoration: none;
  color: grey;
}

#design_by a:hover {
  text-decoration: none;
  color: red;
}




