/* All the CSS for the my Home Page. */

/* Normal body junk. */

html
{
	width: 100%;
	height: 100%;
	font-size: medium;
	/* Here be validation errors, delete the / at the end of this line before validation --> */
	-webkit-text-size-adjust:none;
	/**/
}

body
{
	width: 100%;
	height: 100%;
	background-color: #2F4050;
	/* background: url(../Images/Background.png) repeat; */
	margin: 0px;
}

h1
{
	margin: 0px;
	font-size: 50px;
}

h2
{
	margin: 0px;
	font-size: large;
	font-weight:bold;
}

h3
{
	margin: 0px;
	font-size: medium;
	font-weight: bold;
}

#outerContainer
{
	width: 80%;
	min-width: 250px;
	max-width: 1280px;
	margin: 0 auto;
	
	height:100%;
}

#innerContainer
{
	width: 100%;
	background-color: #ffffff;
	border-left: 3px solid #a0a0a0;
	border-right: 3px solid #a0a0a0;
	box-shadow: 10px 0px 5px #000;
	display: inline-block;
	height:auto;
	min-height:100%; /* real browsers */
}

#pageHeader
{
	background-color: #c0c0c0;
	border-bottom: 1px solid #a0a0a0;
}

#tabs
{
	background-color: #e0e0e0;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #a0a0a0;
	padding-top: 5px;
	width: 100%;
}

#IETabLock
{
	margin-left: 5px;
	min-width: 250px;
}

#outerContent
{
	background-color: #ffffff;
	float: left;
	width: 70%;
}

#innerContent
{
	padding: 10px;
}

#sideBar
{
	float: right;
	width: 30%;
}

.sideBarEntry
{
	background-color: #95d0d0;
	color: #000000;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	box-shadow: 5px 5px 5px #888;
	margin: 10px;
	padding: 3px;
}

ul
{
	margin-left: 30px; 
	list-style-type: disc;
}

#index ul 
{ 
	list-style-type: none;
	background: url(../Images/ListTreeV.png) repeat-y;
	padding: 0px;
    margin-left: 20px;
	
	margin-bottom: 0px; 
}

#index li
{
	padding-left: 10px;
    line-height: 20px;
    background: url(../Images/ListTreeT.png) no-repeat;
}

#index ul li:last-child
{
	background: #fff url(../Images/ListTreeL.png) no-repeat;
}

#headingBanner
{
	vertical-align: middle;
	line-height: 92px;
	max-width: 100%;
	height: auto;
}

.activeTab,
.inactiveTab
{
	outline: none;
	text-decoration:none;
	color: #000000;
	width: 10%;
	min-width: 70px;
	padding: 5px;
	margin-left: -1px;
	margin-bottom: -1px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	position: relative;
	display: inline-block;
}

.activeTab
{
	background-color: #ffffff;
	
	border-bottom: 1px solid #ffffff;
	border-right:  1px solid #a0a0a0;
	border-top:    1px solid #ffffff;
	border-left:   1px solid #ffffff;
}

.inactiveTab
{
	border-right:  1px solid #a0a0a0;
	border-top:    1px solid #a0a0a0;
	border-left:   1px solid #a0a0a0;
	border-bottom: 1px solid #a0a0a0;
	background:      -o-linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
    background:     -ms-linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
    background:    -moz-linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
    background: -webkit-linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
    background:         linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
    text-shadow: 0 1px #FFF;
}

.activeContent
{
	display: block;
}

.inactiveContent
{
	display: none;
}

.indexCatagory
{
	font-weight:bold;
	background-color: #b0c0e0;
	color: #000000;
	display: inline-block;
}

.sink
{
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	border-top: 1px solid #a0a0a0;
	border-left: 1px solid #a0a0a0;
}

.raise
{
	border-right: 1px solid #a0a0a0;
	border-bottom: 1px solid #a0a0a0;
	border-top: 1px solid #ffffff;
	border-left: 1px solid #ffffff;
}

.indexLink
{
	text-decoration:none;
	color: #3344e0;
}

.indexLink:visited
{
	color: #4050a0;
}

.indexLink:hover
{
	color: #0088aa;
}

.hideElement
{
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}

@media screen and (max-width: 1024px)
{
	#outerContainer
	{
		min-width: 170px;
		width: 100%;
	}
	
	#innerContainer
	{
		border-left: 0px solid #a0a0a0;
		border-right: 0px solid #a0a0a0;
	}

	#IETabLock
	{
		min-width: 190px;
		width: auto;
	}

	h1
	{
		font-size: 35px;
	}
}



@media screen and (max-width: 700px)
{
	#outerContent
	{
		width: 100%;
	}

	#sideBar
	{
		display: none;
	}
}

@media screen and (max-width: 330px)
{
	html
	{
		font-size: small;
	}
	
	body
	{
		font-size: small;
	}
	
	.activeTab,
	.inactiveTab
	{
		min-width: 59px;
		padding-left: 1px;
		padding-right: 1px;
		padding-top: 8px;
		padding-bottom: 8px;
	}
	
	h1
	{
		font-size: 25px;
	}
}