﻿*
{
	font-family: Arial, Sans-Serif;
}

body
{
	/* 
		Clears white space around the body except for the top which gets 10 pixels.
	*/
	margin: 10px 0 0 0;
}

a
{
	/*
		Clears the underline on normal links, and give them #308462 as the color.
	*/
	color: #308462;
	text-decoration: none;
}

a:hover
{
	/*
		Underlines links when the users hover the mouse over them.
	*/
	text-decoration: underline;
}

h1
{
    /*
    Makes h1 Boarder Blue elements smaller than their browser default.
  */
 
    border: thick #0077ff solid;
    margin: 0 400px 0 0;
    font-size : 30px;
    background-color: #FFFFFF;
    margin-bottom: 20px;
}

.Introduction
{
  font-style: italic;
  color: #003399;
}

.PageWrapper
{
	/*
		Sets the total width for the entire page. ****
	background-color: #c0C0C0; Light Grey
	*/
	width: 100%;
	background-color: lightblue ;
}

#PageWrapper
{
	/*
		Sets the total width for the entire page. ****
	background-color: #cccccc; 
	*/
	width: 100%;
	background-color: #cccccc;
}

#Header
{
	/*
		Gives the header the same width as the PageWrapper. The height creates some room for the logo
		that is set with the background-image.
	*/
    background-image: url('../../Images/Sunset.jpg');
	width: 100%;
	height: 150px;
}

.HeaderLink
{
    /*
		The #HeaderLink is nested in the #Header. It provides a link to the homepage. WAS #90EE90
	*/
	border: thick #0077ff solid;
    margin: 0 300px 0 20px;
    height: 50px;
    display: block;
    font-family: 'Times New Roman' , Times, serif;
    font-size: 40px;
    font-weight: bold;
    color: black;
    background-color: lightblue;
}
.Headerlink1
{
	width: auto;
	height: 86px;
	display: block;
	font-family: 'Times New Roman' , Times, serif;
	font-size: 80px;
	font-weight: bold;
    color: blue;
}
.MainMenu
{
	/*
		The Menu gets a white border on all four sides.
	*/
	border: 1px solid white;
	width: 100%;
	height: 19px;
	background-color: #cccccc;
}

#Sidebar
{
	/*
		The SideBar is positioned to the right of the MainContent area. It gets the same font-size as #MainContent
		and gets a background image called Sidebar.jpg. To ensure the image is visible in (most) browsers
		on a dmall page, the element gets a minimum height of 500px. This is ignored by IE 6.
	background-color: #cccccc;
	*/
	font-size: 0.8em;
	background-image: url('../../Images/Sidebar1.jpg');
	background-repeat: no-repeat;
	background-color: #94c3f3;
	width: 14%;
	min-height: 510px;
	padding-top: 10px;
	float: Right;
	padding-left: 10px;
}

#MainContent
{
	/*
		Defines the main content area. The #MainContent element has a minimum height of 500 pixels, but can grow if necessary.
		The font-size is 80% of its parenty element, which in this case comes down to 80% of the font
		the user has specified as the default font in the browser.
	background-color: #e1e1e1;
	*/
	padding: 10px;
	font-size: 0.8em;
	width: 82%;
	border-left: 1px solid white;
	border-right: 2px solid white;
	float: Left;
	background-color: lightblue;
	min-height: 500px;
	border-left-style: solid;
}

#MainContentWide
{
	/*
		Defines the main content area. The #MainContent element has a minimum height of 500 pixels, but can grow if necessary.
		The font-size is 80% of its parenty element, which in this case comes down to 80% of the font
		the user has specified as the default font in the browser.
	background-color: #e1e1e1;
	*/
	padding: 10px;
	font-size: 0.8em;
	width: 100%;
	border-left: 1px solid white;
	border-right: 2px solid white;
	float: Left;
	background-color: lightblue;
	min-height: 500px;
	border-left-style: solid;
}
#Footer
{
	/*
		The footer is positioned below all other content (yet still within PageWrapper).
		At the top, it gets a border with a dashed style, while all other sides have no border.
		clear: both is used to clear the impact of the float properties used for #MainContent and #SideBar.
	background-color : #bee4cf;
	*/
	clear: both;
	height: 37px;
	background-color : lightblue ;
	color: White;
	text-align: center;
	font-size: 0.7em;
	font-weight: bold;
	line-height: 37px;
}
.MyButton
{
	color: #308462;
}

#MenuWrapper
{
	/*
		The menu spans the page width, right below the header.
		At the top and left a few pixels padding is applied to create some room.
	*/
	background-image: url('../../Images/MenuBackgroundblu2.jpg');
    border-color: darkblue; width: 20px;
	width: 97%;
	height: 36px;
	padding-top: 7px;
	padding-left: 17px;
	padding-right: 17px;
}

#MenuWrapper a
{
	/*
		Links in the Menu are Black. This gets overriden by styles in chapter 7 but
		the override in the MenuItemSytles doesn't work.
	*/
	color: #000000;
}
	/*
		This over-rides the Static Menu but the color is ignored (bug)
	*/

.StaticMenuItemStyle, .StaticMenuItemStyle a
{
	color: #FF0000;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	padding-left: 2px;
	font-family: 'Times New Roman' , Times, serif;
}
	/*
		This set the background of main menu when hovering over the item
	background-color: #C0C0C0;
	*/
.StaticHoverStyle, .StaticSelectedStyle
{
	background-color: Red;
}

	/*
		This over-rides the Dynamic Menu but the font color is ignored (bug)
	*/
.DynamicMenuItemStyle
{
	font-size: 14px;
	color: #FF0000;
	background-color: #FFFF00;
	padding: 4px 2px 4px 3px;
}
.DynamicHoverStyle
{
	background-color: #707070;
	color: White;
}
.DynamicHoverStyle a
/* Removes the underline from links in the sub menus */
{
	text-decoration: none;
}

/* Removes all boarders on images 
img
{
    border: none;
}
*/
.InfoLabel
{
	width: 400px;
}
