/* basic elements */

* {
    margin:0;
    padding:0;
}

html {
overflow: hidden;
}

body {
margin:0;
padding:0;
border:0;
width: 100%;
height:100%;
max-height:100%;
margin: 0 auto;
color: #ccc;
font-family: sans-serif;
font-size: 0.85em;
background: #000;
overflow: hidden;

scrollbar-base-color: #000000;
scrollbar-arrow-color: #CCCCCC;
scrollbar-3dlight-color: #070001;
scrollbar-darkshadow-color: #000000;
scrollbar-highlight-color: #CCCCCC;
scrollbar-track-color: #707070;
}

h1 {
font-family: 'times new roman';
font-style: normal;
font-size: 2.25em;
font-weight: normal;
color: #fff;
line-height: 1.4em;
text-align: left;
margin-left: 5px;
}

h2 {
font-family: georgia,'times new roman';
font-style: normal;
font-size: 2.0em;
color: #b01a2d;
line-height: 1.4em;
margin: 20px 15px 0 50px;
}

h2 a {
color: #b01a2d;
}

h3 {
font-family: sans-serif;
font-size: 1.0em;
font-weight: normal;
color: #fff;
letter-spacing: .5px;
margin: 15px;
}

h4 {
font: bold 12pt arial;
letter-spacing: 1px;
margin-bottom: 0px;
color: #666;
text-align: left;
}

h4 a {
color: #666;
}

h5 {
font-family: sans-serif;
font-size: 1.2em;
font-weight: normal;
color: #fff;
text-align: left;
line-height: 1.2em;
padding: 10px;
}

h6 {
font-family: sans-serif;
letter-spacing: 1px;
margin-bottom: 0px;
font-size: 8pt;
text-align: center;
color: #FFFFFF;
}

p {
font-family: sans-serif;
font-size: 95%;
font-weight: normal;
color: #ccc;
line-height: 1.4em;
margin-top: 10px;
}

.title {
font-weight: bold;
margin-top: 0;
}

a {
text-decoration: underline;
color: #fff;
}

img.displayed {
display: block;
margin-left: auto;
margin-right: auto
}

a.small{
color: #b01a2d;
text-decoration: underline;
}


/* ------------------------------------------------------------- */

/* specific divs */

#outer_wrapper {
width: 100%;
margin: 0 auto;
}

#header {
width: 100%;
height: 75px;
text-align: right;
background: #000 url(header.png) no-repeat right center;
border-bottom: solid 0.1em #fff;
}

#footer {
clear: both;
position: absolute;
bottom: 0px;
left: 0;
width:100%;
height: 20px;
background: #000;
border-top: solid 0.1em #fff;
text-align: left;
color: #ccc;
padding-left: 5px;
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: .8em;
line-height: 1.6em;
}

#footer a {
color: #ccc;
text-decoration: underline;
}

#left {
width: 50%;
float: left;
text-align: left;
}

#right {
width: 49%;
float: left;
text-align: right;
}

#content_wrapper {
top: 75px;
bottom: 20px;
width: 100%;
margin: 0;
margin-bottom: 5px;
z-index: -99;
text-align: right;
}

#content_left {
width: 25%;
float: right;
margin: 0;
padding: 10px;
}

#content_left p {
font-style: italic;
padding: 0 5px;
text-align: justify;
}

#content_left img {
display: block;
margin: 10px auto;
}

#content_right {
width: 735px;
float: right;
z-index: -99;
}

#content_right_center {
width: 735px;
height: 500px;
float: right;
text-align: center;
overflow: auto;
}

.thumb {
float: left;
margin: 10px 20px;
text-align: center;
padding: 20px;
}

.thumb a {
text-decoration: none;
border: none;
}

.thumb img {
padding: 5px;
border: none;
border: solid 1px #fff;
}

.testimonial {
width: 70%;
text-align: left;
margin: 0 auto;
}

.testimonial p {
text-align: left;
}


#flashcontent {
height: 466px;
z-index: -199;
}

li {
padding-left: 0;
margin-left: 110px;
}

.menuholder {
z-index: 1000;
width: 100%;
height: 20px;
margin: 0;
background-color: #000;
border-bottom: solid 0.1em #fff;

}

.menu {
width: 100%;
/* VERY IMPORTANT! Set this to appropriate value, either here or in design section */
letter-spacing: -0.2px
}

.menu, .menu ul {	/* remove all list stylings */
margin: 0;
padding: 0;
border: 0;
list-style-type: none;
display: block;
font-size: 85%;
font-family: arial;
font-weight: normal;
}

.menu li {
margin: 0;
padding: 0;
border: 0;
display: block;
width: 110px;
height: 25px;
line-height: 20px;
float: right;
background: transparent url('nav-bg-grey.gif') no-repeat;
position: relative; /* position each LI, thus creating potential IE.win overlap problem */
z-index: 5;	/* thus we need to apply explicit z-index here... */
text-align: center;
}

.menu li:hover {
z-index: 10000;
/* ...and here. this makes sure active item is always above anything else in the menu */
white-space: normal;
/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other that work */
color: #ccc;
}

.menu ul {
visibility: hidden;	/* initially hide all submenus. */
position: absolute;
z-index: 10;
left: 0px;	/* while hidden, always keep them at the top left corner, */
top: 0px;	/* to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
visibility: visible;  /* display submenu them on hover */
right: 50%;	/* and move them to the right of the item */
}

/* -- 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 & IE7 - due to their (different) hover bugs */
	padding: 10px 0px;
	margin: auto;
	/* background: #f00; */
	/* uncomment this if you want to see the "safe" area.
	you can also use to adjust the safe area to your requirement */
}

/* - - - ADxMenu: DESIGN styles - - - */

.menu, .menu ul li {
	color: #fff;
	width: 110px;

}

.menu {
	width: 100%;
}

.menu ul {
	width: 110px;
	font-size: 100%;
}

.menu a {
	text-decoration: none;
	color: #fff;
	display: block;
	-moz-box-sizing:border-box;box-sizing:border-box;
}

.menu a:hover  {
	color: #ccc;
}

.menu li:hover>a {
	color: #ccc;
}


.menu li {	/* create borders around each item */
}

.menu li:hover {	/* create borders around each item */
	margin-top: 0px;
}

.menu>li + li, .menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li:hover>ul {	/* inset submenus, to show off overlapping */
	top: 12px;
	width: 110px;
}

.menu li:hover>ul li {	/* inset submenus, to show off overlapping */
	border-top: 0;
	color: #ccc;
	background: url(opaque.png);
}

.menu li:hover>ul li:hover {	/* inset submenus, to show off overlapping */
	background-color: transparent;
}

.menu li:hover>ul li:hover a {	/* inset submenus, to show off overlapping */
	color: #ccc;
	-moz-box-sizing:border-box;box-sizing:border-box;
}

/* 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: #ccc;
}

#cleardiv {
clear: both;
}

#login-box {
width: 75%;
border: solid 1px #b01a2d;
text-align: center;
padding: 20px;
}

#login-box table {
margin: 40px 0;
width: 80%;
}

.rt {
text-align: right;
}

.rtb {
text-align: right;
font-weight: bold;
border-top: solid 1px #000;
}