/* Start of CMSMS style sheet 'sidebar' */
div#main {
   margin-left: 25px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 300px; /* and some air on the right */
   height:auto;
}


div#sidebar {
   float: right;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 270px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
   height: 100%;
   font-size: 12px;
}

div#sidebar p{
  margin: 10px;
}

div#sidebar li{
  margin-left: 30px;
  padding: 3px 0;
  list-style: square;
}


div#sidebar img{
border: 1px #D9D9D1 solid;
background: #F4F3ED;
padding: 5px;
margin-bottom: 5px;
margin-left: -10px;

}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 1%;
   width: 260px;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}
/* End of 'sidebar' */

