/* CSS Syntax reminder */
/*	background: #000000; 
	background-image: url(value); [url of background image to be used, i.e. background.gif]
	background-repeat: value; [repeat, no-repeat, repeat-x, repeat-y]
	background-position: valueI valueII; [valueI: top, center, bottom, percentage, pixel number]
 	[valueII: right, center, left, percentage, pixel number]
	background-attachment: value; [scroll, fixed]

	font-family: value; [your font name]
	color: #000000 ; 
	letter-spacing: value; [any number value (3pt, 5pt)]
	font-weight: value; [lighter, normal, bold, bolder, any number value (100, 500, 900)]
	font-size:
*/
body {
	background-color:#000000;
	
}



a:link {

	text-decoration:none;
	color: #aa303f;

}

a:visited {

	text-decoration:none;
	color: #aa303f;

}

a:hover {

	text-decoration:underline;
	color: #aa303f;

}

a:active {

	text-decoration:none;
	color: #aa303f;

}

.mainText {

	color: #ffffff;
	font-family: verdana;
	font-size:9pt;

}

.boldHeading {

	color: #aa303f;
	font-size:12pt;
	font-family: verdana;
	font-weight: bold;

}



.redHeading {

	color: #aa303f;
	font-size: 22pt;
	font-family: verdana;
	font-weight: bold;

}


.boldText {

	color: #ffffff;
	font-size:10pt;
	font-family: verdana;
	font-weight: bold;

}


.whiteText {

	color: #ffffff;
	font-size:14pt;
	font-family: verdana;
	font-weight: bold;

}


.italicHeading {

	color: #ffffff0;
	font-size:9pt;
	font-family: verdana;
	font-style: italic;
	font-weight: bold;

}


.italicText {

	color: #ffffff;
	font-size:9pt;
	font-family: verdana;
	font-style: italic;

}


.webdesignText {

	color: #ffffff;
	font-family: verdana;
	font-size:7pt;

}


.subHeading {

	color: #ffffff;
	font-size:10pt;
	font-family: verdana;
	font-weight: bold;

}


.sideRight {
	
	background-image: url(../images/side_r.jpg);
	background-repeat: repeat-x;
}

.sideLeft {
	
	background-image: url(../images/side_l.jpg);
	background-repeat: repeat-x;
}


a img {


border: 0;
text-decoration: none;
}


.imgHook {
	
	background-image: url(../images/hook.jpg);
	background-position: bottom, right;
	background-repeat: no-repeat;
	
	
	
}