/*
	VERSION NOTES:
	static.02
	includes new styles for left nav

*/

/*
  HTML5 ✰ Boilerplate

  style.css contains a reset, font normalization and some base styles.

  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/*
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  there are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }



/*
 * minimal base styles
 */

body, select, input, textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444;
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */
}

/* headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE: */
html { overflow-y: scroll; }


/* accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: rgb(161, 41, 41); }
a:hover { color: rgb(0, 51, 102); }


ul, ol { margin-left: 2em; }
ol { list-style-type: decimal; }

/* remove margins for navigation lists */
nav ul, nav li { margin: 0; }

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; }

/* set sub, sup without affecting line-height: gist.github.com/413930*/
sub, sup { font-size: 75%; line-height: 0; position: relative; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

pre {
  padding: 15px;

  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

textarea { overflow: auto; } /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; border-color:transparent;} /*Added transparent border to fix IE- Alan*/
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; }

/* webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid {
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red;
 -webkit-box-shadow: 0px 0px 5px red;
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid,
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink. */
::-moz-selection{ background: rgb(161, 41, 41); color: rgb(255, 255, 255); text-shadow: none; }
::selection { background: rgb(161, 41, 41); color: rgb(255, 255, 255); text-shadow: none; }

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: rgb(161, 41, 41); }

/* make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }

/* bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/*
 * Non-semantic helper classes
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden
   Updated to ensure no other style overrides the styles defined in this rule */
.visuallyHidden {
    border: 0 !important;
    clip: rect(0 0 0 0);
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; visibility: hidden; }
.clearfix:after { clear: both; }
/* fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }


 /* Primary Styles
    Author: Joel Gillman and Josh Hester
 */

 /* WCMC Colors
    white:     rgb(255, 255, 255)
    red:       rgb(161, 41, 41)
    lite grey: rgb(104, 105, 105)
    dark grey: rgb(68, 68, 68)
 */

body {
  position: relative;
  background: rgb(255, 255, 255);
  font: 12px/18px "ff-meta-web-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/*To make everything scale properly on an iPad */
@media only screen and (min-device-width:768px) and (max-device-width:1024px){
body{overflow: hidden;}
/* #container{width: 200%; margin-left: -50%;} */
html{zoom: .75;}
/* nav.main li a, nav.main li a:visited{padding-right:10px !important;} */
}

/* Layout style for overall WCMC structure/grid */
#global_header,
nav.main ul,
#container #main,
#global_footer #footer_container
 {
  width: 970px;
  margin: 0 auto;
}

a {
  color: rgb(161, 41, 41);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "ff-meta-web-pro", "Trebuchet MS", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 0.75em;

  font-weight: normal;
  font-size: 12px;
  line-height: 1.25em;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

h1 {
	font-size: 3.5em;
}

	article h1 {
		letter-spacing: -0.05em;
	}

h2 {
	font-size: 2em;
	color: rgb(164,110,8);
}

h3 {
	font-size: 1.5em;
	color: rgb(145,126,92);
}

h4 {
	font-size: 1.25em;
	color: rgb(88,83,72);
	font-weight: bold;
}

h5 {
	font-size: 1em;
	color: rgb(127,127,127);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: bold;
}

h6 {
	font-size: 1em;
	font-weight: bold;
}

.with_subheading {  /* used for the TOPMOST header to make better lockup when two headings are used together */
	margin-bottom: 0.25em;
}

.wf-loading nav ul li a {
	visibility: hidden;
}

	#mobile_nav, #vertical_handle, #pull_tab{
		display:none;
	}

/*
 * Header
 *
 **
 */
#global_header {
  height: 80px;
}
#global_header h1 {
  float: left;
  padding: 5px 0 0 4px;
  margin: 0;
}
#global_header h1 a {
  width: 284px;
  height: 68px;
  background-image: url(../images/header/wcmc_headerlogo_grey.png);
}

#global_header section.global_search {
  position: relative;
  float: right;
  background: rgb(128, 128, 128);
  background: rgba(0, 0, 0, 0.5);
  margin: 13px 0 0;
  padding: 6px;
}
  #people_search,
  #physician_search {
    display: none;
  }
  #global_header .global_search input.search_field {
    width: 140px;
    height: 22px;
    line-height: 22px;
    padding: 0 0 0 5px;
    border: none;
    border-radius: 0;
  }
  #global_header .global_search input.submit {
    background: url(../images/header/header_search_go.gif) no-repeat scroll -2px 2px rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    height: 22px;
    padding: 0;
    width: 41px;
    border-radius: 0;
  }
  #global_header .global_search .search_selector {
    margin: 7px 0 0;
    font: 10px "Trebuchet MS",sans-serif;
    color: rgb(255, 255, 255);
  }
  #global_header .global_search .search_selector input {
    font-size: 12px;
  }
  #global_header .global_search .search_selector span {
    margin: 0 1px 0 2px;
    vertical-align: bottom;
  }
  #global_header .global_search .bleed_right {
    position: absolute;
    top: 0;
    height: 42px;
    background: rgb(128, 128, 128);
    background: rgba(0, 0, 0, 0.5);
  }



/*
 * Top Nav
 *
 *
 */
nav.main {
  background: rgb(82, 78, 71);
}
nav.main li {
  float: left;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
nav.main li a,
nav.main li a:visited {
  color: rgb(255, 255, 255);
  float: left;
  height: 24px;
  padding: 6px 11px 0;
  border-left: 1px solid rgb(82, 78, 71);
  border-right: 1px solid rgb(82, 78, 71);
  font-size: 12px;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
nav.main li a:hover,
nav.main a.sticky,
nav.main a:visited.sticky {
  color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
  background-color: rgb(153, 0, 0);
  background-image: -moz-linear-gradient(top, #990000, #880000);
  background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #990000),color-stop(1, #880000));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#990000', EndColorStr='#880000');
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#990000', EndColorStr='#880000')";
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}




/*
 * Main Content
 *
 *
 */
#main {
  background: rgb(253, 253, 255);
  background: rgba(255, 255, 255, 0.62);
  padding: 0 20px 30px;
}

  .navigation {
    float: left;
    width: 285px;
    margin: 0 20px 0 0;
  }
    .navigation header {
      margin: 0 0 20px;
    }
      .navigation header a { /*Reset this in local CSS*/
        width: 285px;
        height: 214px;
        background-image: url(../../285x214_text-Department-Logo.png);
      }

    .navigation section h1 {
      font-size: 18px;
      margin: 26px 0 10px;
      padding: 0 0 6px;
      border-bottom: 1px solid #CFCECE;
      text-transform: uppercase;
    }




/*
 * Left Nav
 * Author: Joshua Hester
 *
 */


ul.section_nav li a.active {
	background: rgb(118, 56, 52);
	color: rgb(255, 255, 255);
	margin-bottom: 4px;
	display: block;
}

ul.section_nav li a.current {
	background: rgb(161, 41, 41);
	color: rgb(255, 255, 255);
	display: block;
}

ul.section_nav ul.open {
	margin-top: 4px;
}

ul.section_nav a:hover {
	background: rgb(161, 41, 41);
	color: rgb(255, 255, 255);
}

.section_nav li {
	position: relative;
}

ul.section_nav li a.expandable {
	width: 217px;
}

ul.section_nav li a.more_button {
	border: 0;
	padding: 0;
	width: 50px /* !important */; /* overrides the expandable class so the "more" isn't large */
	text-align: center;
	border-left: 2px solid rgb(255,255,255);
}


/* first level */

ul.section_nav  {
	width: 285px;
	display: table;
}

ul.section_nav li {
	color: rgb(255, 255, 255);
	margin-bottom: 4px;
}


	ul.section_nav li a {
	    background: #444444;
	    color: #FFFFFF;
	    display: table-cell;
		width: 300px;
	    font-size: 11px;
	    line-height: 1.3em;
		letter-spacing: 0.025em;
	    margin: 0 0 4px;
	    padding: 6px 8px 5px;
		width: 269px;
	}

.ie7 ul.section_nav li a {
	line-height: 11px;
	padding: 4px 8px 4px 8px;
	margin: 0 0 2px 0;
}


/* second level */

ul.section_nav ul li a {
	background: rgb(214, 214, 214);
	color: rgb(51, 51, 51);
	padding-left: 16px;
	padding-right: 0;
}


/* third level */

ul.section_nav ul ul {
    background: rgb(255,255,255);
    border: 1px solid #444444;
    margin-bottom: 5px;
    padding: 5px 8px 10px 0;
    width: 275px;
}

ul.section_nav ul ul li {
    margin: 0 0 0 8px;
    background: rgb(255,255,255);
    width: 267px;
}

ul.section_nav ul ul li a {
    background: rgb(255,255,255);
    margin: 0;
    border-bottom: 1px solid rgb(214, 214, 214);
    padding-left: 9px;
    padding-right: 9px;
    width: 249px;
}


/* sebsequent levels */

ul.section_nav ul ul ul {
	border: none;
	padding: 0;
	margin-top: 4px;
	width: auto;
	clear: both;
}

ul.section_nav ul ul ul li {
	margin: 0 0 0 12px;
	width: auto;
	clear: both;

}

ul.section_nav ul ul ul li a {
	color: rgb(128, 128, 128);
	border-bottom: 0px;
/* 	width: 237px; */
	display: block;
	width: auto;

}

ul.section_nav ul ul ul li li a {
	color: rgb(163, 163, 163);
}

ul.section_nav ul ul ul li li li a {
	color: rgb(198, 198, 198);
}



/* IE7 styles */

.ie7 ul.section_nav li a.expandable, .ie7 ul.section_nav li a.current, .ie7 ul.section_nav li a.active, .ie7 ul.section_nav li a {
	float: left;
	line-height: 1.3em;
}

.ie7 .section_nav .more_button {
	padding: 4px 0 4px 0;
	margin: 0;
}








/* ------------- NEW BREADCRUMB ------------- */


#content .navigation .section_nav li a {
	display: none;
}

#content .navigation .section_nav li a.active, #content .navigation .section_nav li a.current, #main #content .navigation h1, #main #content .navigation h2  {
	display: inline;
	background: none;
	border: 0 none;
	font-size: 100%;
	float: left;
	margin: 0;
	padding: 0;
	line-height: 1.5em;
	font: 12px/18px "Helvetica Neue",Helvetica,Arial,sans-serif;
}

#main #content .navigation h1 a {
	background: none;
	margin-right: 0.5em;
}

#main #content .navigation header {
	margin: 0;
	padding: 0;
	width: auto;
}


#content .navigation ul.section_nav ul {
	border: 0 none;
	padding: 0;
	margin: 0;
	display: inline;
	list-style: none;
}


#content .navigation ul.section_nav ul li {
	margin: 0;
	display: inline;
	list-style: none;
}

#content .navigation .section_nav li a:before, #main #content .navigation h2 a:before {
    content: ">";
	margin-right: 0.5em;
}


#main #content nav.breadcrumbs .section_nav li a, #content nav.breadcrumbs ul li h2 a{
	width: auto;
	padding-right: 0.5em;
}

#content .navigation .section_nav li a.active {
	color: rgb(161,41,41);
}

#content .navigation .section_nav li a.current {
	color: rgb(68,68,68);
}

#content .navigation .section_nav li a.active:hover {
    color: #003366;
}


#content .navigation {
	width: 636px;
	margin: 0;
}


#content .navigation ul {
	display: inline;
	float: none;
}

#content .navigation li {
	display: inline;
}

#content .navigation a {
	display: inline;
}

#main .navigation h2 {
	display: none;
}

/* ------------- New Main Nav Highlight ------------- */

body.surgical-services nav.main .surgical-services, body.patients-visitors nav.main .patients-visitors {
	-moz-transition: all 0.2s ease-out 0s;
    background-color: #990000;
    background-image: -moz-linear-gradient(center top , #990000, #880000);
    border-color: #FFFFFF;
    color: #FFFFFF;
}














	.navigation .follow_us ul {
		float: left;
		margin: 0;
	}

	.navigation .follow_us li {
		list-style: none;
		float: left;
		margin: 0 6px 6px 0;
	}
				.navigation .follow_us li a {
					width: 20px;
					height: 20px;
					background-image: url(../images/social_icons_20.png);
				}
		.navigation .follow_us .facebook {
			background-position: 0 0;
		}
		.navigation .follow_us .twitter {
			background-position: -20px 0;
		}
		.navigation .follow_us .linkedin {
			background-position: -40px 0;
		}


/* new image will need to be updated to include these two icons */
		.navigation .follow_us .youtube {
			background-position: -60px 0;
		}

		.navigation .follow_us .rss {
			background-position: -120px 0;
		}


	#content {
		float: left;
		width: 665px;
	}
		.no-js .breadcrumbs {
			display: none;
		}
		.breadcrumbs {
			margin: 12px 0 0 0;
		}
			/* issue with breadcrumb float. Can't use this because it targets all li, conflicting with display:inline */
			.breadcrumbs li {
				/* float: left; */
				/* margin: 0 4px 0 0; */
			}

			/*use this instead to target just the pipe list item: <li> | </li> */
			.breadcrumbs ul.clearfix > li {
				border-style: none;
				float: left;
				margin: 0 4px 0 0;
			}

			.breadcrumbs .mover {
				position: relative;
				float: left;
				margin: 0 4px 0 0;
			}

			.breadcrumbs .mover a {
				width: 16px;
				height: 16px;
				background: url(../images/small_shield.gif) no-repeat 0 0;
				margin: 1px 0 -1px;
			}
			#wcmc_shield_tag {
				opacity: 0;
				position: absolute;
				top: -7px;
				right: -7px;
				width: 239px;
				border: 1px solid rgb(255, 255, 255);
				background: rgb(68, 68, 68);
				white-space: nowrap;
				-webkit-border-radius: 4px;
				-moz-border-radius: 4px;
				border-radius: 4px;
				-webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
				-moz-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
				box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
				-webkit-transform: scale(0.9);
				-moz-transform: scale(0.9);
				-o-transform: scale(0.9);
				transform: scale(0.9);
				-webkit-transform-origin: right center;
				-moz-transform-origin: right center;
				-o-transform-origin: right center;
				transform-origin: right center;
				-webkit-transition: all 0.2s ease-out;
			}
			.breadcrumbs .mover:hover #wcmc_shield_tag {
				opacity: 1;
				-webkit-transform: scale(1.0);
				-moz-transform: scale(1.0);
				-o-transform: scale(1.0);
				transform: scale(1.0);
				-webkit-transition: all 0.2s ease-out 0.5s;
				-moz-transition: all 0.2s ease-out 0.5s;
				-o-transition: all 0.2s ease-out 0.5s;
				transition: all 0.2s ease-out 0.5s;
			}
			#wcmc_shield_tag .wcmc_text {
				display: block;
				height: 29px;
				width: 190px;
				padding: 0 10px;
				float: left;
				line-height: 29px;
				color: rgb(255, 255, 255);
			}
			#wcmc_shield_tag .wcmc_shield {
				display: block;
				width: 28px;
				height: 29px;
				float: right;
				background: rgb(161, 41, 41) url(../images/small_shield_white_red.gif) no-repeat center center;
				border-left: 1px solid rgb(255, 255, 255);
				-webkit-border-top-right-radius: 4px;
				-webkit-border-bottom-right-radius: 4px;
				-moz-border-radius-topright: 4px;
				-moz-border-radius-bottomright: 4px;
				border-top-right-radius: 4px;
				border-bottom-right-radius: 4px;
			}


    article header h1 {
      	margin-top: 0.20em;
		margin-bottom: 0.45em;
    }

    article header img {
      margin: 0 0 12px;
    }

    article p,
    article ul,
    article ol {
      font-family: Georgia, "Times New Roman", Times, serif;
      margin-bottom: 1em;
      line-height: 1.666em;
    }
    article li {
      margin-bottom: 6px;
    }

    article .our_physicians {
      float: right;
      width: 230px;
      margin: 0 0 0 20px;
    }
      article .our_physicians h1 {
        color: rgb(164, 110, 8);
        font-size: 22px;
        text-transform: uppercase;
        margin: 0 0 16px 0;
      }
      article .our_physicians .physician {
        padding: 8px 0 0 0;
        border-top: 1px solid rgb(239, 238, 237);
      }
      article .our_physicians img {
        float: left;
        height: 54px;
        margin-right: 8px;
        width: 36px;
      }
      article .our_physicians p {
        font: 11px/14px "ff-meta-web-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
        float: left;
        width: 186px;
      }
      article .our_physicians a {
        font-weight: bold;
      }
    .two_columns {
      -moz-column-count: 2;
      -moz-column-gap: 30px;
      -webkit-column-count: 2;
      -webkit-column-gap: 30px;
      column-count: 2;
      column-gap: 30px;
    }
      /*Fix for items being split across columns*/
      .two_columns li{
    	display: inline-block;
    	width: 100%;
      }
      .faculty_list ul {
        list-style: none;
        margin: 0;
      }
      .faculty_list li {
        margin: 0 0 20px 0;
      }
        .faculty_list li h1 {
          font-size: 18px;
          color: rgb(161, 41, 41);
          margin: 0 0 6px 0;
        }
	section.related_links {
      padding: 0;
      margin: 20px 0;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      -o-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out;
    }

      .related_links h1 {
        font-size: 22px;
        color: rgb(171, 167, 156);
        margin: 0 0 16px 0;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
      }
      .related_links:hover h1 {
        color: rgb(146, 142, 126);
      }
      .related_links ul {
        margin: 0;
        list-style: none;
      }
        .related_links ul li {
          float: left;
          margin: 2px 1px;
          -webkit-transition: all 0.2s ease-out;
          -moz-transition: all 0.2s ease-out;
          -o-transition: all 0.2s ease-out;
          transition: all 0.2s ease-out;

        }
        /* put in a little flourish for animation browsers */
        .cssanimations .related_links ul li:hover {
          -webkit-transform: scale(1.03);
          -moz-transform: scale(1.03);
          -o-transform: scale(1.03);
          transform: scale(1.03);
        }
          .related_links ul li a, .related_links ul li a:visited {
            background: rgb(211, 206, 194);
            color: rgb(255, 255, 255);
            padding: 3px 7px;
            white-space: nowrap;
            -webkit-transition: all 0.2s ease-out;
            -moz-transition: all 0.2s ease-out;
            -o-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
          }
          .related_links ul li a:hover {
            background: rgb(171, 167, 156);
          }



/*
 * Footer
 *
 *
 */
#global_footer {
  background: rgb(70, 59, 53);
  background: rgba(38, 25, 19, 0.85);
  color: rgb(255, 255, 255);
  font-family: "ff-meta-web-pro", Arial, sans-serif;
  font-size: 11px;
  padding: 15px 0 25px 0;
}
  #global_footer ul {
    list-style: none;
    margin: 0;
  }
  #global_footer a, #global_footer a:visited {
    color: rgb(255, 255, 255);
  }
  #global_footer a:hover {
    color: rgb(161, 41, 41);
  }
  #global_footer .logos {
    float: left;
  }
    #global_footer .logos ul li {
      float: left;
      margin: 0 15px 0 0;
    }
  #global_footer .social_and_site_links {
    float: right;
    margin: 8px 0 0;
  }
    #global_footer .social_and_site_links ul li {
      float: left;
      margin: 0 0 0 10px;
    }
    #global_footer .social_and_site_links .social_sprite {
      display: block;
      background-image: url(../images/footer/social_icons.png);
      width: 16px;
      height: 16px;
      margin: 2px 0 0;
    }
    #icon_facebook { background-position: 0 0; }
    #icon_linkedin { background-position: -16px 0; }
    #icon_youtube { background-position: -32px 0; }
    #icon_twitter { background-position: -48px 0; }
    #icon_rss { background-position: -64px 0; }
    #global_footer .social_and_site_links .select_box,
    #global_footer .social_and_site_links .select_box:visited {
      display: block;
      width: 134px;
      height: 14px;
      margin: 0;
      padding: 4px 0 0 6px;
      font-size: 9px;
      line-height: 1em;
      text-transform: uppercase;
      color: rgb(93, 93, 93);
      background-color: rgb(255, 255, 255);
      border: 1px solid rgb(148, 144, 143);
    }
    #global_footer .social_and_site_links .select_box:hover, .social_and_site_links .select_box.active {
      background-color: rgb(161, 41, 41);
      color: rgb(255, 255, 255);
      z-index: 15;
    }
  #global_footer .info {
    margin: 15px 0;
    text-transform: uppercase;
  }
    #global_footer .info a {
      font-weight: bold;
    }
  #global_footer .legal_and_contact_info {

  }
    #global_footer .legal_and_contact_info ul.legal {
      float: left;
    }
      #global_footer ul.legal li ul li {
        float: left;
        margin: 0 6px 0 0;
      }
    #global_footer .legal_and_contact_info .contact {
      float: right;
    }
      #global_footer .legal_and_contact_info .contact a, .legal_and_contact_info .contact a:visited {
        display: block;
        width: 50px;
        height: 14px;
        margin: 0 0 4px 8px;
        color: rgb(93, 93, 93);
        font-size: 8px;
        line-height: 14px;
        text-align: center;
        border: 1px solid rgb(159, 159, 159);
        background-color: rgb(252, 253, 250);
        background-image: -moz-linear-gradient(top, rgb(252, 253, 250), rgb(225, 225, 225));
        background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, rgb(252, 253, 250)),color-stop(1, rgb(225, 225, 225)));
        filter:  progid:DXImageTransform.Microsoft.gradient(startColorStr='#fcfdfa', EndColorStr='#e1e1e1');
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#fcfdfa', EndColorStr='#e1e1e1')";
      }
      #global_footer .legal_and_contact_info .contact a:hover {
        color: rgb(255, 255, 255);
        background-color: rgb(161, 41, 41);
        background-image: none;
      }
    #global_footer .legal_and_contact_info .address {
      float: right;
      text-align: right;
    }

/*
 * Modal windows
 *
 *
 */
.modal_content_container {
  position: absolute;
  display: none;
  background: rgb(254, 254, 254);
  background: rgba(254, 254, 254, 0.9);
  z-index: 15000;
  padding: 30px 20px;
}
  .modal_content_container .close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 14px;
    padding: 2px 0 4px;
    font-size: 16px;
    font-weight: normal;
    line-height: 0.5em;
    text-align: center;
    color: rgb(141, 138, 129);
    cursor: pointer;
  }
  .modal_content_container h2 {
    color: rgb(164, 110, 8);
    font-size: 22px;
    font-weight: normal;
    letter-spacing: 0.025em;
    line-height: 1.3em;
    text-transform: uppercase;
  }
#related_sites {
  width: 380px;
}
  #related_sites a, #related_sites a:visited {
    color: rgb(141, 138, 129);
  }
  #related_sites li {
    display: block;
    width: 325px;
    padding: 4px 3px 4px 7px;
    font-size: 12px;
  }
#sitemap {
  width: 970px;
}
  #sitemap input {
    background: url(../images/departments_search_icon.gif) no-repeat scroll 0 0 white;
    width: 90%;
    height: 16px;
    margin: 0 0 15px 0;
    padding: 2px 2px 2px 25px;
    border: 1px solid rgb(82, 77, 71);
    font-size: 12px;
    line-height: 13px;
  }
  #sitemap a, #sitemap a:visited {
    color: rgb(82, 78, 71);
  }

  #sitemap h2 {
	display: none;
  }

  #sitemap ul.section_nav ul ul,
  #sitemap ul.section_nav ul ul li,
  ul.section_nav ul ul li a {
	background: none;
	border: 0;
  }

.overlay {
  top: 0;
  left: 0;
  z-index: 10;
}

/*
 * imported CSS for sitemap modal
 *
 *
 */

#footer .modal_list ul a:hover {
	background: none repeat scroll 0 50% rgb(150, 27, 30);
	color: rgb(255, 255, 255);
	text-decoration: none;
}
#header .modal_list ul a:hover {
	background: none repeat scroll 0 0 rgb(150, 27, 30);
	color: rgb(255, 255, 255);
	text-decoration: none;
}
.modal_list h3 {
	font-size: 1.4em;
	font-weight: bold;
	padding-bottom: 0;
}
.modal_list_column {
	float: left;
	margin-right: 20px;
	width: 225px;
}

.modal_list ul {
}
.modal_list ul li {
	line-height: 1.5em;
}
.modal_list ul li ul {
	margin-bottom: 20px;
}
.modal_list ul li ul li ul {
	margin-bottom: 0;
}
.modal_list ul li ul li ul li ul {
	margin-left: 2em;
}
.modal_list ul li ul li ul li ul li ul {
	font-size: 10px;
	margin-left: 10px;
}

#dept_filter_input {
	margin-bottom: 10px;
}

.modal_list_column ul.section_nav li {
	float: left;
	margin-bottom: 4px;
/* 	width: 225px; */
}

.modal_list_column ul.section_nav li a {
	background: none repeat scroll 0 0 transparent;
	color: rgb(57, 57, 57);
	font-family: "ff-meta-web-pro", Trebuchet MS,Helvetica Neue,Helvetica,Arial,sans-serif;
	font-size: 12px;
	line-height: 14px;
	padding: 0px 0 0px 10px;
	/* width: 215px; */
}
.modal_list_column .no_match {
	opacity: 0.4;
}
#sitemap .modal_list .modal_list_column a {
	color: rgb(82, 78, 71);
	float: left;
	width: 100%;
}
.sitemap_modal li.sitemap_hide {
	display: none;
}

#sitemap .modal_list_column .modal_titles, #departments_modal .modal_list_column .modal_titles, .modal_list_column .modal_titles {
	color: rgb(57, 57, 57);
	float: left;
	font-family: "ff-meta-web-pro", "Trebuchet MS","Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.25em;
	padding: 3px 6px;
	width: 225px;
}

#sitemap .modal_list_column a.modal_titles:hover {
	background: none repeat scroll 0 0 rgb(150, 27, 30);
	color: white;
	text-decoration: none;
}

/* /end - imported CSS for sitemap modal */



/* --------------------- Modal Window Sitemap -------------------------- */



#sitemap
 .modal_list_column a:hover {
    color: #ffffff;
    background: #A12929;
}

/* ------ Necessary CSS for #sitemap, reset for navigation styles ----- */

#sitemap .modal_list_column ul, #sitemap .modal_list_column li, #sitemap .modal_list_column a{
	background: none;
	border: none;
	width: auto;
	clear: both;
}

#sitemap .modal_list_column h2{
	display: none;
}

#sitemap ul.section_nav{
	display: block;
	width: auto;
	}

#sitemap a.ir{
	display: none;
	}

#sitemap ul.section_nav ul ul, #sitemap ul.section_nav ul ul li, #sitemap ul.section_nav ul, #sitemap ul.section_nav ul li, #sitemap ul.section_nav li a, #sitemap ul.section_nav li {
	/* width: 100%; */
	display: block;
	padding: 0;
	margin: 0;
	height: auto;
}

#sitemap ul.section_nav li{
	display: block;
	width: 100%;
}

/* ------- End Reset, style sitemap text below ----- */

#sitemap nav{
	padding: 1px 0px 2px 10px;
}

#sitemap nav ul.section_nav li ul{
	padding: 0px 3px 2px 10px;
	width: auto;
}

#sitemap nav ul.section_nav li , #sitemap nav ul.section_nav ul li{
	margin-top: 7px;
}








/*
 * new styles for sharing
 *
 *
 */

.navigation .follow_us h1 {
	font-size: 12px;
	text-transform:	none;
	font-weight: bold;
	border: none;
	margin: 0 6px 0 0;
	float: left;
}

section.share_buttons {
	border-top: 1px solid rgb(206, 206, 206);
	border-bottom: 1px solid rgb(206, 206, 206);
	padding: 6px 0 0 0;
	margin: 20px 0;
	height: 26px;
}

section.share_buttons .share {
	margin-right: 10px;
	float: left;
}

#global_footer .wcmc_logo {
	background-image: url('../images/footer/footer_logo_wcmc.gif');
	width: 171px;
	height: 37px;
}

#global_footer .nyp_logo {
	background-image: url('../images/footer/footer_logo_nyp.gif');
	width: 174px;
	height: 37px;
}

/* End new styles for sharing */







/**
 * IE Overrides and Fixes
 */
.ie6 nav .section_nav li a:visited {
	color: rgb(255, 255, 255);
}


.ie6 .breadcrumbs .mover a {
	height: 18px;
}
.no-csstransitions #wcmc_shield_tag {
	display: none;
}
.ie6 #wcmc_shield_tag,
.ie7 #wcmc_shield_tag,
.ie8 #wcmc_shield_tag {
	display: none;
	width: 245px;
}
.no-csstransitions .mover:hover #wcmc_shield_tag,
.ie7 .breadcrumbs .mover:hover #wcmc_shield_tag,
.ie8 .breadcrumbs .mover:hover #wcmc_shield_tag {
	display: block;
}


.ie6 .navigation .follow_us li a {
	background-image: url(../images/social_icons_30.gif);
}


.ie6 #global_footer .logos {
 width: 500px;
}
.ie6 #global_footer .social_and_site_links ul li {
 float: right;
}
.ie6 #global_footer .social_and_site_links .social_sprite {
	background-image: url(../images/footer/social_icons.gif);
}

.ie7 #content .navigation a.ir{
	display: inline;
	}
.ie7 nav.clearfix h1 a.ir{

}

.ie7 nav.breadcrumbs li{
	float: left;
	clear: none;
	display: inline;
}

.ie7 #content .navigation a {
	display: inline;
	text-indent: 0;
}

.ie7 #content ul.section_nav, .ie7 #content li.navigation h2 a{
	display: none;
}




/*
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/
 */
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
  -ms-filter: none !important; } /* black prints faster: sanbeiji.com/archives/953 */
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}