h1{color:#006600;}

  #menu {
width: 100%; 
 font-family:  Trebuchet MS, Arial, sans-serif; 
 background-color: #003300; 
 height: 22;
color: #000000;
}

#menu ul {
 list-style: none;
 padding: 0;   /* padding to buttons */
 margin: 0 ;   /* indent from outside div */
}

#menu li {
float: left;     /* left for horizonal menu, otherwise its vertical.
 width: 100;   /* button outside dimensions, need this for centering text... make this same as anchor */
}

#menu a {
 text-align: center;  /* position text within li button */
 text-decoration: none; /* remove typical underline */
 font-size: 9pt;    /* menu text size */
 display: block;    /* treats layout of buttons like they're table cells rather than list items */
 height: 14;   /* button outside dimensions  */
 width: 100;   /* button outside dimensions */
 color: white;  /* link text colour */
 background-color: #003300;
 border-width: 0px;
 border-right:1px;
 border-style: solid;
 border-color: #ccc;
 padding: 2;   /* padding of text within button */
 margin: 0;   /* padding of button within list item */
}

#menu a:hover {  /* override as neccesary for mouse over effects */
 color: white; 
 background-color: #ff9933;

}
#menu li a {
                                padding: 5px 5px 5px 5px;
                
                }

#menu li ul {  /* this one is the dropdown */
 position: absolute; /* so we can hide it */
 left: -999em;  /* by default it is hidden */
 width: 100px;  /* width of the entire dropdown */
 margin: 0;  /* relative position of the menu to the button... 0=tight on bottom.. */
 background-color: #003300; /* color of the entire dropdown */

}

#menu li ul a {  /* override colours for drop down buttons */
background-color:#003300;
 width: 100px;
 text-align:left;
 font-size: 10pt;
 border-right:1px;
 color:#ffffff;
 border-bottom: 1px  solid #ffffff;
padding:4px;
}



#menu li ul a:hover {  /* override colours for drop down buttons */
color: #ffffff;
 background-color: #ff9933;
}

#menu ul li:hover, #menu ul li.sfhover {
 color: blue;
}

#menu ul ul ul {
 position: absolute;
 background-color: #666666; /* color of the entire dropdown */
 top: auto;  /* auto means that it will be in the typicall indented list position below the first menu */
 left: 0;   /* 0 */
 margin: -20 110;       /* adjust the margins to position the 2nd level popout menu to the right*/
 width: 100%;   /* width is based on the containing block */
}

#menu li:hover ul ul, 
#menu li:hover ul ul ul, 
#menu li.sfhover ul ul, 
#menu li.sfhover ul ul ul 
{
 left: -999em;
}

#menu li:hover ul, 
#menu li li:hover ul, 
#menu li li li:hover ul, 
#menu li.sfhover ul, 
#menu li li.sfhover ul, 
#menu li li li.sfhover ul {
 left: auto;
}
.editDoc, .editDoc P, .editDoc UL, .editDoc H1, .editDoc H2, .editDoc H3, .editDoc H4, .editDoc H5, .editDoc H6, 
.editDoc TD {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.4em;
	font-weight: normal;
	color: #333333;
	text-decoration: none;
	font-size: medium;
}

.editDoc, .editDoc P, .editDoc LI, .editDoc TD {
	font-size: medium;
	font-style: normal;
}

.editDoc H1 { 
	font-size: large;
	color: #006600;
}

.editDoc H2 {
	font-size: medium;
	color: #336633;
}

.editDoc H3 {
	font-size: medium;
	color: #639887;
}

.editDoc H4 {
	font-size: medium;
	color: #009525;
}

.editDoc H5 {
	font-size: medium;
	color: #007900;
}

.editDoc H6 {
	font-size: medium;
	color: #00A642;
}

/* Link formatting */

a:link {
	text-decoration:underline;
	color:#006600;
}

a:visited {
	text-decoration:underline;
	color:#5f6318;
}

a:active {
	text-decoration:none;
	color:#B9C034;
}

a:hover {
	text-decoration:none;
	color:#7E8323;
}

.editDoc .right{
	text-align:right;	
}
.editDoc .left{
	text-align:left;	
}
.editDoc .center{
	text-align:center;
}
.editDoc img.right{
	float:right;
	margin-left:10px;	
}
.editDoc img.left{
	float:left;
	margin-rogjt:10px;	
}



/* Downloadable Asset --------------------------------------------------------------------

	When inserting files into the content editor (such as PDF's or Word documents) for 
	download, SilverStripe wraps them the table which is stalalised with the following
	classes. Don't rename them.

*/

.downloadable {
	width: 400px;
	margin-left: 50px;
	font-size: xx-small;
	border: 1px #CCCCCC solid;
	background-color: #EEEEEE;
}
.downloadable .icon {
	border-right: 1px #CCCCCC solid;
	padding: 0px 10px;
	background-color: #6699CC;
	font-size: xx-small;
}
.downloadable .type {
	font-weight: bold;
	font-style: italic;
	padding-left: 10px;
	font-size: xx-small;
}
.downloadable .size {
	width: 80%;
	padding-left: 10px;
	font-size: xx-small;
}
.downloadable .title {
	font-weight: bold;
	padding-left: 10px;
	font-size: xx-small;
}
.downloadable .download {
	width: 20%;
	text-align: right;
	padding-right: 10px;
	font-size: xx-small;
}