/*

Here's a demo stylesheet used to format a menu and its content.
Feel free to alter the menu layout however you want. All you have to do is ensure the script
has the correct CSS property name (like 'visibility' or 'display') that you want it to change.

One good resource for UL/LI formatting: http://www.alistapart.com/articles/taminglists/
Consult your favourite CSS reference for editing fonts/borders/etc.

Otherwise, even if you're not very experienced at CSS, you can just go through and change
the #RGB border/background colours where suitable to customise for your site!
background-image:url(../images/titanium-texture.jpg);
*/

body {
    background-color:#333333;
	background-repeat: repeat;
	background-position: top center; 
	background-attachment: fixed;
}

/* OFFICE-STYLE FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */

.menulist {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14pt;
	font-weight: normal;
	color: #CC0000;
}
.footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	font-weight: normal;
	color: #ffffff;
}

.bullets {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15pt;
	font-weight: normal;
	color: #000000;
}
/*

 Some styles used by the "Cascading Popup Menus" script.
 Consult a CSS reference (a good clear one is at www.ncdesign.org) for syntax and tweaking ideas.
 You can delete the ones you're not using in your ItemStyles, or add more if you want.

*/


/*
 Font settings -- change your font, colour, alignment etc.
 Insert 'font-weight: bold;' or 'font-style: italic;' without quotes if you want.
 Note that items contain <A HREF> tags, so if your other stylesheets style anchor tags,
 these may inherit the rules. I've styled all the variations of links here as one.
*/



/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/


/* Borders used by some items */


/* The "button" demo menu styles, as used by the "File-Reopen" menu. Delete if not using */

.paragraph {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
}

.headers {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14pt;
	color: #CC0000;
	font-weight: bold;
}
.FAQ_question {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: #CC0000;
	font-weight: bold;
}
.FAQ_answer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
	color: #000000;
}

a {
	color: #CC0000;
	text-decoration: none;
}

a:hover {
	color:#CC0000;
	text-decoration: underline;
	}

/* End Hack */
