/*------------------------------------*\
    navPromo
\*------------------------------------*/
#navpromo{
    list-style:none;
    font-weight:bold;
    margin-bottom:10px;
    float:left; /* Clear floats */
    width:100%;
    /* Bring the navpromo above everything else--uncomment if needed.*/
    position:relative;
    z-index:25;
    padding:0px;

}
#navpromo li{
    float:left;
    margin-right:10px;
    position:relative;
    width:265px;

}
#navpromo a{
    display:block;
    padding:5px;
    color:#fff;
    background:#333;
    text-decoration:none;
    line-height:2em;
}
#navpromo a:hover{
    color:#fff;
    background:#ed0000;
   /*  text-decoration:underline;*/
}

/*--- DROPDOWN ---*/
#navpromo ul{
    background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
    background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
    list-style:none;
    padding:0px;
    position:absolute;
    left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
    width:300px;

}
#navpromo ul li{
    /*padding-top:1px;  Introducing a padding between the li and the a give the illusion spaced items */
    border-top:1px white solid;
    font-size:.9em;
    float:none;
}
#navpromo ul a{
    /*white-space:nowrap;  Stop text wrapping and creating multi-line dropdown items */
}
#navpromo li:hover ul{ /* Display the dropdown on hover */
    left:0; /* Bring back on-screen when needed */
}
#navpromo li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
    background:#ed0000;
    text-decoration:underline;
}
#navpromo li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
    text-decoration:none;
}
#navpromo li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
  background:#333;}
  
  /* Side MENU FOR above 768px */
.podc {border:1px solid #000000;box-shadow: 2px 4px #888888;display:block;line-height:1.5em;text-align:center;background-color:#f4f4f4;margin-bottom: .5em; padding: .5em;}
.podc:hover {border:1px solid #000000;box-shadow: 2px 2px #888888;background-color:#ffffff;}   

.hidlg {display:none;}
.hidsm {display:block;z-index: 9;position: relative;}
	

@media screen and (min-width: 0px) and (max-width: 768px){	
.hidlg {display:block;}
.hidsm {display:none;}
}	
