/* Start of CMSMS style sheet 'LTA: Top menu + 2 columns' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Arial, Helvetica, Geneva, sans-serif;
   font-size: 75.01%; 
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}
img {
   border: 0;
}
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #a33; 
   border-bottom: 1px dotted #777;
}

a:visited {
   text-decoration: none;
   background-color: inherit;
   border-bottom: 1px dotted #777;
}


/* remove underline on hover and change color */
a:hover {
   color: #777;
   border-bottom: none;
}
/* TEXT */
p {
   font-size: 1em;
   padding: 0 0 1.2em 0;
   line-height: 1.4px;
}
blockquote {
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
   font-weight: bold;
}
em, i {
   font-style:italic;
}
/*****************
basic layout 
*****************/
body {
   background-color: #eeeeee;
   color: #000;
}
div#headerTop {
   background: #ee0000 url(images/cms/header_top.gif) bottom center no-repeat;   
   width: 100%;
   height: 30px;
}
div#headerBackground {
   background: url(images/cms/header_bg.gif) top center repeat-y;
   width: 100%;
}
div#navBackground {
   background: url(images/cms/nav_bg.gif) top center repeat-y;
   width: 100%;
}
div#contentBackground {
   background: url(images/cms/content_bg.gif) top center repeat-y;
   width: 100%;
}
div#contentBottom {
   background: #eeeeee url(images/cms/content_bottom.gif) top center no-repeat;   
   width: 100%;
   height: 40px;
}

div#headerWrapper,
div#navWrapper,
div#contentWrapper {
   margin: 0 auto; 
   width: 776px;
   background-color: transparent;
   padding: 0;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 130px; /* adjust according your image size */ 
   padding: 0 0 20px 20px;
   float: left;
   width: 180px;
   color: #fff;
}

div#header h1 a {
   background: transparent url(images/cms/logo_main.gif) no-repeat 0; 
   display: block; 
   height: 130px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; 
   border: none;
}
div#headerRight {
  margin: 0 0px 0 210px; 
  width: 548px;
   color: #fff;
}
div#headerTopLine {
   width: 100%;
   height: 20px;
}
span#headerTel {
   text-align: left;
   font-size: 11pt;
}

span#headerLinks {
   text-align: right;
   float: right;
   margin-right: -8px;
   font-weight: bold;
}
span#headerLinks a,
span#headerLinks a:visited {
   color: #fff;
   border: none;
   margin: 0 8px;
}
span#headerLinks a:hover {
   text-decoration: underline;
}
div#headerTitle {
   padding: 19px 0;
}
div#headerTitle h2 {
   font-weight: bold;
   font-size: 23pt;
   font-family: arial, sans-serif;
   letter-spacing: 1px; 
   word-spacing: 3px; 
}
div#everyclickSearch {
   background: transparent url(images/cms/everyclick_bg.gif) no-repeat;
   height: 34px;
   padding: 5px 80px 0 53px; 
}
input#everyclickText {
   width: 333px;
   margin-right: 5px;
   vertical-align: middle;
}
input#everyclickButton {
   vertical-align: middle;
}

div#search {
   float: right;
   width: 24em;     /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0 0;
   margin: 0 15px 0 1em;
}
form#cntnt01moduleform_1 {
   vertical-align: middle;
}
input#cntnt01searchinput {
   margin: 0 8px 0 3px;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 5px; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;             
   border-bottom: 1px dotted #000;
}
 div.breadcrumbs span.lastitem { 
   font-weight:normal; 
} 
div#content {
   padding: 15px 0;
   margin: 0 15px;
}
div#main {
/*   margin: 0px 0 0 198px; */
   margin: 0 0 0 20px;
   width: 548px;
   float: left;
   display: inline;

}
div#main p {
   margin: 0 10px;
   line-height: 1.4em;
}
div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 178px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   padding-bottom: 30px;
}

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

div#bottomMenu {
   clear: both;
   background: transparent url(images/cms/h3_grey.gif) no-repeat center; 
   padding: 15px 15px 0 5px;
   height: 32px;
   
}
div#bottomMenu a,
div#bottomMenu a:visited {
   text-decoration: none;
   padding: 0px;
}
div#bottomMenuLeft {
   float: left;
}
div#bottomMenuLeft  a {
   margin: 0 10px;
}

div#bottomMenu a:hover {
   text-decoration: underline;
}
div#addThis {
   float: right;
}
div#addThis a {
   margin: 0;
}


div#footer {
   clear:both; 
   color: #fff;
   margin: 0 15px;
   padding-top: 7px;
}
div#footerTop {
   background: url(images/cms/footer_top.gif) center no-repeat;
   width: 100%;
   height: 10px;
   font-size: 0;
}
div#footerContent {
   background: url(images/cms/footer_bg.gif) center repeat-y;
   padding: 0 15px;
   height: 1.4em;
   font-size: 1em;
   line-height: 1.4em;
  }
div#footerBottom {
   background: url(images/cms/footer_bottom.gif) center no-repeat;
   height: 10px;
   font-size: 0;
}
div#subFooter {
   clear:both; 
   color: #555;
   padding: 10px 25px 15px 25px;
   font-size: 0.9em;
   line-height: 1.2em;
}
div#subFooter a {
   color: #555;
   text-decoration: none;
}
div#subFooter a:hover {
   text-decoration: underline;
   color: #000;
}

div#footer p a {
   color: #000; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px solid #ddd;
}

/* relational links under content */
div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}


div.floatLeft {
   clear: left;
   float: left;
}
div.floatRight {
   clear: right;
   float: right;
}
br.clear {
   clear: both;
}
.alignCenter {
   text-align: center;
}

img.inlineLeft {
   float: left;
   margin: 0 15px 5px 10px;
}
img.inlineRight {
   float: right;
   margin: 0 10px 5px 10px;
}
/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */


div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   font-family: Arial;
   color: #fff; 
   font-size: 15pt;
   text-align: left; 
   margin: 0 0 15px 0;
   background: #d00 url(images/cms/h2_red.gif) no-repeat center; 
   line-height: 2em;
   width 100%;
   padding: 0 15px 0 20px;
   height: 40px;
}
h3.h3Red,
h3.h3Grey {
   font-family: Arial;
   font-size: 13pt;
   line-height: 1.8em;
   margin: 0 0 15px 0;
   width 100%;
   padding: 0 15px 0 20px;
   height: 32px;
}
h3.h3Red {
   background: #d00 url(images/cms/h3_red.gif) no-repeat center; 
   color: #fff; 
}
h3.h3Grey {
   background: #d00 url(images/cms/h3_grey.gif) no-repeat center; 
   color: #c00;
}

div#content h4 {
   color: #c00; 
   font-size: 1.2em;
   margin: 0;
   padding: 0 15px 5px 10px;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/*****  Box Styles  *****/
div.box548WhiteTop {
   background: url(images/cms/box_548_w_top.gif) no-repeat center; 
   height: 10px; 
   font-size: 0;
   width: 548px;
}
div.box548GreyTop {
   background: url(images/cms/box_548_g_top.gif) no-repeat center; 
   height: 10px; 
   font-size: 0;
}
div.box548RedTop {
   background: url(images/cms/box_548_r_top.gif) no-repeat center; 
   height: 10px; 
   font-size: 0;
}
div.box548RedEmptyTop {
   background: url(images/cms/box_548_wr_empty_top.gif) no-repeat center; 
   height: 10px;   
   font-size: 0;
}
div.box548GreyContent {
   background: url(images/cms/box_548_g_bg.gif) repeat-y center; 
   padding: 5px 20px 0px 10px;
}
div.box548WhiteContent {
   background: url(images/cms/box_548_wg_bg.gif) repeat-y center; 
   padding: 5px 10px 0px 10px;
}
div.box548RedContent {
   background: url(images/cms/box_548_r_bg.gif) repeat-y center; 
   padding: 5px 10px 0px 10px;
   color: #fff;
}
div.box548WhiteRedContent {
   background: url(images/cms/box_548_wr_bg.gif) repeat-y center; 
   padding: 5px 10px 0px 10px;
}
div.box548WhiteContent p {
   padding: 0 0 10px 0;
   margin: 0;
}
div.box548WhiteBottom {
   background: url(images/cms/box_548_w_bottom.gif) no-repeat center; 
   height: 10px;   
   font-size: 0;
}
div.box548RedEmptyBottom {
   background: url(images/cms/box_548_wr_empty_bottom.gif) no-repeat center; 
   height: 12px;   
   font-size: 0;
}
div.box548GreyBottom {
   background: url(images/cms/box_548_g_bottom.gif) no-repeat center; 
   height: 10px;   
   font-size: 0;
}
div.box548RedBottom {
   background: url(images/cms/box_548_r_bottom.gif) no-repeat center; 
   height: 10px;   
   font-size: 0;
}
div.box548WhiteGreyTop {
   background: url(images/cms/box_548_wg_top.gif) no-repeat center; 
   height: 6px;   
   font-size: 0;
}
div.box548WhiteRedTop {
   background: url(images/cms/box_548_wr_top.gif) no-repeat center; 
   height: 6px;   
   font-size: 0;
}
div.box548WhiteGreyBottom {
   background: url(images/cms/box_548_wg_bottom.gif) no-repeat center; 
   height: 6px; 
   font-size: 0;  
}
div.box548WhiteRedBottom {
   background: url(images/cms/box_548_wr_bottom.gif) no-repeat center; 
   height: 6px;   
   font-size: 0;
}
div.box548WhiteGreyHeader {
   background: url(images/cms/box_548_g_bg.gif) repeat-y center; 
   padding: 0 15px 5px 15px;
}
div.box548WhiteRedHeader {
   background: url(images/cms/box_548_r_bg.gif) repeat-y center; 
   padding: 0 15px 5px 15px;
   color: #fff;
   font-weight: bold;
   font-size: 1.2em;
}

div.creditText {
   text-align: right;
   padding-right: 15px;
   font-size: 7.5pt;
}

.contactLink {
   text-align: right;
}
.contactLink a,
.contactLink a:visited {
   text-decoration: none;
   border: none;
}
.contactLink a:hover {
   text-decoration: underline;
}
div.workshop,
div.subjectHeader {
  margin-bottom: 15px;
}

div.workshop .box548WhiteContent,
div.subjectHeader .box548WhiteContent {
   padding-bottom: 10px;
}
div.workshop img,
div.subjectHeader img {
   float: left;
}
span.otherWorkshopTitle {
   color: #c00;
   font-weight: bold;
   padding-left: 10px;
   font-size: 11pt;
}
span.otherWorkshopSubTitle {
   font-weight: bold;
}

span.workshopTitle {
   font-family: arial;
   color: #c00; 
   font-size: 1.3em;
   line-height: 1.3em;
   font-weight: bold;
   margin: 0;
   padding-right: 10px;
}
div.videoMenu {
   text-align: center;
   padding: 15px 0;
}
div.videoMenu img {
   border: 1px solid #777;
   margin-bottom: 5px;
}
div.videoMenu a,
div.videoMenu a:visited {
   text-decoration: none;
   border: none;
}
div.videoMenu a:hover {
   text-decoration: underline;
}
div.videoClip {
   text-align: center;
   padding: 15px 0;
}
div#makingChoices {
   text-align: center;
}
div#everyclickBadge  {
   margin: 20px 20px 0 0;
   text-align: right;
}
div#amazon  {
   margin: 10px 0 0 10px;
   text-align: center;
   border: 1px solid #dddddd;
   background: #fff;
  padding: 10px 0;
  width: 156px;
}
div#icraLabel {
   float: right;
   margin: 20px 20px 0 0;
   text-align: center; 
   font-size: 7pt; 
   color: #777; 
   background: transparent; 
   width: 88px;
}
div#icraLabel a,
div#addThis a,
div#everyclickBadge a,
div#amazon a,
div#bookmarks a,
div#bottomMenu a,
div#subFooter a,
div#icraLabel a:visited,
div#addThis a:visited,
div#bookmarks avisited,
div#bottomMenu a:visited,
div#subFooter a:visited {
   border: none;
}
div#bookmarks {
   background: transparent url(images/cms/h3_grey.gif) no-repeat center; 
   height: 32px;
   font-size: 10pt;
   padding: 13px 15px 0 15px;
   margin: 0;
}
div#main div#bookmarks span {
   float: left;
}

div#main #bookmarks ul {
   list-style: none;
   display: inline;
   margin: 0;
}
div#main #bookmarks ul li {
   float: left;
   display: inline;
   padding: 0 0 0 10px;
   margin: 0;
}
/*****  Formbuilder Styles  *****/
div#addressBox {
   padding-bottom: 15px;
}
div#addressBox .box548WhiteContent {
   height: 160px;
}
div#addressBox .addressColumn {
   width: 32%;
   float: left;
}
div#addressBox .addressColumn img {
   padding: 20px;
}
div.contactForm {
   padding: 10px 15px 0 15px;
}
div.contactForm fieldset {
   border: 1px solid #ccc;
   margin-bottom: 15px;
   padding: 0 15px 15px 15px;
}
div.contactForm fieldset div {
   padding-top: 10px;
   height: 25px;
}
div.contactForm fieldset legend {
   font-weight: bold;
   color: #777;
   padding: 0 5px;
}

div.contactForm fieldset label {
   float: left;
   width: 27%;
   text-align: right;
   font-size: 8pt;
}
div.contactForm fieldset input, 
div.contactForm fieldset select,
div.contactForm fieldset textarea
 {
   float: right;
   width: 70%;
}
div.contactForm fieldset textarea {
   height: 120px;
}
div.contactForm .contactFormMessage {
   height: 130px;
}
div.contactForm .submit {
   text-align: right;
}
div#emailOK {
   height: 110px;
}

div.error_message {
   border: 1px solid #ccc;
   margin: 15px;
   padding: 15px 20px;
   color: #c00;
}
div.error_message ul {
   list-style: none;
}
div.error_message ul li {
   margin-bottom: 5px;
}
/*****  History Project Styles  *****/
div.projectLogo { 
   width: 120px;
   float: left;
}

div.projectLogo ul {
   list-style-type: none;
}
div.projectLogo ul li {
  height: 120px;
  padding-bottom: 25px;
}
div.projectText {
   margin-left: 140px;
}

/***** News Styles  *****/
div#latestNews {
   padding: 0 ;
}

div.NewsSummary {
   padding-bottom: 12px;
   margin: 0 ;
}
div.NewsSummaryLink {
   padding-bottom: 2px;
}
div.NewsSummarySummary {
  padding-top: 1px;
}
div.NewsSummaryContent {
   
}
div.NewsSummaryMorelink,
div#NewsPostDetailReturnLink,
div.milestoneSummaryMorelink {
   text-align: right;
   font-size: 90%;
}
div.NewsSummaryMorelink a,
div.NewsSummaryMorelink a:visited {
   padding-bottom: 2px;
}
div#NewsPostDetailDate,
div.NewsSummaryPostdate {
   float: right;
}
div#NewsPostDetailSummary {
   font-weight: bold;
   padding: 5px 10px 10px 10px; 
}
div.milestoneSummary {
   background: transparent url(uploads/images/bullet.gif) left 3px no-repeat;
   padding-bottom: 12px;
   margin: 5px 0;
}
div.milestoneSummaryContent,
div.milestoneSummarySummary {
   padding-left: 37px;   
   padding-top: 0;
}

/***** Postcard Styles  *****/

div#postcardMenu {
   padding: 15px 0;
}

div.postcardType {
   width: 222px;
    height: 195px; 
   float: left;
   margin: 5px 20px;
}
div.postcardTypePic {
   width: 222px;
    height: 173px; 
}
div.postcardTypeText {
   width: 222px;
    height: 22px; 
   line-height: 22px;
}

div.postcardType img {
   border: 1px solid #777; 
}
div#postcardCopy {
   padding: 15px 0;
}

/**** RSS Styles  ****/
div.rssItemFirst {
   padding: 2px 15px 10px 15px;
}
div.rssItem {
   padding: 10px 15px 10px 15px;
   border-top: 1px solid #cccccc;
}
div.rssItemOver {
   padding: 10px 15px 10px 15px;
   border-bottom: 1px solid #cccccc;
}
div.rssItemTitle  {
}
div.rssItemTitle  a {
   font-weight: bold;
   padding-bottom: 2px;
}
div.rssItemText  {
   padding-top: 8px;
}
div#rssSummary .rssItemText  p {
   margin: 0 0 0 0;
   padding: 0 0 0 0;
}
div#rssSummary .rssItemText  a {
   display: none;
}

div.rssItemDate  {
   font-style: italic;
   text-align: right;
   padding-top: 8px;
}
/***** Smoker Myth Styles *****/
div#smokingMyths {
   padding: 0 10px 20px 10px;
}
div.smokerMyth {
   padding: 7px;
}
div.smokerImage {
   float: left;
   width: 80px;
   padding-top: 15px;
}
div.smokerText {
   float; left;
   margin-left: 110px;
   font-size: 10pt;
   line-height: 1.4em;
}
div.smokerText h3 {
   color: #c11;
   font-size: 12pt;
}
/***** Drug Statistics *****/
ul#governanceLinks {
   padding: 0px 30px 0 30px;
}
ul#governanceLinks li {
   padding-bottom: 10px;
   padding-left: 10px;
}

ul#cpPolicy {
   padding: 0px 30px 0 30px;
}
ul#cpPolicy li {
   padding-bottom: 10px;
   padding-left: 10px;
}

/***** Drug Statistics *****/
ul#drugStatistics {
   padding: 15px 30px 0 30px;
}
ul#drugStatistics li {
   padding-bottom: 10px;
}
/***** David's List  *****/
ol#davidsList {
   margin-left: 65px;
   padding: 10px 0;
}
ol#davidsList li {
   padding: 0 0 3px 20px;
}

/***** Assorted  *****/
img#usualSuspects {
   height: 304px;
   width: 548px;
   padding-bottom: 15px;
}
img#parachute {
   height: 209x;
   width: 548px;
   padding-bottom: 15px;
}

/***** Sitemap Styles *****/
div#sitemap {
   padding: 10px 50px;
}
div#sitemap span {
   margin-left: 8px;
   font-size: 80%;
}

div#sitemap ul li a,
div#sitemap ul li ul li a,
{
   margin-bottom: 12px;
}
div#sitemap ul li {
   margin-bottom: 1em;
}
div#sitemap ul li ul {
   margin-bottom: 1em;
   margin-top: 0.5em;
}

div#sitemap ul li ul li {
   margin-left: 30px;
   margin-bottom: 0.5em;
}
span.sitemapDesc {
   line-height: 4ex;
}
/*****  Album Styles  *****/
div.albumList,
div.albumPicture {
   padding-bottom: 15px;
   line-height: 1.4em;
}
div.albumList .box548WhiteContent {
   padding: 15px 20px 20px 20px;
}
div.albumList img {
   border: 1px solid #777;
   height: 64px;
}
div.albumPicture img {
   border: 1px solid #777;
}
div.albumList a,
div.albumList a:visited,
div.albumPicture a,
div.albumPicture a:visited,
div.albumPicture a:hover,
div.albumNav a,
div.albumNav a:visited
{
   border: none;
}
div.albumListThumb {
   width: 110px;
   float: left;
   text-align: center;
}
div.albumListText {
   margin-left: 130px;
}

div.albumListText ol {
   margin: 0 30px 0 20px;
   line-height: 1.4em;
}
div.albumListText ol li {
   margin-bottom: 5px;
}
div.albumListLink {
   text-align: right;
}
div.albumPicturePicture {
   width: 500px;
   padding: 20px 0;
   margin: 0 auto;
}
div.albumPictureComment {
   padding: 5px 15px;
}
div.albumReturn {
   text-align: right;
   padding: 0 10px 15px 0;
}
div.albumNav a,
div.albumNav a:visited {
   font-weight: bold;
}
ol.videoContents {
   list-style-type: decimal;
   list-style-position: outer;
   margin: 20px 30px 10px 40px;
}
ol.videoContents li {
   margin: 0 0 10px;
}
div#trusteeRedBox {
   font-weight: bold;
   text-align: center;
}
div#trusteeRedBoxLink a,
div#trusteeRedBoxLink a:visited {
   color: #fff;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

.workshop ul { list-style: outside; margin-left: 25px; }
.workshop ul li { margin-bottom: 10px; }

/* End of 'LTA: Top menu + 2 columns' */

