/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #F7F7F7;
  background-image: url("RegisterofExerciseProfessionals_images/0");
  color: #000099;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  font-size: 12px;
}
/* Sets the style for visited links. */
a:visited {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #ffffff;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #ffffff;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #ffffff;
}

/** right column links **/
/* Sets the style for unvisited links. */
#rightColumn1  a:link {
  color: #000099;
  font-weight: bold;
  text-decoration: underline;
  font-size: 12px;
}
/* Sets the style for visited links. */
#rightColumn1 a:visited {
  color: #000099;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#rightColumn1 a:hover {
  color: #FF9900;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#rightColumn1 a:focus {
  color: #ffffff;
}
/* Sets the style for a link that is being activated/clicked. */
#rightColumn1 a:active {
  color: #ffffff;
}
/** left column links **/
/* Sets the style for unvisited links. */
#leftColumn1  a:link {
  color: #000099;
  font-weight: bold;
  text-decoration: underline;
  font-size: 12px;
}
/* Sets the style for visited links. */
#leftColumn1 a:visited {
  color: #000099;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#leftColumn1 a:hover {
  color: #FF9900;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#leftColumn1 a:focus {
  color: #ffffff;
}
/* Sets the style for a link that is being activated/clicked. */
#leftColumn1 a:active {
  color: #ffffff;
}




/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 10px auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  min-width: 800px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 95%;
}
#outerWrapper #header {
	background-position: 10px 10px;
	background-repeat: no-repeat;
	border-bottom: solid 1px #5a6484; /* Sets the bottom border properties for an element using shorthand notation */
	border-color: #FFFFFF; /* Sets the border color properties for an element using shorthand notation */
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: bold;
	height: 60px;
	line-height: normal;
	padding: 6px;
}
#outerWrapper #header2 {
	border-bottom: solid 8px #5a6484; /* Sets the bottom border properties for an element using shorthand notation */
	border-color: #f1268f; /* Sets the border color properties for an element using shorthand notation */
	color: #ffffff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: bold;
	height: 15px;
	line-height: 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #b2b2b2;
	background-repeat: repeat-x;
	padding-top: 4px;
	padding-right: 6px;
	padding-bottom: 4px;
	padding-left: 6px;
}

#outerWrapper #header h1 {
	color: #7f7f7f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	font-style: normal;
	font-weight: bold;
	line-height: normal;
	padding-top: 10px;
}
#outerWrapper #header h2 {
  color: #7f7f7f;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: normal;
}
#outerWrapper #contentWrapper {
  overflow: hidden;
}
#outerWrapper #contentWrapper #rightColumn1 {
	color: #000099;
	float: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: normal; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 5em;
	background-position: right;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	margin-left: 10px;
}
#outerWrapper #contentWrapper #rightColumn1 h1 {
  color: #000099;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
}
#outerWrapper #contentWrapper #rightColumn1 h2 {
  color: #000099;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: normal;
}
#outerWrapper #contentWrapper #leftColumn1 {
	color: #000099;
	float: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 6px 6px 6px 6px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 5em;
	vertical-align: bottom;
	background-image: none;
}
#outerWrapper #contentWrapper #leftColumn1 h1 {
  color: #000099;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
}
#outerWrapper #contentWrapper #leftColumn1 h2 {
  color: #000099;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  color: #000099;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: normal;
  margin: 0 6em 0 6em; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #content h1 {
  color: #f1268f;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
}
#outerWrapper #contentWrapper #content h2 {
  color: #000099;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
}
#outerWrapper #contentWrapper #content a, #outerWrapper #contentWrapper #content a:link {
  color: #ff9900;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}
#outerWrapper #contentWrapper #content a:visited {
  color: #ff9900;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
}
#outerWrapper #contentWrapper #content a:hover {
  color: #FF3300;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
}
#outerWrapper #contentWrapper #content a:focus {
  color: #ff9900;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: normal;
}
#outerWrapper #contentWrapper #content a:active {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
}
#outerWrapper #footer {
	background-color: #b2b2b2; /* Sets the top border properties for an element using shorthand notation */
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 16px;
	padding: 6px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 25px;
	font-weight: bold;
	border-top-width: 8px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #f1268f;
}
#outerWrapper #footer a:hover {
  color: #FFFFFF;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-decoration: underline;
}
#outerWrapper #footer a:focus {
  font-family: Verdana, Arial, Helvetica, sans-serif;
}
.headerimage {
	float: right;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
}

/* menu stuff */

div.sdmenu {
	width: 190px;
	font-family: Arial, sans-serif;
	font-size: 100%;
	padding-bottom: 10px;
	background: url(bottom5.gif) no-repeat  right bottom;
	color: #99CCFF;
}
div.sdmenu div {
	background: url(title5.gif) repeat-x;
	overflow: hidden;
}
div.sdmenu div:first-child {
	background: url(toptitle5.gif) no-repeat;
}
div.sdmenu div.collapsed {
	height: 25px;
	border-bottom: 1px solid #ddd;
}
div.sdmenu div span {
	display: block;
	padding: 5px 25px;
	font-weight: bold;
	color: #ffffff;
	background: url(expanded.gif) no-repeat 10px center;
	cursor: default;
	border-bottom: 1px solid #ddd;
}
div.sdmenu div.collapsed span {
	background-image: url(collapsed.gif);
}
div.sdmenu div a {
	padding: 5px 10px;
	background: #eee url(linkarrow.gif) no-repeat right center;
	display: block;
	border-bottom: 1px solid #ddd;
	color: #000099;
}
div.sdmenu div a.current {
	background : #ccc;
}
div.sdmenu div a:hover {
	background : #cce6ff url(linkarrow.gif) no-repeat right center;
	color: #000099;
	text-decoration: none;
}
/* TOP NAVIGATION */
#NavTopRight { 
padding : 7px; 
float : right; 
} 
#NavTopRight ul { 
margin : 0; 
padding : 5px; 
text-align : right; 
} 
#NavTopRight li { 
display : inline; 
list-style-type : none; 
padding-right : 3px; 
} 
#NavTopLeft { 
padding : 7px; 
float : left; 
} 
#NavTopLeft ul { 
margin : 0; 
padding : 5px; 
text-align : left; 
} 
#NavTopLeft li { 
display : inline; 
list-style-type : none; 
padding-left : 3px; 
} 

/* BOTTOM NAVIGATION */
#NavBotRight { 
padding : 7px; 
float : right; 
} 
#NavBotRight ul { 
margin : 0; 
padding : 5px; 
text-align : right; 
} 
#NavBotRight li { 
display : inline; 
list-style-type : none; 
padding-right : 3px; 
} 
#NavBotLeft { 
padding : 7px; 
float : left; 
} 
#NavBotLeft ul { 
margin : 0; 
padding : 5px; 
text-align : left; 
} 
#NavBotLeft li { 
display : inline; 
list-style-type : none; 
padding-left : 3px; 
}

/* TEXT SIZE */

/* images */
div.rollover {
width: 180px;
height: 187px;
display: block;
text-decoration: none;
background-repeat: no-repeat;
background-image: url(images/Train.jpg);
background-position: right;
}
div.rollover:hover {
	background-image: url(images/Train2.jpg);
	background-position: right;
}

div.rollover2 {
width: 180px;
height: 187px;
display: block;
text-decoration: none;
background-repeat: no-repeat;
background-image: url(images/CLUB.jpg);
background-position: right;
}
div.rollover2:hover {
	background-image: url(images/CLUB2.jpg);
	background-position: right;
}


/* single rollover */

/** Declaration for the a.singleRollover selector **/

a.singleRollover {
	display: block;
	width: 163px;
	height: 183px;
	background: url(images/TRAININGv2.jpg) no-repeat 0 0;
	overflow: hidden;
	text-indent: -10000px;
	font-size: 0px;
	line-height: 0px;
}

/** Declaration for the additional states of the a.singleRollover selector **/

a:visited.singleRollover {
	background-position: 0 0px;
}

a:hover.singleRollover {
	background-position: 0 -187px;
}

a:active.singleRollover {
	background-position: 0 0px;
}

/** Declaration for the a.singleRollover2 selector **/

a.singleRollover2 {
	display: block;
	width: 163px;
	height: 183px;
	background: url(images/CLUBv2.jpg) no-repeat 0 0;
	overflow: hidden;
	text-indent: -10000px;
	font-size: 0px;
	line-height: 0px;
}

/** Declaration for the additional states of the a.singleRollover2 selector **/

a:visited.singleRollover2 {
	background-position: 0 0px;
}

a:hover.singleRollover2 {
	background-position: 0 -187px;
}

a:active.singleRollover2 {
	background-position: 0 0px;
}
/** form box **/
.formbox {
	color: #000099;
}
.L4box {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-image: url(images/repsgroup.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	border: 2px double #000099;
	padding: 10px;
}
.formwrong {
	color: #FF0000;
}

