/* $Id: zen-fixed.css,v 1.12.2.3 2010/06/26 18:29:22 johnalbin Exp $ */

/* Id: html-reset.css,v 1.6.2.2 2010/06/26 15:36:03 johnalbin Exp */

/**
 * @file
 * HTML Element Styling
 *
 * Ok, I admit it. I fooled you. This isn't a "reset" stylesheet. Instead this
 * is the place where you should set (not reset) the default styling for all
 * HTML elements.
 *
 * @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 * @see http://snook.ca/archives/html_and_css/no_css_reset/
 */


/*
 * Fonts
 *
 * Our font size and line height declarations are based on the following ALA
 * article:
 *   http://www.alistapart.com/articles/howtosizetextincss
 *
 * All modern browsrs use a 16px default font size. Specifying the font-size
 * and line-height in ems (relative to the 16px default font) allows the user
 * to resize the font in the browser and produces the most consistent results
 * across different browsers.
 */
body {
  font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
}

#skip-link,
#page {
  /*
   * To use a 12px font size on the page, delete the 14px declarations.
   * to use a 14px font size on the page, delete the 12px declarations.
   */

  /* Use a 12px base font size with a 16px line height */
  font-size: 0.75em; /* 16px x .75 = 12px */
  line-height: 1.333em; /* 12px x 1.333 = 16px */

  /* Use a 14px base font size with a 18px line height */
 /* font-size: 0.875em;  16px x .875 = 14px */
 /* line-height: 1.286em;  14px x 1.286 = 18px */
}

body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
  /* The following font family declarations are based on the Microsoft core web
   * fonts which are common fonts available on most computer systems. The DejaVu
   * fonts are commonly available on Linux systems where the MS fonts are less
   * common. Tahoma and Helvetica are also widely available.
   *
   * A user's web browser will look at the comma-separated list and will
   * attempt to use each font in turn until it finds one that is available
   * on the user's computer. The final "generic" font (sans-serif or serif)
   * hints at what type of font to use if the web browser doesn't find any
   * of the fonts in the list.

  font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;
  font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;

  font-family: "Courier New", "DejaVu Sans Mono", monospace;

   */

  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
}

pre,
code {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

/*
 * Headings
 */
h1 {
  font-size: 2em;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 0.5em; /* 0.5em is equavalent to 1em in the page's base font.
                           Remember, a margin specified in ems is relative to
                           the element's font-size, not to the pages' base
                           font size. So, for example, if we want a 1em margin
                           (relative to the base font), we have to divide that
                           length by the element's font-size:
                           1em / 2em = 0.5em */
text-indent:-2000px;						   
}

h2 {
  font-size: 1.3em;
  line-height: 1.3em;
  margin-top: 0.667em; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
  margin-bottom: 0.667em;
}

h3 {
  font-size: 1.3em;
  line-height: 1.3em;
  margin-top: 0.769em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
  margin-bottom: 0.769em;
}

h3.offset {
  font-size: 1.3em;
  line-height: 0.8em;
  margin-top: 0.769em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
  margin-bottom: 0px;
}


h4,
h5,
h6 {
  font-size: 1.1em;
  line-height: 1.3em;
  margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
  margin-bottom: 0.909em;
}

/*
 * Block-level elements
 */
p,
ul,
ol,
dl,
pre,
table,
fieldset {
  margin: 1em 0;
}

p.offset {
  margin: 0.5em 0;
}


blockquote {
  margin: 1em 2em;
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  margin-left: 0;
  padding-left: 2em; /* LTR */
}

.block ul,
.item-list ul /* Drupal overrides */ {
  margin: 1em 0;
  padding: 0 0 0 2em; /* LTR */
}

ul ul, ul ol,
ol ol, ol ul,
.block ul ul, .block ul ol,
.block ol ol, .block ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
  margin: 0;
}

li {
  margin: 0;
  padding: 0;
}

.item-list ul li /* Drupal override */ {
  margin: 0;
  padding: 0;
  list-style: inherit;
}

ul.menu li,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {
  margin: 0;
  padding: 0;
}

ul          { list-style-type: disc; }
ul ul       { list-style-type: circle; }
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }

dt {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0 0 0 2em;
  padding: 0;
}


/*
 * Tables
 *
 * Drupal provides table styling which is only useful for its admin section
 * forms, so we override this default CSS. (We set it back in forms.css.)
 */
table {
  border-collapse: collapse;
  /* width: 100%; */ /* Prevent cramped-looking tables */
}

th,
thead th,
tbody th {
  text-align: left; /* LTR */
  padding: 0;
  border-bottom: none;
}

tbody {
  border-top: none;
}

/*
 * Abbreviations
 */
abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

abbr.created /* Date-based "abbreviations" show computer-friendly timestamps which are not human-friendly. */ {
  border: none;
  cursor: auto;
  white-space: normal;
}

/*
 * Images
 */
img {
  border: 0;
}

/*
 * Horizontal rules
 */
hr {
  height: 1px;
  border: 1px solid #666;
}

/*
 * Forms
 */
form {
  margin: 0;
  padding: 0;
}

fieldset {
  margin: 1em 0;
  padding: 0.5em;
}
/* Id: wireframes.css,v 1.10 2009/11/04 21:01:11 johnalbin Exp */

/**
 * @file
 * Wireframes Styling
 *
 * Add wireframes to the basic layout elements.
 */


.with-wireframes #header .section,
.with-wireframes #content .section,
.with-wireframes #navigation .section,
.with-wireframes .region-sidebar-first .section,
.with-wireframes .region-sidebar-second .section,
.with-wireframes #footer .section {
  margin: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}

.with-wireframes .region-page-closure {
  margin-top: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}
/* Id: layout-fixed.css,v 1.17 2009/11/05 12:09:53 johnalbin Exp */

/**
 * @file
 * Layout Styling (DIV Positioning)
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/*
 * Body
 */
body {
}

#page-wrapper,
.region-page-closure {
  /*
   * If you want to make the page a fixed width and centered in the viewport,
   * this is the standards-compliant way to do that. See also the ie6.css file
   * for the necessary IE5/IE6quirks hack to center a div.
   */
margin:0;
  width: 1000px;
}


#page {
}

/*
 * Header
 */
#header {
height:150px;
}

#header .section {
}

#search-box {
}

.region-header {
  clear: both; /* Clear the logo */
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
  position: relative;
  min-height:600px;
  margin: 0 0 30px 0;
}

#main {
}

/*
 * Content
 */
#content,
.no-sidebars #content {
  float: left; /* LTR */
  width: 1000px;
  margin-top: 0;
  margin-left: 0; /* LTR */
  margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
  margin-top: 0;
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}

.sidebar-first #content {
  width: 760px;
  margin-left: 200px; /* LTR */ /* The width of .region-sidebar-first. */
  margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
}

.sidebar-second #content {
  width: 760px;
  margin-left: 0; /* LTR */
  margin-right: -760px; /* LTR */ /* Negative value of #content's width + left margin. */
}

.two-sidebars #content {
  width: 560px;
  margin-left: 200px; /* LTR */ /* The width of .region-sidebar-first */
  margin-right: -760px; /* LTR */ /* Negative value of #content's width + left margin. */
}

#content .section {
  margin: 0;
  padding: 0;
}

/* Facebook Like Button */
iframe.fblikebutton {
position:absolute;
bottom:0px;
left:20px;
z-index:40;
}

/* Default eNewsletter Signup Form */

#block-block-4 {
position:absolute;
top:510px;
left: 790px;
width:200px;
height:50px;
padding:0;
z-index:5;
}

#block-block-4 div.content{
	position:absolute;
	width:200px;
	height:28px;	  
	padding:0;
	font-size:12px;
	font-weight:normal;
	z-index:5;
}

#block-block-4 div.content p{
	height:22px;
padding:0;
margin:8px 0 0 0;
}


#block-block-4 h2.title {
color:#000;
font-size:12px;
font-weight:bold;
margin:0 0 5px 0;
padding:0;
}




/* Default eNewsletter Signup Form */

body.home #block-block-4 {
position:absolute;
top:880px;
left: 700px;
width:200px;
height:60px;
padding:0;
z-index:5;
}


body.home #block-block-4 .content {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #000000;
	border-bottom-color: #000000;
}




/* HOME PAGE STORIES */
#block-views-homeStories-home .view-content {
position:absolute;
/* top:20px; */
left:570px;
width:460px;
margin: 40px 0 0 0;
padding: 0px;
float:left;
}

#block-views-homeStories-home .view-content .views-row-1 {
width:200px;
margin: 0 20px 0 0;
padding:0;
float:left;
}
#block-views-homeStories-home .view-content .views-row-1 .views-field-title {
font-weight:bold;
font-size:15px;
}

#block-views-homeStories-home .view-content .views-row-2 {
width:200px;
margin: 0 0 0 0;
padding:0;
float:left;
}
#block-views-homeStories-home .view-content .views-row-2 .views-field-title {
font-weight:bold;
font-size:15px;
}




/* About Us   */
.page-about {
background-image: url(/tempo/sites/all/themes/bmsg/images/about/grid-back.png);
	background-repeat: no-repeat;
}




/* About Us > Mission  */
.page-about-our-mission {
background-image: url(/tempo/sites/all/themes/bmsg/images/about/mission/grid-back.png);
	background-repeat: no-repeat;
}


/* About Us > History  */
.page-about-our-history {
background-image: url(/tempo/sites/all/themes/bmsg/images/about/history/grid-back.png);
	background-repeat: no-repeat;
}

/* About Us > Our Partners  */
.page-about-our-partners {
background-image: url(/tempo/sites/all/themes/bmsg/images/about/grid-back.png);
	background-repeat: no-repeat;
}

.page-about-our-partners dl {
margin:0px;
padding: 0px;
text-indent:0px;
}


.page-about-our-partners dl dd {
list-style:none;
margin: 0 0 8px 0;
padding: 0px;
text-indent:0px;
line-height:120%;
}



/* About Us > Past Partners  */
.page-about-past-partners {
background-image: url(/tempo/sites/all/themes/bmsg/images/about/grid-back.png);
	background-repeat: no-repeat;
}

/* About Us > Our Staff  */


.page-about-our-staff #block-block-4 {
position:absolute;
top:505px;
left: 790px;
}

.page-about-our-staff {
background-image: url(/tempo/sites/all/themes/bmsg/images/about/grid-back.png);
background-repeat: no-repeat;
}





/* About Us > Consultation  */

.page-about-consultation {
	background-image: url(/tempo/sites/all/themes/bmsg/images/about/consultation/grid-back.png);
	background-repeat: no-repeat;
	background-position: left top;
}


/* related projects */
.page-about-consultation #block-views-rel_proj_consultation-block1 {
width: 240px;
float:left;
margin: 35px 25px 0 20px;
}

#block-views-rel_proj_consultation-block1 .views-field-title {
margin: 0 0 8px 0;
}


/* related publications */
#block-views-abf90c7ca7c131b87161154228d13f73 {
width: 220px;
float:left;
margin: 35px 30px 0 0;
}

#block-views-abf90c7ca7c131b87161154228d13f73 .views-field-title {
margin: 0 0 8px 0;
}


/* related partners */
#block-block-7 {
width: 220px;
float:left;
margin: 35px 0 0 0;
}

#block-block-7 h2.title {
margin: 0 0 0 0;
padding:0;
}
#block-block-7 .content p {
margin: 0 0 8px 0;
padding:0;
}



/* About Us > Research  */

/* related projects */
#block-views-rel_proj_research-block1 {
width: 240px;
float:left;
margin: 100px 25px 0 20px;
}

#block-views-rel_proj_research-block1 .views-field-title {
margin: 0 0 8px 0;
}


/* related publications */
#block-views-56fca6657ded630a649d69dda61a1c7d {
width: 220px;
float:left;
margin: 100px 30px 0 0;
}
#block-views-56fca6657ded630a649d69dda61a1c7d .views-field-title {
margin: 0 0 8px 0;
}

/* related partners */
#block-block-8 {
width: 220px;
float:left;
margin: 100px 0 0 0;
}

#block-block-8 h2.title {
margin: 0 0 0 0;
padding:0;
}
#block-block-8 .content p {
margin: 0 0 8px 0;
padding:0;
}


#researchText {
position:relative;
margin:0;
padding:0;
width: 1000px;
float:left;
}

#researchTextLeft{
position:relative;
width: 490px;
float:left;
}

.page-about-research #social {
position:absolute;
top:850px;
}


/* About Us > Journalist Education  */

#content {
min-height:750px;
}

#block-views-rel_proj_education-block1 {
width: 240px;
float:left;
margin: 90px 20px 0 20px;
}
#block-views-rel_proj_education-block1 .views-field-title {
margin: 0 0 8px 0;
}

/* related publications */
#block-views-08722da02d48d4d5bed5b232f74c40a2 {
width: 230px;
float:left;
margin: 90px 20px 0 0;
}
#block-views-08722da02d48d4d5bed5b232f74c40a2 .views-field-title {
margin: 0 0 8px 0;
}

/* related partners */
#block-block-9 {
width: 220px;
float:left;
margin: 90px 0 0 0;
}

#block-block-9 h2.title {
margin: 0 0 0 0;
padding:0;
}
#block-block-9 .content p {
margin: 0 0 8px 0;
padding:0;
}



/* About Us > Our Projects  */

/* signup form */
.page-about-projects #block-block-4,
.page-about-projects-node  #block-block-4
 {
position:absolute;
top:545px;
left: 810px;
width:200px;
height:60px;
padding:0;
z-index:5;
}




/* About Us > Join Our Team  */
.page-join-our-team {
background-image: url(/tempo/sites/all/themes/bmsg/images/about/history/grid-back.png);
	background-repeat: no-repeat;
}

.page-join-our-team #block-block-4 {
top:510px;
left: 790px;
}


/* signup form */
.node-type-projects #block-block-4
 {
top:245px;
left: 800px;
}





/* Commitment - Food & Activity Environments */


/* eNewsletter form */
.page-our-commitment-to-public-health-food-and-activity-environments #block-block-4,
.page-our-commitment-to-public-health-alcohol-tobacco-and-other-drugs #block-block-4,
.page-our-commitment-to-public-health-health-equity #block-block-4,
.page-our-commitment-to-public-health-violence-prevention #block-block-4,
.page-our-commitment-to-public-health-childrens-and-family-health #block-block-4 {
top:720px;
left: 700px;
}


/* SPOTLIGHT */

.field-field-spotlight-body {
position:absolute;
top:170px;
left:700px;
width:250px;
margin: 0 0 0 0;
z-index:80;
}

.page-about-research .field-field-spotlight-body {
position:absolute;
top:355px;
left:780px;
width:200px;
margin: 0 0 0 0;
z-index:80;
}


.page-our-commitment-to-public-health-food-and-activity-environments #content-area .field-field-spotlight-image,
.page-our-commitment-to-public-health-alcohol-tobacco-and-other-drugs #content-area .field-field-spotlight-image,
.page-our-commitment-to-public-health-health-equity #content-area .field-field-spotlight-image,
.page-our-commitment-to-public-health-violence-prevention #content-area .field-field-spotlight-image,
.page-our-commitment-to-public-health-childrens-and-family-health #content-area .field-field-spotlight-image {
position:absolute;
width: 220px;
top:167px;
left:500px;
z-index:10;

}

.page-our-commitment-to-public-health-food-and-activity-environments #content-area .field-field-spotlight-image .field-label,
.page-our-commitment-to-public-health-alcohol-tobacco-and-other-drugs #content-area .field-field-spotlight-image .field-label,
.page-our-commitment-to-public-health-health-equity #content-area .field-field-spotlight-image .field-label,
.page-our-commitment-to-public-health-violence-prevention #content-area .field-field-spotlight-image .field-label,
.page-our-commitment-to-public-health-childrens-and-family-health #content-area .field-field-spotlight-image .field-label {
display:none;
}



.page-our-commitment-to-public-health-food-and-activity-environments,
.page-our-commitment-to-public-health-alcohol-tobacco-and-other-drugs,
.page-our-commitment-to-public-health-health-equity,
.page-our-commitment-to-public-health-violence-prevention,
.page-our-commitment-to-public-health-childrens-and-family-health {
background-image: url(/tempo/sites/all/themes/bmsg/images/our-commitment/our-commitment-bottom-back.png);
	background-repeat: no-repeat;
	}


/* related projects */
.page-our-commitment-to-public-health-food-and-activity-environments #block-views-rel_proj_food-block1 {
width: 300px;
float:left;
margin: 90px 30px 300px 20px;
}
.page-our-commitment-to-public-health-food-and-activity-environments #block-views-rel_proj_food-block1 .views-field-title {
margin: 0 0 8px 0;
}

/* related publications */
.page-our-commitment-to-public-health-food-and-activity-environments #block-views-9568cfdc87914b4606b019da2c8c6b82 {
width: 300px;
float:left;
margin: 90px 40px 200px 0;
}
.page-our-commitment-to-public-health-food-and-activity-environments #block-views-9568cfdc87914b4606b019da2c8c6b82 .views-field-title {
margin: 0 0 8px 0;
}


/* related partners */
#block-block-10 {
width: 290px;
margin: 90px 20px 300px 0;
float:left;
}

#block-block-10 h2.title {
margin: 0 0 0 0;
padding:0;
}
#block-block-10 .content p {
margin: 0 0 8px 0;
padding:0;
}



/* About > Projects */


body.node-type-projects {
background-image: url(http://bmsg.org/tempo/sites/all/themes/bmsg/images/our-projects/grid.png);
	background-repeat: no-repeat;
	background-position: 750px 355px;
}


.views-exposed-widgets {
margin: 0 0 25px 0;
padding: 20px 0 20px 20px;
background-color:#f5f5f5;
}





/* Commitment - Alcohol, Tobacco & Other Drugs */
/* related projects */
.page-our-commitment-to-public-health-alcohol-tobacco-and-other-drugs #block-views-rel_proj_alcohol-block1 {
width: 300px;
float:left;
margin: 90px 30px 300px 20px;
}
.page-our-commitment-to-public-health-alcohol-tobacco-and-other-drugs #block-views-rel_proj_alcohol-block1 .views-field-title {
margin: 0 0 8px 0;
}

/* related publications */
.page-our-commitment-to-public-health-alcohol-tobacco-and-other-drugs #block-views-rel_publications_alcohol-block2 {
width: 300px;
float:left;
margin: 90px 40px 300px 0;
}
.page-our-commitment-to-public-health-alcohol-tobacco-and-other-drugs #block-views-rel_publications_alcohol-block2 .views-field-title {
margin: 0 0 8px 0;
}



/* related partners */
#block-block-11 {
width: 290px;
margin: 90px 20px 300px 0;
float:left;
}

#block-block-11 h2.title {
margin: 0 0 0 0;
padding:0;
}
#block-block-11 .content p {
margin: 0 0 8px 0;
padding:0;
}


/* Commitment - Health Equity */
/* related projects */
.page-our-commitment-to-public-health-health-equity #block-views-rel_proj_health-block1
 {
width: 300px;
float:left;
margin: 180px 30px 300px 20px;
}
.page-our-commitment-to-public-health-health-equity #block-views-rel_proj_health-block1 .views-field-title {
margin: 0 0 8px 0;
}

/* related publications */
.page-our-commitment-to-public-health-health-equity #block-views-d57c371e6224230f7e71df81eeaa3587 {
width: 300px;
float:left;
margin: 180px 40px 300px 0;
}
.page-our-commitment-to-public-health-health-equity #block-views-d57c371e6224230f7e71df81eeaa3587 .views-field-title {
margin: 0 0 8px 0;
}


/* related partners */
#block-block-12 {
width: 290px;
margin: 180px 20px 300px 0;
float:left;
}

#block-block-12 h2.title {
margin: 0 0 0 0;
padding:0;
}
#block-block-12 .content p {
margin: 0 0 8px 0;
padding:0;
}


/* Commitment - Violence Prevention */
/* related projects */
.page-our-commitment-to-public-health-violence-prevention #block-views-rel_proj_violence-block1
 {
width: 300px;
float:left;
margin: 40px 30px 300px 20px;
}
.page-our-commitment-to-public-health-violence-prevention #block-views-rel_proj_violence-block1 .views-field-title {
margin: 0 0 8px 0;
}
/* related publications */
.page-our-commitment-to-public-health-violence-prevention #block-views-2b97905ccaae4ecacaed19799a19c478 {
width: 300px;
float:left;
margin: 40px 40px 300px 0;
}
.page-our-commitment-to-public-health-violence-prevention #block-views-2b97905ccaae4ecacaed19799a19c478 .views-field-title {
margin: 0 0 8px 0;
}

/* related partners */
#block-block-13 {
width: 290px;
float:left;
margin: 40px 20px 300px 0;
}

#block-block-13 h2.title {
margin: 0 0 0 0;
padding:0;
}
#block-block-13 .content p {
margin: 0 0 8px 0;
padding:0;
}



/* Commitment - Childen's & Family Health */
/* related projects */
.page-our-commitment-to-public-health-childrens-and-family-health #block-views-rel_proj_children-block1 {
width: 300px;
float:left;
margin: 120px 30px 300px 20px;
}
.page-our-commitment-to-public-health-childrens-and-family-health #block-views-rel_proj_children-block1 .views-field-title {
margin: 0 0 8px 0;
}

/* related publications */
.page-our-commitment-to-public-health-childrens-and-family-health #block-views-1647c1270adaa8f350fee0b0ebe0208c {
width: 300px;
float:left;
margin: 120px 40px 300px 0;
}
.page-our-commitment-to-public-health-childrens-and-family-health #block-views-1647c1270adaa8f350fee0b0ebe0208c .views-field-title {
margin: 0 0 8px 0;
}

/* related partners */
#block-block-14 {
width: 290px;
float:left;
margin: 120px 20px 300px 0;
}

#block-block-14 h2.title {
margin: 0 0 0 0;
padding:0;
}
#block-block-14 .content p {
margin: 0 0 8px 0;
padding:0;
}


.page-our-commitment-to-public-health-violence-prevention #spotlightID #anchorLinks {
position:absolute;
top:285px;
left: 185px;
width:240px;
height:22px;
padding:0;
z-index:10;
}

.page-our-commitment-to-public-health-violence-prevention #spotlightID #anchorLinks ul {
list-style-type: none;
color:#ff9900;
}

.page-our-commitment-to-public-health-violence-prevention #spotlightID #anchorLinks ul a {
font-weight:bold;
color:#44687e;
}



#spotlightID {
	position:absolute;
	margin:0;
	padding:0;
	top:260px;
	left:491px;
	width: 509px;
	height:859px;
background-image: url(/tempo/sites/all/themes/bmsg/images/our-commitment/spotlightBackCommitment.png);
	background-repeat: no-repeat;
	}
	
	
#spotlightID #anchorLinks {
position:absolute;
top:285px;
left: 185px;
width:240px;
height:22px;
padding:0;
z-index:10;
}

#spotlightID #anchorLinks ul {
list-style-type: none;
color:#ff9900;
}

#spotlightID #anchorLinks ul a {
font-weight:bold;
color: #44687e;
}



/* Commitment Other Interests */

.page-node-25 #social {
top:610px;
}

/* Commitment - Health Equity */
/* related projects */
#block-views-rel_proj_health-block1 {
width: 220px;
float:left;
margin: 0 20px 0 20px;
}
#block-views-rel_proj_health-block1 .views-field-title {
margin: 0 0 8px 0;
}

/* related publications */
#block-views-d57c371e6224230f7e71df81eeaa3587 {
width: 220px;
float:left;
margin: 0 20px 0 0;
}
#block-views-d57c371e6224230f7e71df81eeaa3587 .views-field-title {
margin: 0 0 8px 0;
}

/* related partners */
#block-views-rel_partners_health-block3 {
width: 220px;
float:left;
margin: 0 20px 0 0;
}
#block-views-rel_partners_health-block3 .views-field-title {
margin: 0 0 8px 0;
}





/* Resources - Tools For Advocates */
#block-views-tools_advocates-tools_adv {
width: 700px;
margin: 0 0 0 146px;
}



#block-views-tools_advocates-tools_adv .views-field-title {
  font-weight: bold;
 padding: 0 0 0 40px;
}

#block-views-tools_advocates-tools_adv .views-field-title p {
  font-weight: normal;
  margin:0;
 
}

                
#block-views-tools_advocates-tools_adv table, #block-views-tools_advocates-tools_adv tbody, #block-views-tools_advocates-tools_adv td, #block-views-tools_advocates-tools_adv tr {
background-color:#FFF;
border:none
}

#block-views-tools_advocates-tools_adv tr {
vertical-align:top;
}

#block-views-tools_advocates-tools_adv td.views-field {
padding: 0 0 60px 0;
}

#block-views-tools_advocates-tools_adv td.views-field-image-attach-images {
padding: 0 40px 0 0;
}

#block-views-tools_advocates-tools_adv td img {
	margin: 0 0 0 0;
	border: 1px solid #CCCCCC;
}




/* Resources - Tools For Journalists */
#block-views-tools_journalists-tools_jrnl {
width: 700px;
margin: 0 0 0 146px;
}


#block-views-tools_journalists-tools_jrnl .views-field-title {
  font-weight: bold;
 padding: 0 0 0 40px;
}

#block-views-tools_journalists-tools_jrnl .views-field-title p{
  font-weight: normal;
  margin:0;
 
}

                
#block-views-tools_journalists-tools_jrnl table, #block-views-tools_journalists-tools_jrnl tbody, #block-views-tools_journalists-tools_jrnl td, #block-views-tools_journalists-tools_jrnl tr {
background-color:#FFF;
border:none
}

#block-views-tools_journalists-tools_jrnl tr {
vertical-align:top;
}

#block-views-tools_journalists-tools_jrnl td img {
margin: 0 0 20px 0;
padding: 0 0 0 0;
border: 1px solid #CCC;

}



/* Resources - Publications */
/* .view-id-main_publication_listing, */
/* #block-views-main_publication_listing-pubs, */


#block-views-main_publication_listing-pubs {
width: 600px;
margin: 0 0 0 141px;
}

.view-id-main_publication_listing {
width: 600px;
margin: 0 0 0 115px;
}



.page-resources-publications .view-id-main_publication_listing,
.page-resources-publications-main .view-id-main_publication_listing {
  margin-left: 0;
}

.view-id-main_publication_listing table.views-table,
#block-views-main_publication_listing-pubs table.views-table,
#block-views-pubs_by_date-pubs table.views-table,
#block-views-pubs_by_topic-pubs table.views-table,
#block-views-pubs_by_type-pubs table.views-table {
background-color:none;
}


.view-id-main_publication_listing  table.views-table tr,
#block-views-main_publication_listing-pubs table.views-table tr {
border:none;
vertical-align:top;
background-color:#FFF;
}


.view-id-main_publication_listing table.views-table td,
#block-views-main_publication_listing-pubs table.views-table td {
padding: 0 0 60px 0;
}


.view-id-main_publication_listing .views-row,
#block-views-main_publication_listing-pubs .views-row {
width: 600px;
margin: 0 0 20px 0;
min-height:100px;
background-color:#CCFF00;
}

.view-id-main_publication_listing .views-field-image-attach-images,
#block-views-main_publication_listing-pubs .views-field-image-attach-images {
	width: 125px;
	margin: 0 0 0 0;
}

.view-id-main_publication_listing .views-field-image-attach-images .image,
#block-views-main_publication_listing-pubs .views-field-image-attach-images .image {
	margin: 0 0 0 0;
	float:left;
	border: 1px solid #CCC;
}


.view-id-main_publication_listing .views-exposed-form {
  margin-left: 125px;
}


#block-views-main_publication_listing-pubs .views-field-title {
/* font-weight: bold; */
 margin: 0 0 0 0;
 padding: 0 0 0 40px;
}


#block-views-main_publication_listing-pubs .views-field-title p {
  font-weight: normal;
  margin:10px 0 0 0;
}


.page-about-our-publications .date-clear-block {
  display: inline;
  clear: none;
  float: left;
}

.page-about-our-publications .views-widget-filter-field_pub_date_value,
.page-about-our-publications .views-widget-sort-by {
  float: none;
  clear: both;
}

.page-about-our-publications .date-date input {
  width: 180px;
}


#content .node-type-publications {
width:460px;
margin: 0 0 0 250px;
}



#content h1.titlePublications {
  font-weight: 100;
width:460px;
  font-size: 2em;
  line-height: 1.3em;
  margin-top: 20px;
  margin-bottom: 20px; /* 0.5em is equavalent to 1em in the page's base font.
                           Remember, a margin specified in ems is relative to
                           the element's font-size, not to the pages' base
                           font size. So, for example, if we want a 1em margin
                           (relative to the base font), we have to divide that
                           length by the element's font-size:
                           1em / 2em = 0.5em */		
margin-left: 270px;				   
text-indent: 0px;
}


.node-type-publications #block-block-6 {
position:absolute;
top:410px;
left: 800px;
width:240px;
height: 36px;
}


#content .node-type-projects {
width:460px;
margin: 0 0 0 250px;
}



#content h1.titleProjects {
  font-weight: bold;
width:460px;
  font-size: 2em;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 0; /* 0.5em is equavalent to 1em in the page's base font.
                           Remember, a margin specified in ems is relative to
                           the element's font-size, not to the pages' base
                           font size. So, for example, if we want a 1em margin
                           (relative to the base font), we have to divide that
                           length by the element's font-size:
                           1em / 2em = 0.5em */		
margin-left: 270px;				   
text-indent: 0px;
}


/* Resources - Projets */
/*#block-views-main_projects_listing-proj_hit { */
.view-id-main_projects_listing {
width: 460px;
margin: 0 0 0 270px;
}

/*#block-views-main_projects_listing-proj_hit .views-field-title { */
.view-id-main_projects_listing .views-field-title {
margin:0;
padding:0;
}

/* #block-views-main_projects_listing-proj_hit .views-field-teaser .field-content p */
.view-id-main_projects_listing .views-field-teaser .field-content p {
margin:0;
padding:0;
}

/*#block-views-main_projects_listing-proj_hit .views-field-view-node { */
.view-id-main_projects_listing .views-field-view-node {
margin:0 0 35px 0;
padding:0;
}




/* Newsroom */
#newsroomLinks {
position:relative;
top:-30px;
left: 570px;
width: 400px;
float:left;
margin: 0 0 0 0;
}

#newsroomLinks td {
padding: 10px 0 15px 0;
}
#newsroomLinks td.alignRight {
	text-align:right;
	padding: 10px 10px 15px 0;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #000000;
}
#newsroomLinks td.linksDesc {
padding: 10px 5px 15px 10px;
}





/* Newsroom Recent Blog Entries*/

#block-views-recent_blog_entries-recent_blog {
position:absolute;
width:470px;
top:425px;
left:20px;
}

#block-views-recent_blog_entries-recent_blog .views-row-1 {
margin: 0 0 30px 0;
}



/*
 * Navigation
 */
#navigation {
position:absolute;
top:10;
left:493px;
/*  float: left; /* LTR */
  width: 600px;
  margin-left: 0; /* LTR */
  margin-right: -100%; /* LTR */ /* Negative value of #navigation's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
  height: 2.3em; /* The navigation can have any arbritrary height. We picked one
                    that is the line-height plus 1em: 1.3 + 1 = 2.3
                    Set this to the same value as the margin-top below. */
}



body.home #navigation {
position:absolute;
top:10;
left:504px;
/*  float: left; /* LTR */
  width: 600px;
  margin-left: 0; /* LTR */
  margin-right: -100%; /* LTR */ /* Negative value of #navigation's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
  height: 2.3em; /* The navigation can have any arbritrary height. We picked one
                    that is the line-height plus 1em: 1.3 + 1 = 2.3
                    Set this to the same value as the margin-top below. */
}


.with-navigation #content,
.with-navigation .region-sidebar-first,
.with-navigation .region-sidebar-second {
  margin-top: 2.3em; /* Set this to the same value as the navigation height above. */
}

#navigation .section {
}

#navigation ul /* Primary and secondary links */ {
  margin: 0;
  padding: 0;
  text-align: left; /* LTR */
}

#navigation li /* A simple method to get navigation links to appear in one line. */ {
	float: left; /* LTR */
	padding: 0 8px; /* LTR  - was 10 px */
/*
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999999;
*/
    border-right: none;
	vertical-align: text-bottom;
	text-transform:lowercase;
}

/* DO show border between top-level nav items */
#navigation li.sf-depth-1 {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999999;
}

#navigation li.last /* A simple method to get navigation links to appear in one line. */ {
	float: left; /* LTR */
	padding: 0 10px 0 10px;
	border-right-style: none;
	border-top-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

/*
 * First sidebar
 */
.region-sidebar-first {
  float: left; /* LTR */
  width: 200px;
  margin-left: 0; /* LTR */
  margin-right: -200px; /* LTR */ /* Negative value of .region-sidebar-first's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-first .section. */
}

.region-sidebar-first .section {
  margin: 0 20px 0 0; /* LTR */
  padding: 0;
}

/*
 * Second sidebar
 */
.region-sidebar-second {
  float: left; /* LTR */
  width: 200px;
  margin-left: 760px; /* LTR */ /* Width of content + sidebar-first. */
  margin-right: -960px; /* LTR */ /* Negative value of .region-sidebar-second's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-second .section. */
}

.region-sidebar-second .section {
  margin: 0 0 0 20px; /* LTR */
  padding: 0;
}

/*
 * Footer
 */
#footer {
position:relative;
padding:0 0 0 20px;
margin:0;
height:200px;
float:left;
width:1000px;
color:#999999;
}

#footer .section {
}

#footer .content {
float:right;
padding: 0 20px 0 0;
}

#footer .section li {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999999;
	vertical-align: text-bottom;
	text-transform:lowercase;
}
#footer .section li.last {
	border: none;
	vertical-align: text-bottom;
	text-transform:lowercase;
}


/*
 * Closure
 */
.region-page-closure /* See also the #page-wrapper declaration above that this div shares. */ {
}

/*
 * Prevent overflowing content
 */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.region-page-closure {
  overflow: visible;
  word-wrap: break-word; /* A very nice CSS3 property */
}

#navigation {
/*  overflow: hidden; /* May need to be removed if using a dynamic drop-down menu */
}

/*
 * If a div.clearfix doesn't have any content after it and its bottom edge
 * touches the bottom of the viewport, Firefox and Safari will mistakenly
 * place several pixels worth of space between the bottom of the div and the
 * bottom of the viewport. Uncomment this CSS property to fix this.
 * Note: with some over-large content, this property might cause scrollbars
 * to appear on the #page-wrapper div.
 */
/*
#page-wrapper {
  overflow-y: hidden;
}
*/
/* Id: page-backgrounds.css,v 1.8 2009/11/04 20:57:49 johnalbin Exp */

/**
 * @file
 * Page Background Styling
 *
 * The default layout method of Zen doesn't give themers equal-height columns.
 * However, equal-height columns are difficult to achieve and totally
 * unnecessary. Instead, use the Faux Columns method described in the following
 * ALA article:
 *   http://www.alistapart.com/articles/fauxcolumns/
 */


body {
}

body.home {
margin:0;
padding:0;
	background-image: url(/tempo/sites/all/themes/bmsg/images/home/home-back2.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

body.home a {
color:#44687e;
}

body.home #main-wrapper {
/* background-color:#00CC66; */
min-height:910px;
}

body.home .views-field-teaser a:hover {
color:#ff9900;
}

body.home .view-recent-blog-entriesHOME a:hover {
color:#ff9900;
}

body.home #homeTextIntro1 {
position:absolute;
top: 175px;
left: 250px;
width:140px;
color:#ff9900;
font-size:1.45em;
line-height:130%;
text-align:right;
}

body.home #homeTextIntro1 a:hover {
color:#ff9900;
}


body.home #homeTextIntro2 {
position:absolute;
top: 470px;
left: 408px;
width:240px;
color:#ff9900;
font-size:1.45em;
line-height:130%;
}


body.home #commitmentGrid {
position:absolute;
top: 617px;
left: 0px;
width:390px;
color:#ff9900;
font-size:1.45em;
line-height:130%;
margin:0;
padding:0;
}
body.home #commitmentGrid a:hover{
color:#ff9900;
}


body.home #gridRow1 {
width:390px;
height:102px;
margin:10px 0 0 0;
padding:0;
}

body.home #gridRow1 img{
width:130px;
height:102px;
margin:0;
padding:0;
float:left;
}
body.home #gridRow1 img a {
margin:0;
padding:0;
}

body.home #gridRow2 {
width:390px;
height:98px;
margin:0 0 0 0;
padding:0;
}
body.home #gridRow2 img{
width:130px;
height:98px;
margin:0;
padding:0;
float:left;
}


body.home #aboutUsLink {
position:absolute;
top: 680px;
left: 708px;
width:120px;
color:#ff9900;
font-size:1.45em;
line-height:130%;
}

body.home #aboutUsLink a {
color:#44687e;
}

body.home #aboutUsLink a:hover {
color:#ff9900;
}


body.home #resoucesLink {
position:absolute;
top: 745px;
left: 708px;
width:120px;
color:#ff9900;
font-size:1.45em;
line-height:130%;
}

body.home #resoucesLink a {
color:#44687e;
}
body.home #resoucesLink a:hover {
color:#ff9900;
}



body.home #newsroomLink {
position:absolute;
top: 810px;
left: 708px;
width:120px;
color:#ff9900;
font-size:1.45em;
line-height:130%;
}

body.home #newsroomLink a {
color:#44687e;
}
body.home #newsroomLink a:hover {
color:#ff9900;
}


body.home #edit-search-theme-form-1-wrapper label /* Label that says "Search this site:" */ {
width:41px;
float:left;
text-indent: -9999px;
background-image: url(/tempo/sites/all/themes/bmsg/images/searchTitle.png);
	background-repeat: no-repeat;
}


body.home #search-box /* Wrapper for the search form */ {
	position:absolute;
	width:240px;
	left:235px;
	top:10px;
	margin:0;
	padding:0;
	height:18px;
	}

body.home #search {
margin:0;
padding:0;
width:153px;
height:16px;
border: 1px solid #000000;
}


body.home #edit-search-theme-form-1-wrapper input {
margin: 0 0 0 0;
padding: 0 0 0 0;
height:14px;
width:100px;
float:left;
}

body.home  #edit-search-theme-form-1-wrapper #edit-search-theme-form-1 {
margin:0;
	padding:0;
	height:11px;
	font-size:10px;
	line-height:10px;
}



body.home #search-box #edit-submit-1 {
	color:#996600;
	background-image: url(/tempo/sites/all/themes/bmsg/images/searchButton.png);
	background-repeat: no-repeat;
	width:47px;
	height:16px;
	margin:0;
	padding:0;
	text-indent: -9999px;
	border:none;
	float:left;
}



body.home #block-views-81c6e6986b6bc7f11e7cdd47e2f98e4f {
position:absolute;
z-index:10;
width:150px;
top:490px;
left:860px;

}

body.home #socialHOME {
position:absolute;
top: 820px;
left:970px;
width:31px;
margin:0;
padding:0;
vertical-align:top;
background-color:#FFF;
}

body.home #socialHOME ul {
list-style:none;
margin:0;
padding:0;
}


body.home #socialHOME li {
width:31px;
height:34px;
margin:0;
padding:0;
text-indent:0px;
}
body.home #socialHOME li img {
width:31px;
margin:0;
padding:0;
}


body.home #signUpDiv {
position:absolute;
top:870px;
left: 700px;
width:200px;
height:22px;
padding:0;
z-index:5;
}

body.home #signUpDiv #formDiv {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #666666;
	border-bottom-color: #666666;
}

body.home #signUpDiv .emailSignup {
height:20px;
border:none;
}

body.home #signUpDiv form .emailSignup {
color:#999999;
}

body.home #footer a:hover {
color:#ff9900;
}



#page-wrapper {
}

#page {
}

#header {
}

#header .section {
}

#main-wrapper {
}

#main {
}

#footer {


}

#footer .section {
}
/* Id: tabs.css,v 1.2 2009/08/12 08:03:53 johnalbin Exp */

/**
 * @file
 * Tabs Styling
 *
 * Adds styles for the primary and secondary tabs.
 *
 * Compare this with default CSS found in the system module's stylesheet (a copy
 * of which is in drupal6-reference.css, line 510.)
 */


div.tabs {
  margin: 0 0 5px 0;
}

ul.primary {
  margin: 0;
  padding: 0 0 0 10px; /* LTR */
  border-width: 0;
  list-style: none;
  white-space: nowrap;
  line-height: normal;
  background: url(../images/tab-bar.png) repeat-x left bottom;
}

ul.primary li {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}

ul.primary li a {
  display: block;
  height: 24px;
  margin: 0;
  padding: 0 0 0 5px; /* width of tab-left.png */
  border-width: 0;
  font-weight: bold;
  text-decoration: none;
  color: #44687e;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left -38px;
}

ul.primary li a .tab {
  display: block;
  height: 20px; /* 24px (parent) - 4px (padding) */
  margin: 0;
  padding: 4px 13px 0 6px;
  border-width: 0;
  line-height: 20px;
  background: url(../images/tab-right.png) no-repeat right -38px;
}

ul.primary li a:hover {
  border-width: 0;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left -76px;
}

ul.primary li a:hover .tab {
  background: url(../images/tab-right.png) no-repeat right -76px;
}

ul.primary li.active a,
ul.primary li.active a:hover {
  border-width: 0;
  color: #ff9900;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left 0;
}

ul.primary li.active a .tab,
ul.primary li.active a:hover .tab {
  background: url(../images/tab-right.png) no-repeat right 0;
}

ul.secondary {
  margin: 0;
  padding: 0 0 0 5px; /* LTR */
  border-bottom: 1px solid #c0c0c0;
  list-style: none;
  white-space: nowrap;
  background: url(../images/tab-secondary-bg.png) repeat-x left bottom;
}

ul.secondary li {
  float: left; /* LTR */
  margin: 0 5px 0 0;
  padding: 5px 0;
  border-right: none; /* LTR */
}

ul.secondary a {
  display: block;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 1px solid #c0c0c0;
  text-decoration: none;
  color: #777;
  background: url(../images/tab-secondary.png) repeat-x left -56px;
}

ul.secondary a .tab {
  display: block;
  height: 18px; /* 24px (parent) - 6px (padding) */
  margin: 0;
  padding: 3px 8px;
  line-height: 18px;
}

ul.secondary a:hover {
  background: url(../images/tab-secondary.png) repeat-x left bottom;
}

ul.secondary a.active,
ul.secondary a.active:hover {
  border: 1px solid #c0c0c0;
  color: #000;
  background: url(../images/tab-secondary.png) repeat-x left top;
}
/* Id: messages.css,v 1.3 2009/08/12 08:37:42 johnalbin Exp */

/**
 * @file
 * Message Styling
 *
 * Sensible styling for Drupal's error/warning/status messages.
 */


div.messages,
div.status,
div.warning,
div.error /* Important messages (status, warning, and error) for the user */ {
  min-height: 21px;
  margin: 0 1em 5px 1em;
  border: 2px solid #ff7;
  padding: 5px 5px 5px 35px; /* LTR */
  color: #000;
  background-color: #ffc;
  background-image: url(../images/messages-status.png);
  background-repeat: no-repeat;
  background-position: 5px 5px; /* LTR */
}

div.status /* Normal priority messages */ {
}

div.warning /* Medium priority messages */ {
  border-color: #fc0;
  background-image: url(../images/messages-warning.png);
}

div.warning,
tr.warning {
  color: #000; /* Drupal core uses #220 */
  background-color: #ffc;
}

div.error /* High priority messages. See also the .error declaration in pages.css. */ {
  /* border: 1px solid #d77; */ /* Drupal core uses: 1px solid #d77 */
  border-color: #c00;
  background-image: url(../images/messages-error.png);
}

div.error,
tr.error {
  color: #900; /* Drupal core uses #200 */
  background-color: #fee;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}
/* Id: pages.css,v 1.18.2.3 2010/06/26 17:18:58 johnalbin Exp */

/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */


/*
 * Body
 */
body {
  margin: 0;
  padding: 0;
}


/* signup form */

.page-our-commitment-to-public-health #block-block-4 {
position:absolute;
top:970px;
left: 800px;
}

.page-our-commitment-to-public-health #block-block-4 .content {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #000000;
	border-bottom-color: #000000;
}



.page-our-commitment-to-public-health #social {
top:800px;
}


/* resources page bg image */
.page-resources {
background-image: url(/tempo/sites/all/themes/bmsg/images/background/resourcesBack.jpg);
	background-repeat: no-repeat;
}


.page-resources  #main-wrapper {
min-height:750px;
}

.page-resources #content-area{
position:absolute;
width:510px;
left: 491px;
  top: 100px;
}

.page-resources #content-area #spotlight {
z-index:5;
position:absolute;
top:0px;
left:0px;
height: 350px;
margin:0;
padding:0;
width: 501px;
background-image: url(/tempo/sites/all/themes/bmsg/images/resources/spotlight/spotlight-back.png);
	background-repeat: no-repeat;
	float:left;
}

.page-resources #content-area #spotlight #spotlightImage {
position:relative;
width:170px;
margin: 60px 0 0 12px;
text-align:center;
float:left;

}
.page-resources #content-area #spotlight #spotlightText {
width:290px;
margin: 25px 0 0 12px;
float:left;
position:relative;
}


.page-resources #content-area #resourceLinks {
	width:480px;
	top:320px;
	margin: 25px 0 0 0;
	padding:0;
	position:relative;
	float:left;
	background-image: url(/tempo/sites/all/themes/bmsg/images/resources/spotlight/resourceLinksBack.png);
	background-repeat: repeat-y;
	font-style:normal;
}


/* research page bg image */
.page-about-research {
	background-image: url(/tempo/sites/all/themes/bmsg/images/about/research/researchBack.png);
	background-repeat: no-repeat;
	background-position: 0px 500px;
}


/* signup form */
.page-about-research #block-block-4 {
top:780px;
left: 780px;
}




/* Media Advocacy page bg image */
.page-about-media-advocacy-training {
	background-image: url(/tempo/sites/all/themes/bmsg/images/about/training/training.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

/* signup form */
.page-about-media-advocacy-training #block-block-4 {
top:1310px;
left: 785px;
}


.page-about-media-advocacy-training .field-field-spotlight-title {
position:absolute;
top:338px;
left:785px;
font-size: 1.3em;
margin: 0;
width:200px;
z-index:25;
}

.page-about-media-advocacy-training .field-field-spotlight-body {
position:absolute;
top:380px;
left:785px;
margin: 0;
width:200px;
z-index:26;
}

.page-about-media-advocacy-training #social {
position:absolute;
	top: 1340px;
}



/* Journalist Education Page */

.page-about-journalist-education {
background-image: url(/tempo/sites/all/themes/bmsg/images/about/journalist-education/jrnl-ed-back.png);
	background-repeat: no-repeat;
}


/* signup form  for Publications Page*/

/*.page-node-4 #page #DefaultSignUpDiv   Main News page */
.page-node-4 #block-block-4 {
top: 1000px;
left: 20px;
width:180px;
}
.page-node-4 #block-block-4 .content {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #000000;
	border-bottom-color: #000000;
}



/* signup form  for Resources Page*/

.page-resources #block-block-4 {
top:850px;
left: 20px;
}

.page-resources #block-block-4 .content {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #000000;
	border-bottom-color: #000000;
}

.page-resources-publications-main #block-block-4,
.page-resources-publications #block-block-4,
.page-resources-framing-101 #block-block-4,
.page-resources-media-advocacy-101 #block-block-4,
.page-newsroom-bmsg-in-the-news #block-block-4,
.page-node-162 #block-block-4,
.page-node-395 #block-block-4,
.page-node-396 #block-block-4,
.page-node-397 #block-block-4,
.node-type-publications #block-block-4,
.node-type-news-release #block-block-4,
.page-newsroom-in-the-news #block-block-4,
.section-newsroom.page-views #block-block-4 {
top:300px;
left: 800px;
}

.page-resources-publications-main #block-block-4 {
top:270px;
}


.node-type-projects #block-block-4 {
top:400px;
left: 800px;
}


.page-about-our-projects #block-block-4 {
top:550px;
left: 810px;
}


.page-node-25 #block-block-4 .content,
.page-node-27 #block-block-4 .content,
.page-resources-publications-main #block-block-4 .content,
.page-resources-publications #block-block-4 .content,
.page-resources-framing-101 #block-block-4 .content,
.page-resources-media-advocacy-101 #block-block-4 .content,
.section-newsroom.page-views #block-block-4 .content,
.page-node-162 #block-block-4 .content,
.page-news-news-releases #block-block-4 .content,
.page-node-395 #block-block-4 .content,
.page-node-396 #block-block-4 .content,
.page-node-397 #block-block-4 .content,
.node-type-publications #block-block-4 .content,
.node-type-news-release #block-block-4 .content  {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #000000;
	border-bottom-color: #000000;
}

.page-node-25 {
top: 730px;
}

.page-newsroom-bmsg-in-the-news #block-block-4,
.page-newsroom-in-the-news #block-block-4,
.section-newsroom.page-views #block-block-4,
.page-blog #block-block-4 {
position:absolute;
top:430px;
left: 800px;
width:180px;
}


.section-newsroom.page-views #block-block-4 .content,
.page-blog #block-block-4 .content {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #000000;
	border-bottom-color: #000000;
}



/* HIDE eNewsletter Form */
.page-node-33 #block-block-4,
.page-node-34 #block-block-4,
.page-node-371 #block-block-4 {
display:none;
}






/*
 * The skip navigation link will be completely hidden until a user tabs to the
 * link. See http://www.webaim.org/techniques/skipnav/
 */
#skip-link a,
#skip-link a:visited {
  position: absolute;
  display: block;
  left: 0;
  top: -500px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-align: center;
  background-color: #666;
  color: #fff;
}

#skip-link a:hover,
#skip-link a:active,
#skip-link a:focus {
  position: static;
  width: 100%;
  height: auto;
  padding: 2px 0 3px 0;
}

/*
 * Header
 */
#header {
}

#header .section {
}

#logo /* Wrapping link for logo */ {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}

#logo img {
  vertical-align: bottom;
}

#name-and-slogan /* Wrapper for website name and slogan */ {
}

h1#site-name,
div#site-name /* The name of the website */ {
  margin: 0;
  font-size: 2em;
  line-height: 1.3em;
}

#site-name a:link,
#site-name a:visited {
  color: #000;
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

#site-slogan /* The slogan (or tagline) of a website */ {
}

.region-header /* Wrapper for any blocks placed in the header region */ {
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
}

#main {
}

/*
 * Content
 */
#content {
margin:0;
padding:0;
}

#content .section {
margin:0;
padding:0;
}

#mission /* The mission statement of the site (displayed on homepage) */ {
}

.region-content-top /* Wrapper for any blocks placed in the "content top" region */ {
}

.breadcrumb /* The path to the current page in the form of a list of links */ {
height:16px;
  padding: 0 0 0 20px; /* Undo system.css */
  margin:0;
  text-transform:lowercase;
}

.page-resources-eye-on-marketers .breadcrumb,
.page-resources-publications-main .breadcrumb,
.page-node-34 .breadcrumb,
.page-resources-framing-101 .breadcrumb,
.page-resources-media-advocacy-101 .breadcrumb,
.page-newsroom-bmsg-in-the-news .breadcrumb,
.page-node-371 .breadcrumb,
.page-newsroom-in-the-news .breadcrumb,
.page-resources-publications .breadcrumb,
.section-newsroom.page-views .breadcrumb {
float:right;
height:16px;
  padding: 0 0 0 20px; /* Undo system.css */
  margin:0;
  text-transform:lowercase;
}


h1.title, /* The title of the page */
h2.title, /* Block title or the title of a piece of content when it is given in a list of content */
h3.title /* Comment title */ {
  margin: 0;
}

h1.title {
text-indent: -2000px;
font-size:6px;
}

tr.even /* Some tables have rows marked even or odd. */ {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

tr.odd {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

div.messages /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */ {
}

div.status /* Normal priority messages */ {
}

div.warning,
tr.warning /* Medium priority messages */ {
  /* border: 1px solid #f0c020; */ /* Drupal core uses: 1px solid #f0c020 */
}

div.error,
tr.error /* High priority messages. See also the .error declaration below. */ {
}

.error /* Errors that are separate from div.messages status messages. */ {
  /* color: #e55; */ /* Drupal core uses a #e55 background */
}

.warning /* Warnings that are separate from div.messages status messages. */ {
  /* color: #e09010; */ /* Drupal core uses a #e09010 background */
}

div.tabs /* See also the tabs.css file. */ {
}

.help /* Help text on a page */ {
  margin: 1em 0;
}

.more-help-link /* Link to more help */ {
  font-size: 0.85em;
  text-align: right;
}

#content-area /* Wrapper for the actual page content */ {
padding: 0 0 0 20px;
}

#content-area a, a:link, a:visited /* Wrapper for the actual page content */ {
color:#7d99aa;
}
#content-area a:hover /* Wrapper for the actual page content */ {
color:#ff9900;
}


ul.links /* List of links */ {
  margin: 1em 0;
  padding: 0;
}

ul.links.inline {
  margin: 0;
  display: inline;
}

ul.links li {
  display: inline;
  list-style-type: none;
  padding: 0 0.5em;
}

.pager /* A list of page numbers when more than 1 page of content is available */ {
  clear: both;
  margin: 1em 0;
  text-align: center;
}

.pager a,
.pager strong.pager-current /* Each page number in the pager list */ {
  padding: 0.5em;
}

.feed-icons /* The links to the RSS or Atom feeds for the current list of content */ {
  margin: 1em 0;
}

.more-link /* Aggregator, blog, and forum more link */ {
  text-align: right; /* LTR */
}

.region-content-bottom /* Wrapper for any blocks placed in the "content bottom" region */ {
}

.region-content-bottom h2.title {
text-transform:lowercase;
}


/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */
.region-sidebar-first {
}

.region-sidebar-first .section {
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second
 * (see the layout.css file.)
 */
.region-sidebar-second {
}

.region-sidebar-second .section {
}

/*
 * Footer
 */
#footer {
}

#footer .section {
}

#footer-message /* Wrapper for the footer message from Drupal's "Site information"
                   and for any blocks placed in the footer region */ {
		
}

.region-footer {
}

/*
 * Closure
 */
.region-page-closure /* Wrapper for any blocks placed in the closure region */ {
}

/*
 * Drupal boxes
 *
 * Wrapper for Comment form, Comment viewing options, Menu admin, and
 * Search results.
 */
.box /* Wrapper for box */ {
}

.box h2 /* Box title */ {
}

.box .content /* Box's content wrapper */ {
}

/*
 * Markup free clearing (See: http://www.positioniseverything.net/easyclearing.html )
 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user. Must
 * not be used for focusable elements (such as links and form elements) as this
 * causes issues for keyboard only or voice recognition users. "!important" is
 * used to prevent unintentional overrides.
 */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
/* Id: block-editing.css,v 1.3 2009/11/05 14:01:26 johnalbin Exp */

/**
 * @file
 * Zen's rollover edit links for blocks.
 */


div.block.with-block-editing {
  position: relative;
}

div.block.with-block-editing div.edit {
  display: none;
  position: absolute;
  right: 0; /* LTR */
  top: 0;
  z-index: 40;
  border: 1px solid #eee;
  padding: 0 2px;
  font-size: 0.75em;
  background-color: #fff;
}

div.block.with-block-editing:hover div.edit {
  display: block;
}
/* Id: blocks.css,v 1.4 2009/11/05 11:05:39 johnalbin Exp */

/**
 * @file
 * Block Styling
 */


.block /* Block wrapper */ {
  margin-bottom: 1em;
}

.block.region-odd /* Zebra striping for each block in the region */ {
}

.block.region-even /* Zebra striping for each block in the region */ {
}

.block.odd /* Zebra striping independent of each region */ {
}

.block.even /* Zebra striping independent of each region */ {
}

.region-count-1 /* Incremental count for each block in the region */ {
}

.count-1 /* Incremental count independent of each region */ {
}

.block h2.title /* Block title */ {
}

.block .content /* Block's content wrapper */ {
}

#block-aggregator-category-1 /* Block for the latest news items in the first category */ {
}

#block-aggregator-feed-1 /* Block for the latest news items in the first feed */ {
}

#block-block-1 /* First administrator-defined block */ {
}

#block-blog-0 /* "Recent blog posts" block */ {
}

#block-book-0 /* "Book navigation" block for the current book's table of contents */ {
}

#block-comment-0 /* "Recent comments" block */ {
}

#block-forum-0 /* "Active forum topics" block */ {
}

#block-forum-1 /* "New forum topics" block */ {
}

#block-menu-primary-links /* "Primary links" block */ {
}

#block-menu-secondary-links /* "Secondary links" block */ {
}

#block-node-0 /* "Syndicate" block for primary RSS feed */ {
}

#block-poll-0 /* "Most recent poll" block */ {
}

#block-profile-0 /* "Author information" block for the profile of the page's author */ {
}

#block-search-0 /* "Search form" block */ {
background-color:#3399CC;
}

#block-statistics-0 /* "Popular content" block */ {
}

#block-user-0 /* "User login form" block */ {
}

#block-user-1 /* "Navigation" block for Drupal navigation menu */ {
}

#block-user-2 /* "Who's new" block for a list of the newest users */ {
}

#block-user-3 /* "Who's online" block for a list of the online users */ {
}
/* Id: navigation.css,v 1.5 2009/11/04 19:42:41 johnalbin Exp */

/**
 * @file
 * Navigation Styling
 */


/*
 * The active item in a Drupal menu
 */
li a, a:link, a:visited {
  color: #44687e;
  text-decoration:none;
}

/*
 * The active item in a Drupal menu
 */
li a.active, a:hover, li.active-trail a {
  color: #ff9900;
}

/*
 * Navigation bar
 */
#navigation {
}

.region-navigation {
}

/*
 * Primary and Secondary menu links
 */
#main-menu {
  font-size: 12px; /* 16px x .75 = 12px */
  color:#44687e;
}




#secondary-menu {
}

/*
 * Menu blocks
 */
.block-menu {
}

/*
 * "Menu block" blocks. See http://drupal.org/project/menu_block
 */
.block-menu_block {
}
/* Id: panels-styles.css,v 1.1.2.1 2009/12/12 15:31:54 johnalbin Exp */

/**
 * @file
 * Panels Styling
 */


/* Id: views-styles.css,v 1.1 2009/08/12 04:25:15 johnalbin Exp */

/**
 * @file
 * Views Styling
 */


/* Id: nodes.css,v 1.6 2009/11/02 15:37:29 johnalbin Exp */

/**
 * @file
 * Node Styling
 *
 * Style anything that isn't in the $content variable.
 */


.node /* Node wrapper */ {
}

.node-sticky /* A sticky node (displayed before others in a list) */ {
}

.node-unpublished /* Unpublished nodes */ {
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

.node-unpublished div.unpublished,
.comment-unpublished div.unpublished /* The word "Unpublished" displayed underneath the content. */ {
  height: 0;
  overflow: visible;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  word-wrap: break-word; /* A very nice CSS3 property */
}

.node-by-viewer /* A node created by the current user */ {
}

.node-teaser /* A node displayed as teaser */ {
}

/* All nodes are given a node-type-FOO class that describes the type of
 * content that it is. If you create a new content type called
 * "my-custom-type", it will receive a "node-type-my-custom-type" class.
 */
.node-type-page /* Page content node */ {
}

.node-type-story /* Story content node */ {
}

.node-type-blog #block-block-4 /* Page content node */ {
top:430px;
}


.node-type-blog #block-block-4 .content /* Page content node */ {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #000000;
	border-bottom-color: #000000;
}

.node-type-blog #block-block-5 {
position:absolute;
top:510px;
left: 800px;
width:240px;
}

.page-blog #block-block-5 {
position:absolute;
top:510px;
left: 800px;
width:240px;
}

.page-blog #social {
top:500px;
}

.page-blog #block-block-6 {
position:absolute;
top:510px;
left: 800px;
width:240px;
height: 36px;
}
.node-type-blog #block-block-6 {
position:absolute;
top:520px;
height: 36px;
left: 800px;
width:240px;
}
.node-type-blog #block-block-6 a{
float:left;
}
.page-blog #block-block-6 a{
float:left;
}


#BLOGcontent-area {
width:460px;
margin: 0 0 0 270px;
padding: 0 20px 0 0;
}

.node-type-blog h1.title /* Page content node */ {
color:#000;
/* color:#767e83; */
font-weight:300;
font-size:1.8em;
text-indent:0px;
margin: 0 0 0 270px;
}

.node-type-blog h2.title /* Page content node */ {
color:#767e83;
font-weight:300;
font-size:1.8em;
}

.node-type-blog h2.title a, .node-type-blog h2.title a:link, .node-type-blog h2.title a:visited /* Page content node */ {
color:#44687e;
}

.node-type-blog h2.title a:hover /* Page content node */ {
color:#ff9900;
}

.node-type-blog a, a:link, a:visited /* Page content node */ {
color:#44687e;
}

.node-type-blog a:hover /* Page content node */ {
color:#ff9900;
}

.node-type-blog span.postedDate /* Page content node */ {
color:#767e83;
font-weight:300;
font-size:0.9em;
font-style:italic;
}


.page-blog #content {

}

div #block-views-archive-block {
position:absolute;
top: 400px;
left:800px;
width:220px;
margin:0;
padding:0;
vertical-align:top;
}



/* In The News */


.page-newsroom-bmsg-at-a-glance {
	background-image:url(/tempo/sites/all/themes/bmsg/images/inTheNews/bg-glance-151.png);
	background-repeat: no-repeat;
}

.page-newsroom-bmsg-at-a-glance #intro{
width:450px;
margin: 0 0 60px 270px;	
padding: 0;
}

.page-newsroom-bmsg-at-a-glance #bottom{
	width:770px;
	
}

.page-newsroom-bmsg-at-a-glance #botLeft{
	width:480px;
	float:left;
	margin: 0 30px 0 0;
	
}

.page-newsroom-bmsg-at-a-glance #botRight{
width:225px;
top:650px;
left:525px;
float:left;
}


/* In The News */


.page-newsroom-bmsg-in-the-news {
	background-image: url(/tempo/sites/all/themes/bmsg/images/inTheNews/grid-back.png);
	background-repeat: no-repeat;
	background-position: 15px 37px;
}



/* Page content node */
.page-newsroom-bmsg-in-the-news,
.page-newsroom-in-the-news,
.section-newsroom.page-views {
width:450px;
margin: 0 0 40px 0;
padding: 0 0 40px 0;
}


.node-type-news  /* Page content node */ {
width:460px;
margin: 0 0 40px 0;
padding: 0 0 40px 0;
}

.node-type-news #content-area {
margin: 0 0 0 270px;
}


.page-node-ath #content h1/* Page content node */ {
text-indent:-2000px;
font-size:9px;
}


#content h1.Newstitle/* Page content node */ {
font-size:21px;
text-indent:0;
color:#767e83;
margin: 0 0 0 290px;
}

.view-In-The-News {
width:460px;
margin: 0 0 0 270px;
padding: 0 20px 0 0;
}

.view-In-The-News .views-field-title {
color:#767e83;
font-size:21px;
line-height:120%;
margin: 0 0 12px 0;
}

.view-In-The-News span.date-display-single,
.view-Eye-On-Marketers span.date-display-single,
.view-news-releases span.date-display-single {
	font-style:italic;
}

.view-In-The-News .views-field-teaser p,
.view-Eye-On-Marketers .views-field-teaser p {
  margin: 12px 0 0 0;
}

.page-newsroom-bmsg-in-the-news .views-row, .page-newsroom-in-the-news .views-row,
.section-newsroom.page-views .views-row {
	margin: 0 0 35px 0;
	padding: 0 0 30px 0;
	background-image:url(/tempo/sites/all/themes/bmsg/images/inTheNews/hr-inTheNews.png);
	background-repeat: no-repeat;
	background-position: -40px bottom;
}


/* Page content node */
.page-newsroom-bmsg-in-the-news h2.title,
.page-newsroom-in-the-news h2.title,
.section-newsroom.page-views h2.title {
color:#767e83;
font-weight:300;
font-size:1.8em;
}



/* force multiple authors to display inline */
body.section-newsroom div.field-item {
  display: inline;
}


/* News Releases */


.view-news-releases /* Page content node */ {
width:450px;
margin: 0 0 40px 0;
padding: 0 0 40px 0;
margin: 0 0 0 270px;
}

.view-news-releases h1/* Page content node */ {
text-indent:-2000px;
font-size:9px;
}


.page-news-news-releases .views-field-title {
font-size:21px;
line-height:110%;
margin:0;
padding:0;
}

.page-news-news-releases .views-field-teaser {
margin:0;
padding:0;
}

.page-news-news-releases .views-field-teaser p {
margin:0;
padding:0;
}


.page-news-news-releases .views-row {
	margin: 0 0 35px 0;
	padding: 0 0 30px 0;
	background-image:url(/tempo/sites/all/themes/bmsg/images/inTheNews/hr-inTheNews.png);
	background-repeat: no-repeat;
	background-position: -40px bottom;
}


.page-news-news-releases .views-field-view-node span.field-content {
margin:-20px 0 0 0;
padding:0;
z-index:5;
}

.page-news-news-releases h2.title /* Page content node */ {
color:#767e83;
font-weight:300;
font-size:1.8em;
}

.page-news-news-releases #block-block-4 {
position:absolute;
top:350px;
left: 800px;
width:200px;
height:60px;
padding:0;
z-index:5;
}

.node-type-news-release #content-area {
width:480px;
margin: 0 0 0 250px;
}

.node-type-news-release #block-block-6 {
position:absolute;
top:410px;
left: 800px;
width:240px;
height: 36px;
}

/*
.node-type-news-release h1.titleNewsReleases {
font-weight:300;
font-size:1.8em;
}
*/
#content h1.titleNewsReleases {
  font-weight: 100;
width:460px;
  font-size: 2em;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 0; /* 0.5em is equavalent to 1em in the page's base font.
                           Remember, a margin specified in ems is relative to
                           the element's font-size, not to the pages' base
                           font size. So, for example, if we want a 1em margin
                           (relative to the base font), we have to divide that
                           length by the element's font-size:
                           1em / 2em = 0.5em */		
margin-left: 270px;				   
text-indent: 0px;
}


/*
.node-type-news-release .breadcrumb {
float:right;
}
*/


/* Eye On Marketers */


.page-resources-eye-on-marketers {
background-image: url(/tempo/sites/all/themes/bmsg/images/eyeonmarketers/grid-back.png);
	background-repeat: no-repeat;
	background-position: 15px 17px;
}


.page-resources-eye-on-marketers #block-block-4 {
position:absolute;
top:410px;
left: 800px;
width:200px;
height:60px;
padding:0;
z-index:5;
}





.page-resources-eye-on-marketers /* Page content node */ {
width:450px;
margin: 0 0 40px 0;
padding: 0 0 40px 0;
}



/* .node-type-eye_on_mktrs #content-area { */
.page-resources-eye-on-marketers #content-area {
margin: 0 0 0 270px;
}

.page-resources-eye-on-marketers .views-field-title {
line-height:120%;
}


.page-resources-eye-on-marketers #content h1/* Page content node */ {
text-indent:-2000px;
font-size:9px;
}


#content h1.Newstitle/* Page content node */ {
font-size:21px;
text-indent:0;
color:#767e83;
margin: 0 0 0 290px;
}

.view-Eye-On-Marketers {
width:460px;
margin: 0 0 0 270px;
padding: 0 20px 0 0;
}

.view-Eye-On-Marketers .views-field-title {
color:#767e83;
font-size:21px;
margin: 0 0 12px 0;
}

.page-resources-eye-on-marketers .views-row {
	margin: 0 0 35px 0;
	padding: 0 0 30px 0;
	background-image:url(/tempo/sites/all/themes/bmsg/images/inTheNews/hr-inTheNews.png);
	background-repeat: no-repeat;
	background-position: -40px bottom;
}


.page-resources-eye-on-marketers h2.title /* Page content node */ {
color:#767e83;
font-weight:300;
font-size:1.8em;
}



.page-contact #contactDiv {
position:absolute;
top: 360px;
left:790px;
width:250px;
margin:0;
padding:0;
vertical-align:top;
background-color:#FFF;
}

.page-contact #block-block-4 {
top:630px;
left: 790px;
}

.page-contact #block-block-4 .content {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #000000;
	border-bottom-color: #000000;
}



/* Privacy  */
.page-privacy {
background-image: url(/tempo/sites/all/themes/bmsg/images/about/history/grid-back.png);
	background-repeat: no-repeat;
}



.node h2.title /* Node title */ {
}

.marker /* "New" or "Updated" marker for content that is new or updated for the current user */ {
  color: #c00;
}

.node .picture /* The picture of the node author */ {
}

.node.node-unpublished .picture,
.comment.comment-unpublished .picture {
  position: relative; /* Otherwise floated pictures will appear below the "Unpublished" text. */
}

.node .meta /* Wrapper for submitted and terms data */ {
}

.node .submitted /* The "posted by" information */ {
}

.node .terms /* Node terms (taxonomy) */ {
}

.node .content /* Node's content wrapper */ {
}

.node ul.links /* Node links. See also the ul.links declaration in the pages.css. */ {
}

.preview .node /* Preview of the content before submitting new or updated content */ {
  /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
}
/* Id: comments.css,v 1.5 2009/11/01 20:54:20 johnalbin Exp */

/**
 * @file
 * Comment Styling
 */


#comments /* Wrapper for the list of comments and its title */ {
  margin: 1em 0;
}

#comments .title /* Heading for the list of comments */ {
}

.comment /* Wrapper for a single comment */ {
}

.comment-preview /* Preview of the comment before submitting new or updated comment */ {
}

.comment.new /* A new comment since the user last viewed the page. */ {
}

.comment.first /* The first comment in the list of comments */ {
}

.comment.last /* The last comment in the list of comments */ {
}

.comment.odd /* An odd-numbered comment in the list of comments */ {
}

.comment.even /* An even-numbered comment in the list of comments */ {
}

.comment-unpublished /* Unpublished comments */ {
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

.comment-unpublished div.unpublished /* The word "Unpublished" displayed underneath the content. See also the div.unpublished declaration in the nodes.css. */ {
}

.comment-by-anonymous /* A comment created by an anonymous user */ {
}

.comment-by-node-author /* A comment created by the node's author */ {
}

.comment-by-viewer /* A comment created by the current user */ {
}

.comment h3.title /* Comment title */ {
}

.new /* "New" marker for comments that are new for the current user */ {
  color: #c00;
}

.comment .picture /* The picture of the comment author */ {
}

.comment .submitted /* The "posted by" information */ {
}

.comment .content /* Comment's content wrapper */ {
}

.comment .user-signature /* The user's signature */ {
}

.comment ul.links /* Comment links. See also the ul.links declaration in the pages.css. */ {
}

.indented /* Nested comments are indented */ {
  /* margin-left: 25px; */ /* Drupal core uses a 25px left margin */
}

.preview .comment /* Preview of the comment before submitting new or updated comment */ {
  /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
}
/* Id: forms.css,v 1.3 2009/08/12 08:37:42 johnalbin Exp */

/**
 * @file
 * Form Styling
 */


.form-item,
.form-checkboxes,
.form-radios /* Wrapper for a form element (or group of form elements) and its label */ {
  margin: 1em 0;
}

.form-item input.error,
.form-item textarea.error,
.form-item select.error /* Highlight the form elements that caused a form submission error */ {
  border: 2px solid #c00;
}

.form-item label /* The label for a form element */ {
  display: block;
  font-weight: bold;
}

.form-item label.option /* The label for a radio button or checkbox */ {
  display: inline;
  font-weight: normal;
}

.form-required /* The part of the label that indicates a required field */ {
  color: #c00;
}

.form-item .description /* The descriptive help text (separate from the label) */ {
  font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item /* Pack groups of checkboxes and radio buttons closer together */ {
  margin: 0.4em 0;
}

.form-submit /* The submit button */ {
}

#webform-client-form-373 {
width:500px;
margin: 0 0 0 140px;
}

.container-inline div,
.container-inline label /* Inline labels and form divs */ {
  display: inline;
}

.tips /* Tips for Drupal's input formats */ {
}


/*
 * Search (search-theme-form.tpl.php)
 */


#edit-search-theme-form-1-wrapper label /* Label that says "Search this site:" */ {
width:41px;
float:left;
text-indent: -9999px;
background-image: url(/tempo/sites/all/themes/bmsg/images/searchTitle.png);
	background-repeat: no-repeat;
}



#search-box /* Wrapper for the search form */ {
	position:absolute;
	width:240px;
	left:820px;
	top:30px;
	margin:0;
	padding:0;
	height:18px;
	}

#search {
margin:0;
padding:0;
width:173px;
height:16px;
border: 1px solid #000000;
}


#edit-search-theme-form-1-wrapper input {
margin: 0 0 0 0;
padding: 0 0 0 0;
height:14px;
width:120px;
float:left;
}

#edit-search-theme-form-1-wrapper #edit-search-theme-form-1 {
margin:0;
	padding:0;
	height:11px;
	font-size:10px;
	line-height:10px;
}



#search-box #edit-submit {
	color:#996600;
	background-image: url(/tempo/sites/all/themes/bmsg/images/searchButton.png);
	background-repeat: no-repeat;
	width:47px;
	height:16px;
	margin:0;
	padding:0;
	text-indent: -9999px;
	border:none;
	float:left;
}


/*
 * Search (search-block-form.tpl.php)
 */
#search-block-form /* Wrapper for the search form */ {
}

#edit-search-block-form-1-wrapper label /* Label that says "Search this site:" */ {
/*  display: none; */
}


/*
 * Drupal's default login form block
 */
#user-login-form {
  text-align: left; /* LTR */
}


/*
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */

#user-login-form ul /* OpenID creates a new ul above the login form's links. */ {
  margin-bottom: 0; /* Position OpenID's ul next to the rest of the links. */
}

#user-login-form li.openid-link /* The "Log in using OpenID" link. */ {
  margin-top: 1em;
  margin-left: -20px; /* LTR */ /* Un-do some of the padding on the ul list. */
}

#user-login-form li.user-link /* The "Cancel OpenID login" link. */ {
  margin-top: 1em;
}

#user-login ul {
  margin: 1em 0;
}

#user-login li.openid-link,
#user-login li.user-link /* The OpenID links on the /user form. */ {
  margin-left: -2em; /* LTR */ /* Un-do all of the padding on the ul list. */
}


/*
 * Drupal admin tables
 *
 * We overrode these styles in html-elements.css, but restore them for the admin
 * section of the site.
 */

form tbody {
  border-top: 1px solid #ccc;
}

form th,
form thead th {
  text-align: left; /* LTR */
  padding-right: 1em; /* LTR */
  border-bottom: 3px solid #ccc;
}

form tbody th {
  border-bottom: 1px solid #ccc;
}
/* Id: fields.css,v 1.3 2009/08/12 08:03:52 johnalbin Exp */

/**
 * @file
 * Field Styling
 */


/*
 * Field types
 */

.field /* Wrapper for any CCK field. */ {
}

.field-type-datetime /* Always use "datetime" when creating new CCK date fields. "date" and "datestamp" are legacy types. */ {
}

.field-type-filefield /* Field from filefield module */ {
}

.field-type-nodereference {
}

.field-type-number-decimal {
}

.field-type-number-float {
}

.field-type-number-integer {
}

.field-type-text {
}

#social {
position:absolute;
top: 700px;
left:970px;
width:31px;
margin:0;
padding:0;
vertical-align:top;
background-color:#FFF;
}

#social ul {
list-style:none;
margin:0;
padding:0;
}


#social li {
width:31px;
height:34px;
margin:0;
padding:0;
text-indent:0px;
}
#social li img {
width:31px;
margin:0;
padding:0;
}


.field-type-userreference {
}


/*
 * Named fields
 */

.field-field-FIELDNAME /* Underscores in field name are replaced with dashes. */ {
}

#block-block-1 {
font-size:10px;
float:right;
margin:0;
padding:0;
height:14px;
}
#oneColumn {
position:relative;
width:480px;
float:left;
margin: 0 35px 0 0;
}
#oneWideColumn {
position:relative;
width:620px;
float:left;
margin: 0 30px 0 94px;
}
#oneWideColumn270 {
position:relative;
width:460px;
float:left;
margin: 0 30px 0 250px;
}
#col1 {
position:relative;
width:220px;
float:left;
margin: 0 30px 0 0;
}
#col2 {
position:relative;
width:220px;
float:left;
margin: 0 30px 0 0;
}
#col3 {
position:relative;
width:220px;
float:left;
}

.page-node-27 #col1 {
position:relative;
width:200px;
float:left;
margin: 0 50px 0 0;
}
.page-node-27 #col2 {
position:relative;
width:220px;
float:left;
margin: 0 30px 0 0;
}


#col1-commitment {
position:relative;
width:255px;
float:left;
margin: 0 70px 0 0;
}
#col2-commitment {
position:relative;
width:235px;
float:left;
margin: 0 80px 0 0;
}
#col3-commitment {
position:relative;
width:240px;
float:left;
}
#advocacyCol2 {
position:relative;
width:220px;
float:left;
margin: 0 35px 0 0;
}

.block-proj-hitlist-short {
background-color:#669999;
width:220px;
}


/* SIGNUP FORM */
.e2ma_signup_form {
	width:180px;
}

/* Controls the style, width, and font style of the text input, select and textarea fields */
.e2ma_signup_form input[type=text],
.e2ma_signup_form textarea,
.e2ma_signup_form select { 
	border:none; 
	font-family:Verdana, sans-serif;
	font-size:10px;
	width: 125px; 
}

/* Controls width, style, and padding of the table border outlines around individual member fields */
.e2ma_signup_form_row {
	border:none;;
	padding:5px;
	margin-bottom:5px;
}

/* Controls alignment and display of image in welcome message */
.e2ma_signup_image_container {
    text-align:center;
    display: inline;
}

/* Controls border around signup image (when image is linked) */
.e2ma_signup_image {
		display:none;
}

/* Controls style and formatting of welcome message */
.e2ma_signup_message {
	display:none;
}

/* Controls style and formatting of form field labels (first name, last name, etc.) */
.e2ma_signup_form_label {
		display:none;
}

/* Controls spacing and style for any text used to list options under multiple choice fields) */
.e2ma_signup_form_element {
	font-family:verdana;
	font-size:10px;
	color:#333333;
}

/* Controls the style and spacing of the word "required" and border surrounding that text */
.e2ma_signup_form_required_footnote {
	display:none;
}

/* Controls the color of the asterisk that indicates a field is required */
.e2ma_signup_form_required_asterix {
	display:none;
}

/* Controls the alignment of "submit" and "clear" buttons */
.e2ma_signup_form_button_row {
	float:left;
}

/* Controls display of the "clear" button */
.e2ma_signup_form_button_row #e2ma_signup_reset_button {
	display:none;
}

/*Overrides browser default settings for button styles (for additional control of "submit" and "clear" buttons) */
.e2ma_signup_form_button { 
    width: 10px !important;
}

#e2ma_signup_submit_button {
	background-color:#FF3300;
	background-image: url(http://bmsg.org/tempo/sites/all/themes/bmsg/images/signUpArrow.png);
	background-repeat: no-repeat;
}

#e2ma_signup_reset_button {
display: none;
width:1px;
}
/*
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
a:link {
color:#44687e;
}

a:visited {
color:#44687e;
}

a:hover,
a:focus {
color:#ff9900;
}

a:active {
color:#ff9900;
}


.section-newsroom.page-views #block-block-2,
.page-newsroom-bmsg-in-the-news #block-block-2 {
  position:absolute;
  top:550px;
  left: 800px;
  width:200px;
  height:60px;
  padding:0;
  z-index:5;
  font-size: 12px;
}

.section-newsroom.page-views #block-block-2 h2,
.page-newsroom-bmsg-in-the-news #block-block-2 h2 {
  font-size: 12px;
}

/* 
.sf-shadow ul li {
  border-right: none;
}
*/


/* publications thumbnails */

.node-type-publications .view-publication-thumbnail,
.page-resources-publications-main .view-publication-thumbnail{
	float: left;
	margin-left: -120px;
}


.node-type-publications .view-publication-thumbnail a img {
	border: 1px solid #CCC;
}

.node-type-publications .all-attached-images {
  display: none;
}

.view-main-publication-listing .view-empty {
  margin-left: 130px;
}

div.node-type-projects .imagecache-project_thumbnail {
  float: left;
  margin: -240px;
  margin-top: 30px;
}

.view-main-publication-listing .date-views-filter-wrapper .form-item .container-inline-date {
  display: inline-block;
  margin-right: 16px;
}