html {
  position: relative;
  min-height: 100%;
}

/*sets the background and background properties*/
body {
   background-image: url("images/rosslyn_75_low.jpg");
   //background-size:cover; //doesn't stretch, some image cropped
   background-size:100% 100%;
   background-repeat: no-repeat;
   background-position: center top;
   background-attachment: fixed;
   background-origin: content-box;
   -webkit-background-size: cover;
   -moz-background-size: cover;
   -o-background-size: cover;
   margin-bottom: 30px;
   font-family: 'Ubuntu', sans-serif;

}

@media (min-width: 611px){
  body{
    background-size:100% 100%;
  }
}

@media (max-width: 610px){
body{
  background-attachment: initial;
  background-size:auto 740px;
 }
}

/*removes the bootstrap border around the page header*/
.page-header {
	border: 0;
}

/*remove the ability to select text using a class*/
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*move the logo around on the top*/
#IILogo {
  float: right;
  position: absolute;
  right: 0%;
  margin-top: -2%;
  max-width: 50%;
  max-height: 23%;
}

@media (max-height: 500px) {
  #IILogo {
    float: right;
    position: absolute;
    right: 8%;
    margin-top: -10px;
    max-width: 30%;
    height: auto;
  }
}

/*position and size the main content*/
#myAccordion {
  position: absolute;
  bottom: 10%; /*originally 67*/
  left: 10%;
  width: 59%;
  color: #fff;
  padding-bottom: 30px;
  display:inline-block;
}

/*style the accordion links to have no effects*/
a, a:link, a:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  font-weight: 400;
}

.panel div{
  font-size:14px;
}

/*had to manually style client Login link*/
#clientLogin {
  color: #fff;
  outline: 0;
}

/*remove bootstrap stylings for panels*/
.panel {
  background: none;
  color: #1F497D;
  margin-bottom: 5px;
  box-shadow: none;
  font-size:20px;
}

/*appropriately style the description's words*/
p {
  color: #fff;
  /*text-shadow: #000 0px 0px 1px;
  -webkit-font-smoothing: antialiased;*/
  margin: 5px 0px 5px 10px;
}


/*appropriately style the horizontal lines in the dropdowns*/
hr {
  border-color: #fff;
  background-color: #fff;
  margin-top: 2px;
  margin-bottom: 1px;
}

/*setting up the sticky footer*/
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 30px;
  text-align: center;
  font-size: 10px;
  color: white;
  //right: 5%;
}

.login input{
    color: #666666;
}

#commit{
  background-color: #CCCCCC;
}

.open{
  display:block;
}

#contentWrapper{
  width:74%;
  display:inline-block;
  float:right;
}

#menuItems{
  display:inline-block;
  width:25%;
  white-space:nowrap;
}

.container{
  width:50%;
  margin:0;
  padding:0;
}

