@charset "utf-8";

body {
  font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
  background: #202020;
  margin: 0;
  padding: 0;
  color: #DDD;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
  padding-right: 15px;
  padding-left: 15px;
}

a img { border: none; }

a:link {
  color: #FFF;
  text-decoration: underline;
}

a:visited {
  color: #DDF;
  text-decoration: underline;
}

a:hover, a:active, a:focus { text-decoration: none; }

/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
  width: 1000px;
  background: #202020;
  margin: 0 auto; /* auto value, coupled with the width, centers the layout */
}

header { background: #202020; }

/* ~~ These are the columns for the layout. ~~ */

.sidebar1 {
  float: left;
  width: 200px;
  background: #202020;
  padding-bottom: 10px;
}

.content {
  padding: 10px 0;
  width: 600px;
  float: left;
}

aside {
  float: left;
  width: 200px;
  background: #202020;
  padding: 10px 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */ }

.container .sidebar1 nav ul ul li a { text-decoration: none; }

nav > ul > li {
  background-image:url(wsimsTitle.png);
  display: block;
  color: #222;
  height: 22px;
  font-weight: bold;
  padding-top: 6px;
  padding-bottom: 4px;
  padding-left: 45px;
}

nav ul ul {
  list-style: none;
  margin-bottom: 15px; /* creates the space between the navigation on the content below */
}

nav ul ul li { text-decoration: none; }

nav ul ul a, nav ul ul a:visited {
  padding: 4px 5px 6px 15px;
  display: block;
  background-image:url(wsimsButton.png);
  color:#fff;
}

nav ul ul a:hover {
  background-image:url(wsimsButton_h.png);
  color:#fff;
}

/* ~~ The footer ~~ */
footer {
  padding: 10px 0;
  background: #444;
  position: relative;/* this gives IE6 hasLayout to properly clear */
  clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

/* ~~ Miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
  float: right;
  margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
  float: left;
  margin-right: 8px;
}

.clearfloat { /* this class can be placed on a <br /> or empty block element as the final element following the last floated block (within the .container) if the footer is removed or taken out of the .container */
  clear:both;
  height:0;
  font-size: 1px;
  line-height: 0px;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure { display: block; }
