
ul,
ol {
  padding: 0;
  list-style-type: none;
}
dd {
  margin: 0;
}
.sidebar ul,
.sidebar ol,
.commentlist {
  list-style: none;
}
body {
  font-family: Helvetica, Arial, serif;
}
/*********************
07. NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
.sidebar {
  background: url("../images/dark_bg.jpg");
  text-align: center;
  padding-top: 20px;
  -webkit-transform: translateZ(0); /* http://stackoverflow.com/questions/15152470/chrome-rendering-issue-fixed-position-anchor-with-ul-in-body */
  z-index: 995999;
}
.sidebar ul {
  text-align: left;
}
.sidebar a.head_logo {
  display: inline-block;
  width: 118px;
  height: 52px;
  background:url("../images/logo.png");
}
.sidebar a.head_logo:hover {
  opacity: 0.8;
}

.sidebar a.bottom_logo {
  display: block;
  position: absolute;
  width: 134px;
  height: 64px;
  background: url("../images/bottom_logo.png") no-repeat;
  bottom: 40px;
  left: 50%;
  margin-left: -61px;
}
.sidebar a.bottom_logo:hover {
  background: url("../images/bottom_logo_hover.png") no-repeat;
}

.sidebar a.bottom_logo.spanish {
  background: url("../images/bottom_logo_es.png") no-repeat;
}
.sidebar a.bottom_logo.spanish:hover {
  background: url("../images/bottom_logo_es_hover.png") no-repeat;
}
.sidebar a.bottom_logo.french {
  background: url("../images/bottom_logo_fr.png") no-repeat;
}
.sidebar a.bottom_logo.french:hover {
  background: url("../images/bottom_logo_fr_hover.png") no-repeat;
}

.nav { /* nav all */
  
  border-bottom: 0;
}
.nav li {

}
.nav ul {
  margin: 0;
  padding: 0;
}
.nav li a {
  font-size: 18px;
  color: white;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, .75);
  display: block;
  text-decoration: none;
  padding: 10px 15px;
  border-top: 1px solid #373737;
  border-bottom: 1px solid black;
  font-weight: bold;
}
#sidebar1 .nav li a:hover {
  background: rgba(255, 255, 255, .2);
  color: white;
}
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  font-size: 14px;
  padding: 5px 15px;
  color: #666;
  border: none;
}
.nav li ul.sub-menu,
.nav li ul.children {
  display: none;
}
.nav li.current-menu-item,
.nav li.current-menu-item,
.nav li.current-menu-ancestor {
  border-bottom: none;
  background: black;
}


.nav li.menu-item-home ul.sub-menu,
.nav li.menu-item-home ul.children,
.nav li.current-menu-item ul.sub-menu,
.nav li.current-menu-item ul.children,
.nav li.current-menu-ancestor ul.sub-menu,
.nav li.current-menu-ancestor ul.children {
  display: block;
}

/* specific menu item stamp */
li#menu-item-20 a{
  background: url("../images/stamp-red.png") top right no-repeat;
  background-position: right 10px top 0px;
}
#sidebar1 li#menu-item-20 a:hover {
  background: url("../images/stamp-red.png") top right no-repeat rgba(255, 255, 255, .2);
  background-position: right 10px top 0px;
}


.nav ul.sub-menu .current-menu-item a {
  color: white;
}
/* 13.45%; } /* grid_2  */
.threecol {
  width: 22.928176794%;
}
/*********************
NAVIGATION STYLES
*********************/
.sidebar { /* Nav normal */
  position: fixed;
  height: 100%;
  /*width: 31.491712705%;  fourcol */
  max-width: 272px;
}
.nav { 
  border: 0;
  /* end .menu ul li */

  /* highlight current page */

  /* end current highlighters */

}

p.copyright {
  font-size: 12px;
  position: absolute;
  bottom: 90px;
  color: #111;
  left: 50%;
  margin-left: -4px;
  text-shadow: 0px -1px 0px rgba(255,255,255,.1);
  font-weight: bold;
}

#searchform {
  position: relative;
}
#searchform input[type="text"] {
    border-radius: 2px;
    border: 1px solid black;
    color: white;
    text-shadow: 0px 1px black;
    font-size: 16px;
    padding: 14px;
    background: #363636;
    width: 90%;
}
#searchform input[type="text"]:active,
#searchform input[type="text"]:focus {
    background: #252525;
}
#searchform input[type="submit"] {
    background: url("../images/search.png") no-repeat;
    width: 24px;
    height: 24px;
    border: none;
    background-position: -56px 0px;
    position: absolute;
    right: 30px;
    top: 12px;
}
#searchform input[type="submit"]:hover {
    background-position: -56px -25px;
}

