/*

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 changes to show/hide menus.

If you want to extend this layout, one good resource for UL/LI formatting is:
    http://www.alistapart.com/articles/taminglists/
Alternatively, you can use any other CSS dropdown layout instead. More here:
    http://www.alvit.de/css-showcase/
Consult your favourite CSS reference for customising fonts/borders/etc.

Otherwise, you can just change the #RGB border/background colours where
suitable to customise for your site -- easy :).

*/


html, body {
	height: 100%; 
	margin: 0px;
	padding: 0px;
}
body {
	min-height: 100%;
}

html body .all {
	height: auto; 
	min-height: 100%; 
	position: relative;
}

* html body .all {
	height: auto; 
	height: 100%; 
	position: relative;
}

/* OFFICE-STYLE FREESTYLE MENU LAYOUT */

.menu1 {
	background:url(../images_new_design/fp_b12.gif) top left repeat-y;
	width:242px;
}
.menu2 {
	background:url(../images_new_design/fp_b11.gif) top left no-repeat;
}
.menu3 {
	background:url(../images_new_design/fp_b13.gif) bottom left no-repeat;
	min-height:300px;
	padding:20px 0px 23px 0px;
}
.srch1 {
	background:url(../images_new_design/fp_b22.gif) top left repeat-y;
	width:242px;
	margin:10px 0px;
}
.srch2 {
	background:url(../images_new_design/fp_b21.gif) top left no-repeat;
}
.srch3 {
	background:url(../images_new_design/fp_b23.gif) bottom left no-repeat;
	padding:25px 0px 30px 25px;
}
.cnt1 {
	background:url(../images_new_design/fp_b31.gif) top repeat-x;
}
.cnt2 {
	background:url(../images_new_design/fp_b32.gif) top left repeat-y;
}
.cnt3 {
	background:url(../images_new_design/fp_b33.gif) top right repeat-y;
}
.cnt4 {
	background:url(../images_new_design/fp_b34.gif) bottom repeat-x;
}
.cnt5 {
	background:url(../images_new_design/fp_b3a4.gif) bottom left no-repeat;
}
.cnt6 {
	background:url(../images_new_design/fp_b3a3.gif) bottom right no-repeat;
}
.slogan {
	font-size:13px;
	font-weight:bold;
	line-height:160%;
	color:#005bc2;
	padding:15px 40px 40px 40px;
}

/* All <ul> tags in the menu including the first level */

.menulist {
	margin:0px;
	padding:1px;
	width: 182px;
	list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist li ul {
	/*background:url(../images_new_design/fp_mbg.gif) left top repeat-y;*/
	border:1px solid #dddccc;
	border-bottom:0px;
	list-style:none;
	display: none;
	position: absolute;
	top:-1px;
	left:180px;
	padding:0px;
	margin:0px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
	position: relative;
	padding:0px;
	margin:0px;
}
.menulist li ul li {
	position: relative;
	padding:0px;
	margin:0px;
}

/* Links inside the menu */
.menulist li a {
	display: block;
	padding: 0px 4px 1px 30px;
	font-size:13px;
	color: #48440f;
	font-weight:bold;
	text-decoration: none;
	margin: 0;
}
.menulist li ul li a {
	background:#f5f4eb url(../images_new_design/fp_mbg.gif) left bottom no-repeat;
	/*background:#f4f3e9 url(../images_new_design/fp_mbg.gif) left bottom no-repeat;*/
	display: block;
	font-weight:normal;
	width:164px;
	padding: 0px 4px 1px 12px;
	margin: 0;
	font-size:11px;
}
/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins */
* html .menulist li a {
	margin: 1px;
}

/*
 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...
*/
.menulist li a:hover, .menulist li a.highlighted:hover, .menulist li a:focus {
	background:url(../images_new_design/fp_mbg_b.gif) 30px bottom no-repeat;
	/*color:#0048cc;*/
	color:#748500;
	padding: 0px 4px 1px 30px;
	margin:0px;
}
.menulist li ul li a:hover, .menulist li ul li a.highlighted:hover, .menulist li ul li a:focus {
	background:#eef2d9 url(../images_new_design/fp_mbg.gif) left bottom no-repeat;
	color:#5b6b00;
	padding: 0px 4px 1px 12px;
	margin:0px;
}
.menulist a.highlighted {
	background:#a62938;
	color:#f4f4ea;
 	margin:0px;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hacks */