/* Start of CMSMS style sheet 'TopNav-CSS' */
/* by Alexander Endresen and mark and Nuno */
#menu_vert {
/* no margin/padding so it fills the whole div */
	margin: 0;
	padding: 0;

}
.clearb {
/* needed for some browsers */
	clear: both;
}
#menuwrapper {
/* set the background color for the menu here */
	background: #4C492F url(/uploads/images/nav-base-980.png) no-repeat 0 0;
/* IE6 Hack */
	height: 1%;
	height: 55px;
	width: auto;
/* one border at the top */
	border-top: 0px solid #3F565C;
	margin: 0;
	padding: 0;
}
ul#primary-nav{
/* remove any default bullets */
	list-style-type: none;
	margin: 0 0 0 120px;
	padding: 0; 

height: 32px;

}
ul#primary-nav {
/* pushes the menu div up to give room above for background color to show */
	padding-top: 16px;
/* keeps the first menu item off the left side */
	padding-left:8px;
}

ul#primary-nav ul{
/* remove any default bullets */
	list-style-type: none;

}


ul#primary-nav ul {
/* make the ul stay in place so when we hover it lets the drops go over the content below else it will push everything below out of the way */
position: absolute;
/* top being the bottom of the li it comes out of */
top: auto; 
/* keeps it hidden till hover event */
	display: none;
/* same size but different color for each border */
	border-top: 1px solid #C8D3D7;
	border-right: 1px solid #C8D3D7;
	border-bottom: 1px solid #ADC0C7;
	border-left: 1px solid #A5B9C0;

}


ul#primary-nav ul ul {
/* now we move the next level ul down from the top a little for distinction */
	margin-top: 1px;
/* pull it in on the left, helps us not lose the hover effect when going to next level */
	margin-left: -1px;
/* keeps the left side of this ul on the right side of the one it came out of */
	left: 100%;
/* sets the top of it inline with the li it came out of */
	top: 0px;
}
ul#primary-nav li {
/* floating left will set menu items to line up left to right else they will stack top to bottom */
	float: left;
/* no margin/padding keeps them next to each other, the padding will be in the "a" */
	margin: 0px;
	padding: 0px;
}

ul#primary-nav li#menuid15 {width: 60px; padding: 0 0 0 0; border: 0px solid red;}
ul#primary-nav li#menuid16 {width: 70px; padding: 0 0 0 22px; border: 0px solid red;}
ul#primary-nav li#menuid17 {width: 80px; padding: 0 0 0 20px; border: 0px solid red;}
ul#primary-nav li#menuid18 {width: 66px; padding: 0 0 0 24px; border: 0px solid red;}
ul#primary-nav li#menuid19 {width: 86px; padding: 0 0 0 21px; border: 0px solid red;}
ul#primary-nav li#menuid20 {width: 62px; padding: 0 0 0 24px; border: 0px solid red;}
ul#primary-nav li#menuid21 {width: 52px; padding: 0 0 0 48px; border: 0px solid red;}
ul#primary-nav li#menuid22 {width: 40px; padding: 0 0 0 5px; border: 0px solid red;}
ul#primary-nav li#menuid23 {width: 64px; padding: 0 0 0 4px; border: 0px solid red;}


#primary-nav li li {
/* Set the width of the menu elements at second level. Leaving first level flexible. */
	width: 220px;
/* removes any left margin it may have picked up from the first li */
	margin-left: 0px;
/* keeps them tight to the one above, no missed hovers */
	margin-top: -1px;
/* removes the left float set in first li so these will stack from top down */
	float: none;
/* relative to the ul they are in */
	position: relative;
}
/* set the "a" link look here */
ul#primary-nav li a {
/* specific font size, this could be larger or smaller than default font size */
	font-size: 1em;
/* make sure we keep the font normal */
	font-weight: bold;
/* set default link colors */
	color: #493636;
/* pushes out from the text, sort of like making links a certain size, if you give them a set width and/or height you may limit you ability to have as much text as you need */
	padding: 0px 0px 10px 0px;

	display: block;
/* sets no underline on links */
	text-decoration: none;

text-align: center;
}
ul#primary-nav li a:hover {
/* kind of obvious */
	background-color: transparent;
	color:#9a6532;
	text-decoration: underline;
}
ul#primary-nav li li a:hover {
/* this is set to #000, black, below so hover will be white text */
	background-color: transparent;
	color:#9a6532;
	text-decoration: underline;
}
ul#primary-nav li a.menuactive {
	color: #000;
	font-weight: bold;
}
ul#primary-nav li a.menuactive:hover {
	color: #000;
/* keep it the same */
	font-weight: bold;
}
#primary-nav li li a.menuparent span {
/* makes it hold a shape */
	display: block;
/* set your image here, right arrow, 98% over from the left, 100% or 'right' puts it to far */
	background:  url(/uploads/layout/parent.png) no-repeat 98% center;
}
/* gif for IE6, as it can't handle transparent png */
* html #primary-nav li li a.menuparent span {
/* set your image here, right arrow, 98% over from the left, 100% or 'right' puts it to far */
	background:  url(/uploads/layout/parent.png) no-repeat 98% center;
}
ul#primary-nav li ul a {
/* insures alignment */
	text-align: left;
	margin: 0px;
/* keeps it relative to it's container */
	position: relative;
/* less padding than first level no need for large links here */
	padding: 6px 3px 6px 15px;
/* if first level is set to bold this will reset this level */
	font-weight: normal;
/* first level is #FFF/white, we need black to contrast with light background */
	color: #000;
	border-top: 0 none;
	border-right: 0 none;
	border-left: 0 none;
}
ul#primary-nav li ul {
/* very lite grey color, by now you should know what the rest mean */
	background: #F3F5F5;
	margin: 0px;
	padding: 0px;
	position: absolute;
	width: auto;
	height: auto;
	display: none;
	position: absolute;
	z-index: 999;
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #374B51;
/*Info: The opacity property is  CSS3, however, will be valid just in CSS 3.1) http://jigsaw.w3.org/css-validator2) More Options chose CSS3 3) is full validate;)*/
	opacity: 0.9;
/* CSS 3 */
}
ul#primary-nav li ul ul {
/*Info: The opacity property is  CSS3, however, will be valid just in CSS 3.1) http://jigsaw.w3.org/css-validator2) More Options chose CSS3 3) is full validate;)*/
	opacity: 95;
/* CSS 3 */
}
/* Styling the appearance of menu items on hover */
#primary-nav li:hover,
#primary-nav li.menuh,
#primary-nav li.menuparenth,
#primary-nav li.menuactiveh {
/* set your image here, dark grey image 
	background:  url(/uploads/layout/darknav.png) repeat-x left center;*/
	color: #000
}
/* The magic - set to work for up to a 3 level menu, but can be increased unlimited, for fourth level add
#primary-nav li:hover ul ul ul,
#primary-nav li.menuparenth ul ul ul,
*/
#primary-nav ul,
#primary-nav li:hover ul,
#primary-nav li:hover ul ul,
#primary-nav li.menuparenth ul,
#primary-nav li.menuparenth ul ul {
	display: none;
}
/* for fourth level add
#primary-nav ul ul ul li:hover ul,
#primary-nav ul ul ul li.menuparenth ul,
*/
#primary-nav li:hover ul,
#primary-nav ul li:hover ul,
#primary-nav ul ul li:hover ul,
#primary-nav li.menuparenth ul,
#primary-nav ul li.menuparenth ul,
#primary-nav ul ul li.menuparenth ul {
	display: block;
}
/* IE6 Hacks */
#primary-nav li li {
	float: left;
	clear: both;
}
#primary-nav li li a {
	height: 1%;
}


/* Stylesheet: TopNav-CSS Modified On 2014-04-10 13:44:38 */
/******************** MENU *********************/
#menu_vert {
	margin: 70px 0 0 0px;
	padding: 0 0 0 0px;
width: 152px;
float: left; 
display: inline;
background: transparent url(/uploads/images/cs-side-menu.png) no-repeat 0 0;
height: 252px;
position: fixed;
}
#menu_vert ul {
/* remove any bullets */
	list-style: none;
/* margin/padding set in li */
	margin: 15px 0 0 0;
	padding: 0px;
}
#menu_vert ul ul {
	margin: 0;
/* padding right sets second level li in on right from first li */
	padding: 0px 5px 0px 0px;
/* replaces bottom of li.menuactive menuparent, looks like li below it, set in 5px more, is sitting on top of it */
	background: transparent url(/uploads/ngrey/liup.gif) no-repeat right -4px;
}
#menu_vert li {
/* remove any bullets */
	list-style: none;
/* negative bottom margin pulls them together, images look like one border between */
	margin: 0px 0px 1px 0px;
/* bottom padding pushes "a" up enough to show our image */
	padding: 0px 0px 0px 0px;
/* you can set your own image here */
	background: transparent;
display: block;
}
#menu_vert li.currentpage {
	padding: 0px 0px 0px 0px;
}
#menu_vert li.menuactive {
	margin: 0;
	padding: 0px;
/* replaced by image in ul ul */
	background: none;
}
#menu_vert li.menuactive ul {
	margin: 0;
}
#menu_vert li.activeparent {
	margin: 0;
	padding: 0px;
}
/* fix stupid IE6 bug with display:block; */
* html #menu_vert li {
	height: 1%;
}
* html #menu_vert li a {
	height: 1%;
}
* html #menu_vert li hr {
	height: 1%;
}
/** end fix **/
/* first level links */
div#menu_vert a {
/* IE6 has problems with this, fixed above */
	display: block;
/* some air for it */
	padding: 0;
/* this will be link color for all levels */
	color: black;
/* Fixes IE7 whitespace bug */
	min-height: 1em;
/* no underline for links */
	text-decoration: none;
/* you can set your own image here this is tall enough to cover text heavy links */
	background: transparent ;
text-indent: -999em;
}


div#menu_vert ul li#submenuid29,
div#menu_vert ul li#submenuid37,
div#menu_vert ul li#submenuid44,
div#menu_vert ul li#submenuid51,
div#menu_vert ul li#submenuid58,
div#menu_vert ul li#submenuid65,
div#menu_vert ul li#submenuid72,
div#menu_vert ul li#submenuid79
 { background: transparent url(/uploads/images/cs-who.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid31,
div#menu_vert ul li#submenuid38,
div#menu_vert ul li#submenuid45,
div#menu_vert ul li#submenuid52,
div#menu_vert ul li#submenuid59,
div#menu_vert ul li#submenuid66,
div#menu_vert ul li#submenuid73,
div#menu_vert ul li#submenuid80
{ background: transparent url(/uploads/images/cs-where.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid32,
div#menu_vert ul li#submenuid39,
div#menu_vert ul li#submenuid46,
div#menu_vert ul li#submenuid53,
div#menu_vert ul li#submenuid60,
div#menu_vert ul li#submenuid67,
div#menu_vert ul li#submenuid74,
div#menu_vert ul li#submenuid81
{ background: transparent url(/uploads/images/cs-family.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid33,
div#menu_vert ul li#submenuid40, 
div#menu_vert ul li#submenuid47, 
div#menu_vert ul li#submenuid54, 
div#menu_vert ul li#submenuid61, 
div#menu_vert ul li#submenuid68, 
div#menu_vert ul li#submenuid75, 
div#menu_vert ul li#submenuid82
{ background: transparent url(/uploads/images/cs-journey.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid34,
div#menu_vert ul li#submenuid41, 
div#menu_vert ul li#submenuid48, 
div#menu_vert ul li#submenuid55, 
div#menu_vert ul li#submenuid62, 
div#menu_vert ul li#submenuid69, 
div#menu_vert ul li#submenuid76, 
div#menu_vert ul li#submenuid83
{ background: transparent url(/uploads/images/cs-settling.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid35,
div#menu_vert ul li#submenuid42,
div#menu_vert ul li#submenuid49,
div#menu_vert ul li#submenuid56,
div#menu_vert ul li#submenuid63,
div#menu_vert ul li#submenuid70,
div#menu_vert ul li#submenuid77,
div#menu_vert ul li#submenuid84
{ background: transparent url(/uploads/images/cs-connections.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#cs-more { background: transparent url(/uploads/images/cs-more.png) no-repeat 0 0; height: 34px;}


div#menu_vert ul li#submenuid29 a,
div#menu_vert ul li#submenuid37 a,
div#menu_vert ul li#submenuid44 a,
div#menu_vert ul li#submenuid51 a,
div#menu_vert ul li#submenuid58 a,
div#menu_vert ul li#submenuid65 a,
div#menu_vert ul li#submenuid72 a,
div#menu_vert ul li#submenuid79 a
{ background: transparent url(/uploads/images/cs-who.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid31 a,
div#menu_vert ul li#submenuid38 a,
div#menu_vert ul li#submenuid45 a,
div#menu_vert ul li#submenuid52 a,
div#menu_vert ul li#submenuid59 a,
div#menu_vert ul li#submenuid66 a,
div#menu_vert ul li#submenuid73 a,
div#menu_vert ul li#submenuid80 a
{ background: transparent url(/uploads/images/cs-where.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid32 a,
div#menu_vert ul li#submenuid39 a,
div#menu_vert ul li#submenuid46 a,
div#menu_vert ul li#submenuid53 a,
div#menu_vert ul li#submenuid60 a,
div#menu_vert ul li#submenuid67 a,
div#menu_vert ul li#submenuid74 a,
div#menu_vert ul li#submenuid81 a 
{ background: transparent url(/uploads/images/cs-family.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid33 a,
div#menu_vert ul li#submenuid40 a, 
div#menu_vert ul li#submenuid47 a, 
div#menu_vert ul li#submenuid54 a, 
div#menu_vert ul li#submenuid61 a, 
div#menu_vert ul li#submenuid68 a, 
div#menu_vert ul li#submenuid75 a, 
div#menu_vert ul li#submenuid82 a 
{ background: transparent url(/uploads/images/cs-journey.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid34 a,
div#menu_vert ul li#submenuid41 a, 
div#menu_vert ul li#submenuid48 a, 
div#menu_vert ul li#submenuid55 a, 
div#menu_vert ul li#submenuid62 a, 
div#menu_vert ul li#submenuid69 a, 
div#menu_vert ul li#submenuid76 a, 
div#menu_vert ul li#submenuid83 a 
{ background: transparent url(/uploads/images/cs-settling.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid35 a,
div#menu_vert ul li#submenuid42 a,
div#menu_vert ul li#submenuid49 a,
div#menu_vert ul li#submenuid56 a,
div#menu_vert ul li#submenuid63 a,
div#menu_vert ul li#submenuid70 a,
div#menu_vert ul li#submenuid77 a,
div#menu_vert ul li#submenuid84 a 
{ background: transparent url(/uploads/images/cs-connections.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#cs-more a { background: transparent url(/uploads/images/cs-more.png) no-repeat 0 0; height: 34px;}


div#menu_vert ul li#submenuid29 a:hover,
div#menu_vert ul li#submenuid37 a:hover,
div#menu_vert ul li#submenuid44 a:hover,
div#menu_vert ul li#submenuid51 a:hover,
div#menu_vert ul li#submenuid58 a:hover,
div#menu_vert ul li#submenuid65 a:hover,
div#menu_vert ul li#submenuid72 a:hover,
div#menu_vert ul li#submenuid79 a:hover
{ background: transparent url(/uploads/images/cs-who-roll.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid31 a:hover,
div#menu_vert ul li#submenuid38 a:hover,
div#menu_vert ul li#submenuid45 a:hover,
div#menu_vert ul li#submenuid52 a:hover,
div#menu_vert ul li#submenuid59 a:hover,
div#menu_vert ul li#submenuid66 a:hover,
div#menu_vert ul li#submenuid73 a:hover,
div#menu_vert ul li#submenuid80 a:hover
{ background: transparent url(/uploads/images/cs-where-roll.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid32 a:hover ,
div#menu_vert ul li#submenuid39 a:hover ,
div#menu_vert ul li#submenuid46 a:hover ,
div#menu_vert ul li#submenuid53 a:hover ,
div#menu_vert ul li#submenuid60 a:hover ,
div#menu_vert ul li#submenuid67 a:hover ,
div#menu_vert ul li#submenuid74 a:hover ,
div#menu_vert ul li#submenuid81 a:hover 
{ background: transparent url(/uploads/images/cs-family-roll.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid33 a:hover,
div#menu_vert ul li#submenuid40 a:hover, 
div#menu_vert ul li#submenuid47 a:hover, 
div#menu_vert ul li#submenuid54 a:hover, 
div#menu_vert ul li#submenuid61 a:hover, 
div#menu_vert ul li#submenuid68 a:hover, 
div#menu_vert ul li#submenuid75 a:hover, 
div#menu_vert ul li#submenuid82 a:hover 
{ background: transparent url(/uploads/images/cs-journey-roll.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid34 a:hover,
div#menu_vert ul li#submenuid41 a:hover, 
div#menu_vert ul li#submenuid48 a:hover, 
div#menu_vert ul li#submenuid55 a:hover, 
div#menu_vert ul li#submenuid62 a:hover, 
div#menu_vert ul li#submenuid69 a:hover, 
div#menu_vert ul li#submenuid76 a:hover, 
div#menu_vert ul li#submenuid83 a:hover 
{ background: transparent url(/uploads/images/cs-settling-roll.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#submenuid35 a:hover ,
div#menu_vert ul li#submenuid42 a:hover ,
div#menu_vert ul li#submenuid49 a:hover ,
div#menu_vert ul li#submenuid56 a:hover ,
div#menu_vert ul li#submenuid63 a:hover ,
div#menu_vert ul li#submenuid70 a:hover ,
div#menu_vert ul li#submenuid77 a:hover ,
div#menu_vert ul li#submenuid84 a:hover 
{ background: transparent url(/uploads/images/cs-connections-roll.png) no-repeat 0 0; height: 22px;}

div#menu_vert ul li#cs-more a:hover { background: transparent url(/uploads/images/cs-more-roll.png) no-repeat 0 0; height: 34px;}


/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
	font-size: 90%;
	padding: 0.8em 0.3em 0.5em 2.8em;
}
/* third level links, more padding */
div#menu_vert ul ul ul a {
	padding: 0.5em 0.3em 0.3em 3em;
}
/* hover state for all links */
div#menu_vert a:hover {
	background-color: transparent;
	color: #595959;
	text-decoration: underline;
}
div#menu_vert a.activeparent:hover {
	color: #595959;
}
/* active parent, that is the first level parent of a child page that is the current page */
div#menu_vert li.activeparent {
/* you can set your own image here */
	background: transparent url(/uploads/ngrey/liup.gif) no-repeat right -65px;
/* white to contrast with background image */
	color: #fff;
}
div#menu_vert li.activeparent a.activeparent {
/* you can set your own image here */
	background: transparent url(/uploads/ngrey/libk.gif) no-repeat right top;
/* to contrast with background image */
	color: #000;
}
div#menu_vert li a.parent {
/* takes left padding out so span image has room on left */
	padding-left: 0em;
}
div#menu_vert ul ul li a.parent {
/* increased padding on left offsets it from one above */
	padding-left: 0.9em;
}
div#menu_vert li a.parent span {
	display: block;
	margin: 0;
/* adds left padding taken out of "a.parent" */
	padding-left: 1.5em;
/* arrow on left for pages with children, points down, you can set your own image here */
	background: transparent url(/uploads/ngrey/active.png) no-repeat 2px center;
}
div#menu_vert li a.parent:hover {
/* removes underline hover effect */
	text-decoration: none;
}
div#menu_vert li a.parent:hover span {
	display: block;
	margin: 0;
	padding-left: 1.5em;
/* arrow on left for pages with children, points right for hover, you can set your own image here */
	background: transparent url(/uploads/ngrey/parent.png) no-repeat 2px center;
}
div#menu_vert li a.menuactive.menuparent {
/* sets it in a little more than a.parent */
	padding-left: 0.35em;
}
div#menu_vert ul ul li a.menuactive.menuparent {
/* sets it in a little more on next level */
	padding-left: 0.99em;
}
div#menu_vert li a.menuactive.menuparent span {
	display: block;
	margin: 0;
/* to contrast with non active pages */
	font-weight: bold;
	padding-left: 1.5em;
/* arrow on left for active pages with children, points right, you can set your own image here */
	background: transparent url(/uploads/ngrey/parent.png) no-repeat 2px center;
}
div#menu_vert li a.menuactive.menuparent:hover {
	text-decoration: none;
	color: #18507C;
}
div#menu_vert ul ul li a.activeparent {
	color: #fff;
}
/* current pages in the default Menu Manager template are unclickable. This is for current page on first level */
div#menu_vert ul h3 {
	display: block;
/* some air for it */
	padding: 0.8em 0.5em 0.5em 1.5em;
/* this will be link color for all levels */
	color: #000;
/* instead of the normal font size for <h3> */
	font-size: 1em;
/* as <h3> normally has some margin by default */
	margin: 0;
/* you can set your own image here, same as "a" */
	background: transparent url(/uploads/ngrey/libk.gif) no-repeat right top;
}
/* next level current pages, more padding, smaller font and no background color or bottom border */
div#menu_vert ul ul h3 {
	font-size: 90%;
	padding: 0.8em 0.5em 0.5em 2.8em;
/* you can set your own image here, same as "a" */
	background: transparent url(/uploads/ngrey/libk.gif) no-repeat right top;
	color: #000;
}
/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
	padding: 0.6em 0.5em 0.2em 3em;
}
/* BIG NOTE: I didn't do anything to these, never tested */
/* section header */
div#menu_vert li.sectionheader {
	border-right: none;
	padding: 0.8em 0.5em 0.5em 1.5em;
	background: transparent url(/uploads/ngrey/libk.gif) no-repeat right top;
	line-height: 1em;
	margin: 0;
        color: #18507C;
        cursor:text;
}
/* separator */
div#menu_vert .separator {
	height: 1px !important;
	margin-top: -1px;
	margin-bottom: 0;
	-padding: 2px 0 2px 0;
	background-color: #000;
	overflow: hidden !important;
	line-height: 1px !important;
	font-size: 1px;
/* for ie */
}
div#menu_vert li.separator hr {
	display: none;
/* this is for accessibility */
}
/* Stylesheet: SideNav Modified On 2014-11-03 11:05:58 */
/* accessibility */
/* menu links accesskeys */
span.accesskey {
	text-decoration: none;
}
/* accessibility divs are hidden by default, text, screenreaders and such will show these */
.accessibility, hr {
/* position set so the rest can be set out side of visual browser viewport */
	position: absolute;
/* takes it out top side */
	top: -999em;
/* takes it out left side */
	left: -999em;
}
/* definition tags are also hidden, these are also used for accessibility menu links */
dfn {
	position: absolute;
	left: -1000px;
	top: -1000px;
	width: 0;
	height: 0;
	overflow: hidden;
	display: inline;
}
/* end accessibility */
/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
	position: absolute;
	left: -5000px;
	width: 4000px;
}
a.external {
/* make some room for the image, css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
	padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
	color: #18507C;
/* background image for the link to show wiki style arrow */
	background: url(images/cms/external.gif) no-repeat 100% -100px;
}
a.external:visited {
	color: #18507C;
/* a different color can be used for visited external links */
/* Set the last 0 to -100px to use that part of the external.gif image for different color for active links external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.*/
	background: url(images/cms/external.gif) no-repeat 100% -100px;
}
a.external:hover {
	color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
	background: url(images/cms/external.gif) no-repeat 100% 0;
	background-color: inherit;
}
/* end wiki style external links */
/* clearing */
/* clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item. We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience. Do not edit if you dont know what you are doing*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clear {
	height: 0;
	clear: both;
	width: 90%;
	visibility: hidden;
}
#main .clear {
	height: 0;
	clear: right;
	width: 90%;
	visibility: hidden;
}
* html>body .clearfix {
	display: inline-block;
	width: 100%;
}
* html .clear {
/* Hides from IE-mac \*/
	height: 1%;
	clear: right;
	width: 90%;
/* End hide from IE-mac */
}
/* end clearing */
/* Stylesheet: Access Modified On 2009-11-20 15:33:57 */
