@charset "utf-8";
body {
  margin: 0; padding: 3px;
  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 100%;
  line-height: 1.1;
  background-color: #93A5C4;
  color: #000;
  }

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container { }

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
 padding: 0;
 margin: 0;
 }

h1, h2, h3, h4, h5, h6, p {
 margin: 0;       /* removing the top margin gets around an issue where margins can escape from their containing div.
                  The remaining bottom margin will hold it away from any elements that follow. */
 padding: 0; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves,
             gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
 }

/* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
a img { border: none; }

/* ~~ Styling for your site's links must remain in this order - including the group of selectors
 that create the hover effect. ~~ */

a:link { color:#00F; text-decoration: none; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none;
  }

a:visited { color: #360; text-decoration: none; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none;
  }

/* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */

a:hover {
 text-decoration: none;
  border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; color: #F00;
  }

a:active, a:focus {
 text-decoration: none;
  border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; color: #C0F;
  }

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */

header { height: 183px; }

.container header #LogoLink { position: absolute; width: 200px; left: 3px; top: 0px; height: 183px; }

.container header hgroup .TitleBlock { padding-left: 215px; padding-right: 15px; text-align: center; }
.container header hgroup .TitleBlock a h1 {
 text-align: center;
}
h2 {
 font-size: 14pt;
 font-weight: bold;
 padding-top: 0px;
 padding-right: 0px;
 padding-bottom: 3pt;
}
h3 {
 font-size: 12pt;
 font-style:italic
 font-weight: bold;
 padding-right: 0px;
 padding-bottom: 3pt;
}
h4 {
 font-size: 12pt;
 margin-top: 0px;
 padding-top: 0px;
 padding-right: 0px;
 padding-bottom: 3pt;
}



/* ~~ These are the columns for the layout. ~~

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 { float: left; width: 200px; background: #93A5C4; padding-bottom: 10px; }

.content { background-color: #FFF; margin-left: 200px; padding-left: 5px; }

/* ~~ This grouped selector gives the lists in the .content area space ~~ */

.content ul, .content ol { padding-top: 0; padding-right: 5px; padding-bottom: 5px; padding-left: 40px;  }

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
nav { list-style: none;          /* this removes the list marker */ padding-bottom: 5px;         /* this creates the space between the navigation on the content below */ background-color: #FF0; border: medium outset #999; margin-top: 5px; }

nav ul li { color: #FF0; }

nav ul a, nav ul a:visited {
 display: block; /* this gives the link block properties causing it to fill the whole
                                                                          LI containing it. This causes the entire area to react to a mouse click. */
  width: 190px;   /* this width makes the entire button clickable for IE6. If you don't need to
                                                                    support IE6, it can be removed. Calculate the proper width by subtracting the
                     padding on this link from the width of your sidebar container. */
  text-decoration: none;
  padding-top: 0px; padding-right: 5px; padding-bottom: 0px; padding-left: 5px;
  border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px;
  }

/* this changes the background and text color for both mouse and keyboard navigators */

ul.nav a:hover, ul.nav a:active, ul.nav a:focus { background: #6F7D94; color: #FFF; }


nav #Modules a {
 margin-left: 15px;
 font-size: 95%;
 width: 170px;
}
nav #Access a {
 margin-left: 30px;
 font-size: 95%;
 width: 155px;
}

div #ModulesDrop a{
 font-size: 95%;
 width: 175px;
 margin-left: -15px;
}

/* ~~ The footer ~~ */

footer { padding: 10px 0; position: relative; /* this gives IE6 hasLayout to properly clear */ clear: both; /* this clear property forces the .container to understand where the columns end and contain them */ text-align: center;
  }

/* ~~ miscellaneous float/clear classes ~~ */

.fltrt {  /* this class can be used to float an element right in your page. The floated
                                 element must precede the element it should be next to on the page. */
 float: right;
 margin-left: 8px;
 }

.fltlft { /* this class can be used to float an element left in your page. The floated
                                         element must precede the element it should be next to on the page. */
 float: left;
 margin-right: 8px;
 }

.clearfloat { /* this class can be placed on a <br /> or empty div as the final element
                                                         following the last floated div (within the #container) if the #footer is removed or
                taken out of the #container */
 clear:both;
 height:0;
 font-size: 1px;
 line-height: 0px;
 }


/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */

header, section, footer, aside, nav, article, figure {display: block;}

.content section p { padding-bottom: .5em; }

.content section h3 { padding-bottom: .1em; }

.content .Pictures img { border: medium outset #666; }

.container .content h3 {
 margin-bottom: 3pt;
 font-size: 12pt;
}

.container .content p {
 margin-bottom: 8pt;
}

.container .content section form .mailLbl {
 text-align: right;
 width: 100pt;
 float: left;
 margin: 0px;
 padding: 0px;
}

.container .content section form p {
 margin: 0px;
 padding: 0px;
}

.container .content .LoginDiv {text-align: center;}

.container .content .Msg {
 font-family: Tahoma, Geneva, sans-serif;
 font-size: 14pt;
 font-weight: bold;
 color: #F00;
 background-color: #FF0;
 text-align: center;
}


.Debug {
 background-color: #FF3;
 color: #003;
}


.LogoLink {
 width: 183px;
 top: 0px;
 height: 183px;
 position: absolute;
 left: 0px;
}

.RacesLogo {
 float: right;
 top: 0px;
 position: absolute;
 right: 0px;
 border-top-style: none;
 border-right-style: none;
 border-bottom-style: none;
 border-left-style: none;
 width: 183px;
}

.container header hgroup #DropDown {
 text-align: center;
 color: #006;
 background-color: #93a5c4;
}

.container header hgroup #DropDown ul {
 background-color: #93a5c4;
 border-radius: 10px;
 display: inline-block;
 list-style-type: none;
 position: relative;
 padding-top: 0;
 padding-right: 5px;
 padding-bottom: 0;
 padding-left: 5px;
 margin: 0px;
}

.container header hgroup #DropDown ul ul {
 display: none;
}
.container header hgroup #DropDown ul:after {
  content: ""; clear: both;      display: block;
}

.container header hgroup #DropDown ul li {
 float: left;
 margin-left: 12pt;
}

.container header hgroup #DropDown ul li:hover {
 background: #4b545f;
 background: linear-gradient(top, #4f5964 0%, #5f6975 100%);
 background: -moz-lineargradient(top, #4f5964 0%, #5f6975 100%);
 background: -webkit-lineargradient(top, #4f5964 0%, #5f6975 100%);
 border-radius: 10px;
}

.container header hgroup #DropDown ul li:hover a {color: #fff;}

.container header hgroup #DropDown ul li a {
 display: block;
 padding: 5px 5px;
 border-radius: 10px;
 color: #000066;
 text-decoration: none;
 }



.container header hgroup #DropDown ul li:hover > ul {
 border-radius: 10px;
 display: block;
}


.container header hgroup #DropDown ul ul {
background: #5f6975; border-radius: 0px; padding: 0;
position: absolute; top: 100%;
}
.container header hgroup #DropDown ul ul li {
float: none;
border-top: 1px solid #6b727c;
border-bottom: 1px solid #575f6a;
position: relative;
}
.container header hgroup #DropDown ul ul li a {
padding: 5px 10px;
color: #fff;
}
.container header hgroup #DropDown ul ul li a:hover {
background: #4b545f;
}.container header hgroup #DropDown ul li ul #TestScoring {
 display: block;
}

.black_overlay {
         display: none;
         position: absolute;
         top: 0%;
         left: 0%;
         width: 100%;
         height: 100%;
         background-color: black;
         z-index:1001;
         -moz-opacity: 0.8;
         opacity:.80;
         filter: alpha(opacity=80);
}
.white_content {
         display: none;
         position: absolute;
         top: 25%;
         left: 25%;
         width: 50%;
         height: 50%;
         padding: 16px;
         border: 16px solid orange;
         background-color: white;
         z-index:1002;
         overflow: auto;
}

Code {
 font-family: "Courier New", Courier, monospace;
 font-size: 12pt;
 line-break: 2;
 }

TableCode {
	font-family: "Courier New", Courier, monospace;
	font-size: 12pt;
	width: 100%;
	column-width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	border-right: 10px;
 }
Blnk {
 font-family: "Courier New", Courier, monospace;
 font-size: 12pt;
 break-before: always;
 }

center {padding-left: 50px}

blockquote {font-family:"Courier New", Courier, monospace;}