/*
    Copyright:      Copyright (c) Mindscape Solutions. All rights reserved.
    Filename:       project.css
    Created by:     Jason Van Vuren
    Created on:     5.8.2008

    Summary:
        Use this style sheet to style all pages in the site.

    Revision:   Jason Van Vuren 5.8.2008
        Initial style creation.
*/

/* ----------  Interior.master Styles  ---------- */
/* ----------  Styles by ELEMENT  ---------- */




/* ----------  Main Nav styles  ---------- */

/* 
The first selector sets the top-level ul and applies to all the dropdown ULs as well.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
If desired, we could set a font-family different from the global font-family declared for the
body element. 
*/

.mainmenu {
     text-align:center;
     margin:0 auto; /* for the rest */
    /* padding-left: 15px;
	width: inherit;*/
    /*float:left;*/
}

#mainnav, 
#mainnav ul {
	list-style: none;
	display: block;
	float: left;
}

#mainnav
{
  height:42px;
         
}

#mainnav li
{
    background-position: right;
    padding: 0px;
    margin: 0px;
    float: left;
    height:42px;
    position:relative;
    
}



#mainnav a
{
    margin: 0px;
    font-size: 12px;
    font-family:Trebuchet MS;
    display: block;
    float: left;
    text-decoration: none;
    padding: 0px 14px 0px 14px;
    line-height:42px;
    height:100%;
}

/*
Sets the properties of the dropdown links. 
Keeping the padding the same throughout should eliminate any blinking issues on ie.
*/

#mainnav ul li
{
    width: 100%;
    text-align: left;
    float: none;
    height: 30px;
     background-image: none;
}

#mainnav ul li a
{
    margin: 0px;
    line-height:30px;
    text-align: left;
    height: 30px;
}

/*
Sets the properties of the dropdown link that is currently loaded. OPTIONAL!
*/
#mainnav ul li a.current  {
}

/*
Sets width for dropdown box and the links inside - in proportional em units. 
This allows the dropdown width to expand if users resize the text in their browsers.
*/
#mainnav li ul {
	width: 18em;
}

/*
Sets the properties of each dropdown box.
Positioned Absolutely to allow them to appear below their root trigger. 
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
*/
#mainnav li ul
{
    border: 1px solid #676b6b;
    background-position: left top;
    position: absolute;
    display: none;
    z-index: 500;
    background-color:#3f3f3f;
}

/*
The first selector sets the top-level link hover display. The second selector sets properties 
when top-level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#mainnav li:hover a, #mainnav a:focus, #mainnav a:active, #mainnav li.p7hvr a
{
}

/*
The first selector sets the dropdown to be visible when its associated
top-level link is moused over. The second selector is assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#mainnav li:hover ul, #mainnav li.p7hvr ul {
	display: block;
 top:40px;
 left:0px;
 
}

/*
The first selector sets the text color of the dropdown links when the top-level
menu items are moused over. The second selector is assigned to IE5 and IE6 via 
the P7_ExpMenu script. The color should match the normal dropdown link color
in the rule: #mainnav ul li a. The background color must be
transparent if any background needs to show through from the UL .
*/
#mainnav li:hover ul a, #mainnav li.p7hvr ul a {

}

/*
Sets the normal hover state for dropdown links. The "Important" directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#mainnav ul li a:hover
{
    
    color: #74d1f2;
}

/*
Clears the floated menu items.
Assigned to a BR tag placed just after the main nav closing ul.
*/
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}

/*

