/* CSS Document */
.lang_select_lines {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
}
.legal-footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #666666;
	text-decoration: none;
}
.legal-footer a:link {
	color: #666666;
	text-decoration: none;
}
.legal-footer a:hover {
	color: #000000;
	text-decoration: none;
}
.legal-footer a:visited {
	color: #666666;
	text-decoration: none;
}
.lang_select_title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
}
.lang_select_copy {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #666666;
	text-decoration: none;
}
.lang_select_copy a:link {
	color: #666666;
	text-decoration: none;
}
.lang_select_copy a:hover {
	color: #000000;
	text-decoration: none;
}
.lang_select_copy a:visited {
	color: #666666;
	text-decoration: none;
}
.home-gray {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #666666;
	line-height: 30px;
}
.home-gold {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #F0B310;
	line-height: 30px;
}
.title-black {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 30px;
	color: #000000;
	text-decoration: none;
}
.med-gray {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 20px;
	color: #666666;
	text-decoration: none;
}
.small-gray {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #666666;
	text-decoration: none;
	line-height: 14px;
}
.small-gray a:link {
	color: #666666;
	text-decoration: none;
}
.small-gray a:hover {
	color: #000000;
	text-decoration: none;
}
.small-gray a:visited {
	color: #666666;
	text-decoration: none;
}
.small-black {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	text-decoration: none;
	line-height: 13px;
}
.small-black a:link {
	color: #000000;
	text-decoration: none;
}
.small-black a:hover {
	color: #666666;
	text-decoration: none;
}
.small-black a:visited {
	color: #000000;
	text-decoration: none;
}
.small-black a:active {
	color: #000000;
	text-decoration: none;
}
.team-title-black {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #000000;
	text-decoration: none;
}
.team-small-gray {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #666666;
	text-decoration: none;
	line-height: 13px;
}
.team-small-gray a:link {
	color: #666666;
	text-decoration: none;
}
.team-small-gray a:hover {
	color: #000000;
	text-decoration: none;
}
.team-small-gray a:visited {
	color: #666666;
	text-decoration: none;
}
.team-small-black {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	text-decoration: none;
}
.team-small-black a:link {
	color: #000000;
	text-decoration: none;
}
.team-small-black a:hover {
	color: #666666;
	text-decoration: none;
}
.team-small-black a:visited {
	color: #000000;
	text-decoration: none;
}

 
/*<![CDATA[*/

/* - - - ADxMenu: BASIC styles - - - */

/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0px 0px 0px 8px;
	padding: 7px 0px 0px;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
	height: 24px;
	width: 122px;
	background-color: #F0B310;
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;
	background-color: #999999;
}

.menu li li {
	float: none;
}

.menu li li:hover {
	background-color: #FFFFFF;
}

 .menu ul {
	visibility: hidden;
	position: absolute;
	z-index: 10;
} 
#globalreps {
	margin-top: 2px;
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	bottom: 100%;
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	bottom: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 0px 0px 5px 23px;
	margin: 0 0 0px -30px;	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 0px 0px 10px 23px;
	margin: 0 0 0px -30px;
}


/* - - - ADxMenu: DESIGN styles - - - */

.menu, .menu ul li {
	color: #0000FF;
}



.menu a {
	text-decoration: none;
	color: #FFFFFF;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
}
.menu li a {
	text-decoration:none;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
}
.menu ul a {
	text-decoration:none;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #999999;
	zoom: 1;
	margin-top: 0px;
	margin-bottom: 0px;
}

.menu ul a:hover {
	text-decoration:none;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	zoom: 1;
	margin-top: 0px;
	margin-bottom: 0px;
}


.menu li li {	/* create borders around each item */
	height: 10px;
	background-color: #FFFFFF;
	padding: 5px 0px;
}
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	bottom: 5px;
	left: 90%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts 
.menu>li:first-child>a, .menu li + li + li li:first-child>a {
	color: #FF0000;
}*/

/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */

/*]]>*/
#team1 {
	background-image: url(../images/team/jim.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#team2 {
	background-image: url(../images/team/andy.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#team3 {
	background-image: url(../images/team/lance.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#team4 {
	background-image: url(../images/team/andre.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#team5 {
	background-image: url(../images/team/james.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#team6 {
	background-image: url(../images/team/nick.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#team7 {
	background-image: url(../images/team/greg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#team8 {
	background-image: url(../images/team/lois.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#team9 {
	background-image: url(../images/team/steve.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#team10 {
	background-image: url(../images/team/tony.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#team11 {
	background-image: url(../images/team/michael.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#team-body {
	margin-top: 8px;
}
#team-title {
	margin-top: 5px;
}
#ie6 {
	margin-bottom: 7px;
}


/* styles from old site */
.emailLinks {
	text-decoration: underline;
	color: #000000;
}
.aboutlinks {
	color: #000000;
	text-decoration: none;
	white-space: nowrap;
	font-weight: bold;
	padding-left: 25px;
}
.legalfooter {
	font-size: 11px;
	color: #666666;
	text-decoration: none;
	padding-top: 20px;
	padding-bottom: 20px;
}