﻿/* 
   The below CSS file was built using samples + techniques described by Rachel Andrew in her book:
   The CSS Anthology: 101 Essential Tips, Tricks & Hacks
  http://www.sitepoint.com/article/rock-solid-css-layouts/
  http://ep2.nl/dev/div-css-100-height/
*/

/* Overall Page */

* 
{
  /*
	margin: 0;
	padding: 0;
*/
}

html, body 
{
	width: auto;
	/*height: 100%;*/
}

body
{
  margin: 0;
   /* background-color: #3cb371;same color as footer, so glitches in position of footer do not become visible */
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-size: small;
}

.RoboBridge
{
  color: #0033cc;
  font-family: 'Segoe Print' , 'Comic Sans MS' , Arial, Sans-Serif;
}

#wrapper
{
  background-color: #fdf8f2; 
  padding: 0px;
  /*height: 93%;    /* 94% gives a scrollbar */
  margin: 0 auto;
}

#main 
{ 
  margin: 10px; 
}

#header
{
  border-bottom: darkgreen 1px solid;
/*
*/
  background-color: #99ff99;
  padding: 10px;
  height: 50px;
}

#headertitle {
  font-size: 3em;
  width: 50%;
  float: left;
  height: 40px;
  /* 
  border: solid 1px Red;
*/
}

#headerdetails 
{
  /*
	position: absolute;
	top: 0;
	right: 0;
*/
  float: right;
	padding: 1px;
  height: 40px;
}

#breadcrumb
{
  font-size: 120%;
  color: black;
  font-weight: bold;
  margin: 2px;
}

#languages
{
  font-size: 110%;
  color: black;
  font-weight: normal;
  margin: 2px;
  text-align: right;
}

#header a:link, a:visited  {
	color: #B51032;
}

#footer
{
  height: 4%;
  line-height: 29px;
  vertical-align: middle;
  text-align: center;
  background-color: #3cb371;
  color: #FFFFFF;
  width: 100%;
}
#footer a:link, #footer a:visited {
	color: #FFFFFF;
	background-color: transparent;
}


/* sidebar on the right of the page */
#sidebar 
{
  max-width: 220px;
  /*
	position: absolute;
	top: 0;
	right: 0;
	width: 220px;
*/
}

#sidebar h2
{
  font-size: 120%;
  background-color: gray;
  padding: 2px;
  margin: 0px -5px 4px -5px;
  text-align: center;
  width: 100%;
}

/* Navigation */

#navigation 
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 120%;
	margin-left: 100px;
}

#navigation .unselectedmenu
{
  background-color: #2e8b58;
  color: white;
  padding: 2px;
}

#navigation .selectedmenu
{
  background-color: #004e00;
}


/* Main Content */

#content 
{
  float: left;
	padding: 5px;
	border-top: 3px solid #004e00;
}

#content h1 
{
	font-size: 150%;
}

#content h2 
{
	font-size: 130%;
  margin: 20px 0px 0px 0px;
}

#content p {
	font-size: 100%;
	line-height: 1.2em; 
}

#content .footnote 
{
	font-size: 80%;
}

#content .sidenote
{
  float: right;
  background-color: lightgrey;
  border: solid 1px DarkGray;
  font-size: 80%;
  padding: 5px;
}

h2, p
{
  padding:0px;
  margin: 0px;
}
/*
ul
{
  margin-top: 0px;
  margin-bottom: 10px;
}
*/
#authentication 
{
	font-size: 80%;
  background-color: #3cb371;
	padding: 0px 5px 5px 5px;
	color: #FFFFFF;
}

#authentication a:link, #authentication a:visited
{
	color: #FFFFFF;
}

#advertisement
{
  font-size: 80%;
  margin-top: 1em;
  padding: 5px;
  color: #FFFFFF;
  background-color: #3cb371;
}

.forfull 
{
	width: auto;
}

.EditButton
{
  position: absolute;
  top: 0px;
  left: 0px;
}

.contentTitle
{
	font-weight: bold;
	font-size: 150%;
	background-color: #99CCFF;
  padding: 1px 3px 1px 3px;
  margin-top: 1em;
}

.contentDate
{
  font-size: 80%;
}

.contentText
{
	background-color: White;
}