/*
----------------------------------------------

File Name: CSS Foundation
Developer: David Diez
Copyright: 2011
Website:   openintro.org


-----------------
Table of Contents
-----------------

Core Rules
Spacers
Standard
- Regular Structure
- Navigation
- Pop Up
Special Structures


-----------
Color Theme
-----------
Gray: rgb(158,165,172)
Dark Gray: rgb(107,115,123)
Yellow: rgb(244,220,0)
Blue: rgb(0,68,106)
Red: rgb(159,52,0)
Green: rgb(102,159,0)

----------------------
Important Measurements
----------------------
Max Content Width: 824px


----------------------------------------------
*/



/*=====> Core Rules <=====*/
html, body {
  font-family: Arial, Helvetica, Verdana;
  font-size: 11pt;
  color: rgb(107,115,123);
  background: rgb(255,255,255);
  margin: 0;
  padding: 0;
  line-height: 1.4em;
  height: 100%;
}
body {
  overflow-y: scroll;
}
body:before {
  content:"";
  height:100%;
  float:left;
  width:0;
  margin-top:-32767px;
}
header, nav, section,
article, footer,
h1, h2, h3, h4, h5, h6,
p, blockquote, dl, dt, dd,
form, fieldset, textarea,
div, span, footnote {
  display: block;
  position: relative;
  z-index: 500;
  margin: 0;
  padding: 0;
  font-size: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 1.5em;
  margin: 16px 0;
}
h2 {
  font-size: 1.3em;
}
h3 {
  font-size: 1.2em;
}
h4 {
  font-size: 1.1em;
}
h5, h6 {
  margin: 12px 0;
  font-size: 1em;
}
p {
  margin: 12px 0;
  max-width: 100%;
  font-size: 1em;
  line-height: 1.4em;
}
ol, ul, li {
  font-size: 1em;
  position: relative;
}
a, .a {
  margin:0;
  padding:0;
  text-decoration: none;
  font-size: 1em;
  color: rgb(0,68,106);
  cursor: pointer;
}
a:hover, .a:hover {
  color: rgb(107,115,123);
}
a:focus, a:active, .a:focus, .a:active {
  color: rgb(107,115,123);
  text-decoration: underline;
}
span /* span also listed above */ {
  display: inline-block;
}
input, label, select {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
}
table, tbody {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 11pt;
}
th, td {
  margin: 0;
  padding: 0;
}
fieldset, img {
  border: 0;
  margin: 0;
  padding: 0;
}
caption, th {
  text-align: left;
}
q:before, q:after {
  content:'';
}
abbr, acronym {
  border: 0;
}
hr {
  margin: 10px 0;
}


/*=====> Spacers <=====*/
.spacerH10 {
  height: 10px;
  background: transparent;
}
.spacerH20 {
  height: 20px;
  background: transparent;
}
.spacerH25 {
  height: 25px;
  background: transparent;
}
.spacerH14 {
  height: 14px;
  background: transparent;
}
.spacerH30 {
  height: 30px;
  background: transparent;
}
.spacerW10 {
  width: 10px;
  background: transparent;
}
.spacerW14 {
  width: 14px;
  background: transparent;
}
.spacerW20 {
  width: 20px;
  background: transparent;
}
.spacerW30 {
  width: 30px;
  background: transparent;
}
.bottom20 {
  margin-bottom: 20px;
}



/*=====> Standard - Regular Structure <=====*/
#wrapOuter {
  min-height: 100%;
  background: url(../img/brand/bg.png) center top;
}
#wrapInner {
  min-height: 600px;
}
#main {
  overflow: auto;
  padding-bottom: 30px;
}
.whiteWash {
  background: rgb(255,255,255);
}
header {
  height: 61px;
  padding-top: 13px;
  min-width: 824px;
  background: rgb(255,255,255);
  z-index: 200;
}
nav {
  height: 30px;
  width: 100%;
  background: url(../img/pallete/darkGray001.png);
  z-index: 800;
  -webkit-box-shadow: -7px 1px 7px 0 rgba(0, 0, 0, .5);
  -moz-box-shadow: -7px 1px 7px 0 rgba(0, 0, 0, .5);
  box-shadow: -7px 1px 7px 0 rgba(0, 0, 0, .5);
}
footer {
  margin-top: -30px;
  height: 30px;
  clear: both;
  width: 100%;
  background: url(../img/pallete/darkGray001.png);
  z-index: 800;
  -webkit-box-shadow: -4px -4px 4px -1px rgba(0, 0, 0, .25);  
  -moz-box-shadow: -4px -4px 4px -1px rgba(0, 0, 0, .25); 
  box-shadow: -4px -4px 4px -1px rgba(0, 0, 0, .25);
}
.center824 {
  margin: 0 auto;
  min-width: 824px;
  width: 824px;
}
#myHomepage {
  display: none;
  position: absolute;
  right: 1px;
  margin: 2px 2px 0 2px;
  top: 40px;
  height: 22px;
  width: 96px;
  cursor: pointer;
  background: url(../img/buttons/main001.png) -308px -170px;
}
#myHomepage:hover {
  margin: 0;
  width: 100px;
  heigth: 24px;
  background-position: -306px -168px;
}
section {
  background: rgb(255,255,255);
  min-height: 535px;
  overflow: hidden;
  overflow-y: auto;
  -webkit-box-shadow: 0 0 5px 3px rgba(0, 0, 0, .25);  
  -moz-box-shadow: 0 0 5px 3px rgba(0, 0, 0, .25); 
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, .25); 
}
article {
  margin: 20px 30px 30px 30px;
  width: 764px;
}



/*=====> Standard - Navigation <=====*/
.menuContainer {
  min-width: 824px;
  width: 824px;
  margin: 0 auto;
  height: 30px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.menu {
  list-style: none;
  position: absolute;
  margin: 0;
  padding: 0;
  height: 30px;
  clear: both;
}
li.menu, a.menu {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 30px;
}
li.menu {
  overflow: visible;
  background: url(../img/buttons/main001.png);
}
#subjects, #subjectsOn {
  margin-right: 63px;
  background-position: -2px -2px;
}
#subjects:hover, #subjectsOn {
  background-position: -108px -2px;
}
#contribute, #contributeOn {
  margin-right: 74px;
  background-position: -3px -26px;
}
#contribute:hover, #contributeOn {
  background-position: -109px -26px;
}
#rights, #rightsOn {
  margin-right: 48px;
  background-position: -2px -51px;
}
#rights:hover, #rightsOn {
  background-position: -108px -51px;
}
#blog {
  margin-right: 185px;
  background-position: -2px -76px;
}
#blog:hover {
  background-position: -108px -76px;
}
#login {
    width: 49px;
    background: url(../img/buttons/main001.png) -221px -4px;
}
#login:hover {
    background-position: -276px -4px;
}
#logout {
  width: 53px;
  background: url(../img/buttons/main001.png) -328px -4px;
}
#logout:hover {
  background-position: -383px -4px;
}
#about, #aboutOn {
  margin-right: 45px;
  overflow: hidden;
  background-position: -3px -100px;
}
#about:hover, #aboutOn {
  background-position: -109px -100px;
}
#contact, #contactOn {
  margin-right: 500px;
  overflow: hidden;
  background-position: -3px -123px;
}
#contact:hover, #contactOn {
  background-position: -109px -123px;
}
#terms, #termsOn {
  width: 76px;
  margin: 0;
  overflow: hidden;
  background-position: -1px -146px;
}
#terms:hover, #termsOn {
  background-position: -107px -146px;
}
#termsA {
  width: 76px;
}
.submenu,
.submenuF,
.submenuL {
  display: block;
  position: relative;
  overflow: hidden;
  height: 0;
  width: 100px;
  margin: 0;
  padding: 0;
}
ol.submenu {
  opacity: 0;
  top: 30px;
  position: absolute;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, .3);
  -moz-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, .3);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, .3);
}
li.menu:hover > ol.submenu {
  height: auto;
  opacity: 1;
  background: rgb(255,255,255);
  -webkit-transition: opacity .2s linear;
  -moz-transition: opacity .2s linear;
  -o-transition: opacity .2s linear;
  transition: opacity .2s linear;
}
li.showShadowOverSubmenu0 {
  height: 2px;
  width: 100px;
  background: rgb(200,200,200);
}
li.showShadowOverSubmenu1 {
  height: 2px;
  width: 100px;
  background: rgb(215,215,215);
}
li.showShadowOverSubmenu2 {
  height: 1px;
  width: 100px;
  background: rgb(235,235,235);
}
li.showShadowOverSubmenu3 {
  height: 1px;
  width: 100px;
  background: rgb(242,242,242);
}
li.submenu,
li.submenuF,
li.submenuL {
  height: 31px;
  width: 92px;
  padding: 0 4px;
}
li.submenuF {
  height: 27px;
}
li.submenuL {
  height: 4px;
}
div.submenu,
div.submenuF {
  width: 92px;
  height: 22px;
  padding: 4px 0;
  border-bottom: 1px solid rgb(158,165,172);
}
div.submenuF {
  padding-top: 0;
}
a.submenu {
  font-size: 8pt;
  display: inline-block;
  color: rgb(0,68,106);
  width: 92px;
  height: 22px;
  padding-left: 5px;
  line-height: 22px;
}
a.submenu:hover {
  background-color: rgb(244,220,0);
}



/*=====> Pop Up <=====*/
#grayCover {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  z-index: 999;
  min-height: 600px;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.43);
}
#footerGrayCover {
  margin-top: -30px;
  height: 30px;
  clear: both;
  width: 100%;
  display: none;
  z-index: 900;
  background: rgba(0,0,0,0.43);
}
#popup {
  width: 742px;
  max-height: 482px;
  overflow: auto;
  overflow-x: hidden;
  margin: 136px auto 50px auto;
  background: rgb(255,255,255);
  border: 1px solid rgb(107,115,123);
  padding: 10px;
}
.puTitle {
  height: 50px;
}
#puClose {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 13px;
  width: 14px;
  background: url(../img/buttons/home001.png) -340px -436px;
  cursor: pointer;
  z-index: 1000;
}
#puClose:hover {
  background-position: -321px -437px;
}
#puContent {
  
}
.puGrayBox,
.grayBox {
  background: url(../img/pallete/lightGray001.png);
  padding: 10px;
  font-size: 12px;
}
.grayBox {
  padding: 10px 20px;
}
.topWhite {
  border-top: 1px solid rgb(255,255,255);
}
.bottomWhite {
  border-bottom: 1px solid rgb(255,255,255);
}



/*=====> Common Buttons <=====*/
.bottomSubmit {
  margin: 15px 0 0 0;
  height: 30px;
}
#submit,
#submitUpdate,
#submitAdd,
#submitCancel,
#submitSaveOrder {
  display: block;
  width: 61px;
  height: 23px;
  background: url(../img/buttons/home001.png) -293px -253px;
  border: none;
  cursor: pointer;
}
#submit:hover {
  background-position: -293px -275px;
}
#submitUpdate {
  background-position: -8px -157px;
  width: 62px;
}
#submitUpdate:hover {
  background-position: -245px -230px;
}
#submitAdd {
  background-position: -252px -17px;
  width: 37px;
}
#submitAdd:hover {
  background-position: -290px -17px;
}
#submitCancel {
  background-position: -212px -17px;
  width: 137px;
  display: absolute;
  left: 0;
}
#submitCancel:hover {
  background-position: -240px -17px;
}
#submitSaveOrder {
  background: url(../img/buttons/bank001.png) -187px -475px;
  width: 86px;
  height: 22px;
  margin-top: 10px;
}
#submitSaveOrder:hover {
  background-position: -187px -451px;
}
#submitNoReturnToMyHomepage,
#submitReturnToMyHomepage,
#submitYesTakeQuizNow,
#submitDelete {
  clear: none;
  float: left;
  width: 193px;
  height: 23px;
  margin: 0 100px 10px 0;
  background: url(../img/buttons/elements001.png) -4px -485px;
  cursor: pointer;
  border: none;
}
#submitNoReturnToMyHomepage:hover {
  background-position: -4px -462px;
}
#submitReturnToMyHomepage {
  background-position: -4px -434px;
  width: 171px;
  height: 24px;
}
#submitReturnToMyHomepage:hover {
  background-position: -174px -434px;
}
#submitYesTakeQuizNow {
  background-position: -208px -485px;
  width: 136px;
}
#submitYesTakeQuizNow:hover {
  background-position: -208px -462px;
}
#submitDelete {
  width: 62px;
  background-position: -64px -411px;
}
#submitDelete:hover {
  background-position: -3px -411px;
}
#submitGo {
  position: absolute;
  top: 0;
  right: 8px;
  height: 16px;
  width: 20px;
  margin: 2px 2px 0 0;
  background: url(../img/buttons/bank001.png) -2px -482px;
  cursor: pointer;
  border: none;
}
#subject {
  position: absolute;
  right: 38px;
  top: 2px;
  border: none;
  margin: 0;
}
#submitGo:hover {
  margin: 0;
  height: 20px;
  width: 24px;
  border: 2px solid rgb(107,115,123);
}



/*=====> Special Structures <=====*/
.loadImage {
  display: block;
  height: 1px;
  width: 1px;
  z-index: 0;
}
.hiddenLink {
  display: block;
  position: absolute;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}
.spanTable {
  width: 100%;
}
.tdBox {
  height: auto;
  padding: 20px;
  font-size: 10pt;
  width: 374px;
  vertical-align: top;
  overflow: hidden;
}
.yellowBG {
  background: rgb(244,220,0);
}
.allCaps {
  text-transform: uppercase;
}
.allCapsText {
  text-transform: uppercase;
  font-size: 0.8em;
}
.smallCapsText {
  font-variant: small-caps;
}
.whiteHBar {
  background: white;
  margin: 10px 0;
  width: 100%;
  height: 2px;
}
.subject {
  margin-top: 20px;
}
.errorMessage {
  color: rgb(159,52,0);
  clear: both;
  font-size: 12px;
}
.count {
  font-size: 12px;
  clear: right;
  float: left;
  line-height: 18px;
  height: 18px;
}
.fieldCount {
  clear: none;
  float: left;
  margin-left: 7px;
}
.placeHolder div {
  border: dashed 1px rgb(107,115,123) !important;
  background: transparent !important;
}
#congratulations {
  margin: 10px 0;
  height: 19px;
  width: 127px;
  background: url(../img/buttons/registration001.png) 0px -1px;
}
#resetPassword {
  margin: 10px 0;
  height: 19px;
  width: 111px;
  background: url(../img/buttons/account001.png) -100px -109px;
}
.hover {
  cursor: pointer;
}
.bold {
  font-weight: bold;
}
.yellowAlert {
  padding: 2px 5px;
  background: rgb(244,220,0);
}
.grayHeader {
  height: 14px;
  color: rgb(255,255,255);
  padding: 4px 6px;
  background: rgb(107,115,123);
  line-height: 14px;
  font-size: 14px;
}

#softwareVideoLink {
  background: url(../img/buttons/courseVideo001.png) -25px -18px;
  border: none;
  width: 764px;
  height: 86px;
  margin-bottom: 12px;
  cursor: pointer;
}

#softwareVideoLink:hover {
  background-position: -25px -114px;
}