﻿body 
{
	font-family: Trebuchet MS;
	font-size: small;
}
h1
{
	font-size: large;
	font-weight: bold;
}
h2
{
	font-size: larger;
	font-weight: bold;
}
h3
{
	font-size: medium;
	font-weight: bold;
}
h4
{
	font-weight:bold;
}

/* DIV STYLES */
#outerContainer 
{
	background-color:#ffffff;
	margin:auto;
	padding:0px 0px 0px 0px;
	width:669px;
}
#Header
{
	background-color: #D2FF00;
	background-image: url(../../Images/logo.gif);
	background-repeat: no-repeat;
	clear:both;
	direction:ltr;
	float:left;
	height:125px;
	overflow:auto;
	text-align:justify;
	width:100%;
}
#Navigation
{
	background-color: #378724;
	border-width:0px;
    border-bottom-style: ridge;
    border-bottom-width: 100%;
	clear:both;
	direction:ltr;
	font: Terbuchet MS;
	float:left;
	height: 20px;
	overflow:auto;
	padding-bottom: 2%;
	text-align:left;
	width: 100%;
}
#Content
{
	border-width:0px;
	clear:both;
	direction:ltr;
	float:left;
	height:80%;
	padding-bottom: 2%;
	text-align:justify;
	width:100%;
}
#Footer
{
	background-color: #D2FF00;
    border-width:100%;
    border-top-style: ridge;
    border-top-width: 100%;
    clear:both;
    direction:ltr;
    float:left;
    height: 5%;
    max-height : 175px;
    text-align: center;
    width:100%;
}
#SubjectsLeft
{
	height:auto;
	width:45%;
}
#SubjectsRight
{	
	float:right;
	height:auto;
	width:45%;
}
#LevelsLeft
{
	height:auto;
	width:45%;
}
#LevelsRight
{
	height:auto;
	width:45%;
	float:right;
}
#TwoImagesAndTextOuter
{
	height:auto;
	width:100%;
}
#TwoImagesAndTextImageOne
{
	width:20%;
	float:left;
	clear:left;
}
#TwoImagesAndTextImageTwo
{
	width:32%;
	float: right;
}
#TwoImagesAndTextText
{
	text-align:justify;
	width:45%;
	float:left;
}
.LeftImage
{
    display:run-in;
    float:left;
    height: auto;
    padding: 0px 10px 0px 0px;
}
.RightImage
{
    display:run-in;
    float:right;
    height: auto;
    padding: 0px 0px 0px 10px;
}
DIV.OneImageAndTextContainer
{
/*	height:auto;
	width:100%;*/
    border: dashed 2px blue;
}
#OneImageAndTextLeftImage img
{
    float:left;
	clear:left;
}
#OneImageAndTextLeftImage P
{
    width:80%;
    float:right;
}
#OneImageAndTextRightImage img
{
	float:right;
}
#OneImageAndTextRightImage P
{
    width: 80%;
    float:left;
}
DIV.OneImageAndTextText
{
	width: auto;
	float:left;
	text-align:justify;
}

/* -------------------------------------------------------------------------- */
/* When the Menu control's Orientation property is Horizontal the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Horizontal. */
/* Note that the example menu in this web site uses absolute positioning to force the menu to occupy */
/* a specific place in the web page.  Your web site will likely use a different technique to position your */
/* menu.  So feel free to change all the properties found in this CSS rule if you clone this style sheet. */
/* There is nothing, per se, that is magical about these particular property value choices.  They happen to */
/* work well for the sample page used to demonstrate an adapted menu. */
.AspNet-Menu-Horizontal 
{
	/*width: 100%;
	float: left;*/
	margin: 0;
	padding: 0 0 20px 10px;
	/*border-bottom: 1px solid #000;*/
}

.AspNet-Menu-Horizontal UL
{
	/*display:inline;*/
	margin: 0;
	padding: 0;
	display: inline;
	list-style-type: none;
}
/* This rule controls the width of the top tier of the horizontal menu. */
/* BE SURE TO MAKE THIS WIDE ENOUGH to accomodate all of the top tier menu items that are lined */
/* up from left to right. In other words, this width needs to be the width of the individual */
/* top tier menu items multiplied by the number of items. */
.AspNet-Menu-Horizontal ul.AspNet-Menu
{
    /*float:left; */
    margin: 0;
	padding: 0;
	display: inline;
	list-style-type: none;
}

/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* In other words, this rule can be used to style the second and third tiers of the menu without impacting */
/* the topmost tier's appearance. */
/* Remember that only the topmost tier of the menu is horizontal.  The second and third tiers are vertical. */
/* So, they need a much smaller width than the top tier.  Effectively, the width specified here is simply */
/* the width of a single menu item in the second and their tiers. */
.AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
	/*width: 100%;
    display:inline;*/
	margin: 0;
	padding: 0;
	display: inline;
	list-style-type: none;
}

/* Generally, you use this rule to set style properties that pertain to all menu items. */
/* One exception is the width set here.  We will override this width with a more specific rule (below) */
/* That sets the width for all menu items from the second tier downward in the menu. */
.AspNet-Menu-Horizontal ul.AspNet-Menu li
{
	/*padding: 3px 3px 3px 3px;*/
	margin: 0;
	padding: 0;
	display: inline;
	list-style-type: none;
}

/* This rule can be used to set styles for the menu items in the second tier (and lower) in the menu. */
.AspNet-Menu-Horizontal ul.AspNet-Menu li li
{
    /*text-align:left;*/
    margin: 0;
	padding: 0;
	display: inline;
	list-style-type: none;

}
/* This rule establishes the width of menu items below the top tier.  This allows the top tier menu items */
/* to be narrower, for example, than the sub-menu items. */
/* This value you set here should be slightly larger than the left margin value in the next rule. See */
/* its comment for more details. */
.AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    /*width:auto;*/
    margin: 0;
	padding: 0;
	display: inline;
	list-style-type: none;
}
/* Third tier menus have to be positioned differently than second (or top) tier menu items because */
/* they drop to the side, not below, their parent menu item. This is done by setting the last margin */
/* value (which is equal to margin-left) to a value that is slightly smaller than the WIDTH of the */
/* menu item. So, if you modify the rule above, then you should modify this (below) rule, too. */
.AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{
    /*margin: -1.8em 0 0 126px;*/
    margin: 0;
	padding: 0;
	display: inline;
	list-style-type: none;
}
.AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    float:left;
}

.AspNet-Menu-Horizontal ul.AspNet-Menu li li
{
    float:left;
}


.AspNet-Menu-Horizontal a:link, .AspNet-Menu-Horizontal a:visited
{
	float: left;
	line-height: 14px;
	font-weight: bold;
	margin: 0 5px 4px 5px;
	text-decoration: none;
	color:Lime;
}

.AspNet-Menu-Horizontal a:link#current, .AspNet-Menu-Horizontal a:visited#current, .AspNet-Menu-Horizontal a:hover
{
    border-bottom: 4px solid White;
	padding-bottom: 2px;
	background: transparent;
}

.AspNet-Menu-Horizontal a:hover 
{ 
	color: white;
}
.Form
{
    width:45%;
    float:left;
}
.FormLabels
{
    height:     auto;
	display:    block;
	padding:    0px 0px 0px 0px;
	margin:		0em 0em 1em 0em;
	overflow:	auto;
	clear:		left;
	float:      left;
}
.TextBoxes
{
    clear:both;
    display:block;
    float:right;
    width: 58%;
}