

/* page.css
****************************************************************
****************************************************************
****************************************************************/


/* width:700px = (margin:20px * 5) + (grid:100px * 6)
****************************************************************
****************************************************************/


/* Basic Layout and Fonts
****************************************************************/

.content
{
	/* override */
	width: auto;
	margin: 0;
}


/* Page Width
****************************************************************/

body,
.sitewide .header
{
	/* width:700px + (margin:20px * 2) */
	min-width: 740px;
}

.content .content-inner, /*COMPAT*/ #content,
.sitewide .header .nav-inner,
.sitewide .footer .footer-inner
{
	/* width:700px */
	width: 700px;
	margin: 0 auto;
}


/* Site-Wide Header
****************************************************************/

.sitewide .header
{
	position: absolute;
	z-index: 9000;
	width: 100%;
	/* line:24px */
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
	/* 0 0 (line:24px / 4) 0 */
	-o-box-shadow: 0 0 6px 0 black;
	-moz-box-shadow: 0 0 6px 0 black;
	-webkit-box-shadow: 0 0 6px 0 black;
	box-shadow: 0 0 .6rem 0 black;
}

/* min-device-width:(700px - 1px) + (margin:20px * 2) + scrollbar:16px */
/* TODO: Update for mobile style. */
@media screen and (min-device-width: 755px)
{
	.sitewide .header
	{
		position: fixed;
	}
}

.content
{
	/* push content down below header */
	
	/* line:24px * 5 */
	/* With banner:
	padding-top: 120px;
	padding-top: 12rem; */
	
	/* line:24px * 3 */
	/* Without banner: */
	padding-top: 72px;
	padding-top: 7.2rem;
}

.sitewide .header .banner
{
	background-color: #BB0000;
	color: white;
	text-align: center;
}

.sitewide .header .banner a
{
	display: block;
	color: white;
	padding: 12px 0;
	font-size: 18px;
	font-size: 1.8rem;
}

.sitewide .header .banner em
{
	font-size: 14px;
	font-size: 1.4rem;
}

.sitewide .header .nav
{
	/* 0 margin:20px */
	padding: 0 20px;
	margin: 0;
}

.sitewide .header .nav ul
{
	/* 0 (margin:20px / 2) */
	padding: 0 10px;
	/* 0 (-margin) */
	margin: 0 -20px;
	list-style-type: none;
	width: auto;
}

.sitewide .header .nav li
{
	float: left;
	display: inline;
	/* 0 (margin:20px / 2) */
	margin: 0 9px;
}

.sitewide .header .primary
{
	-o-text-shadow: 0 -1px -1px rgba(0, 0, 0, 0.25);
	-moz-text-shadow: 0 -1px -1px rgba(0, 0, 0, 0.25);
	-webkit-text-shadow: 0 -1px -1px rgba(0, 0, 0, 0.25);
	text-shadow: 0 -1px -1px rgba(0, 0, 0, 0.25);
	/* gradient */
	background-color: #007788; /* old browsers */
	background: -moz-linear-gradient(top, #006677 0%, #0099AA 100%); /* Firefox 3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #006677), color-stop(100%, #0099AA)); /* Chrome and Safari 4+ */
	background: -webkit-linear-gradient(top, #006677 0%, #0099AA 100%); /* Chrome 10+ and Safari 5.1+ */
	background: -o-linear-gradient(top, #006677 0%, #0099AA 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #006677 0%, #0099AA 100%); /* Internet Explorer 10+ */
	background: linear-gradient(top, #006677 0%, #0099AA 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006677', endColorstr='#0099AA', GradientType=0); /* Internet Explorer 6-9 */
	
	/* 25th logo */
	/*
	background-color: #8A9B89;
	background-image: url(/media/images/common/sitewide-header-25th-background-narrow.jpg);
	background-position: center center;
	background-repeat: repeat;
	background-size: auto 100%;
	*/
}

/* 25th logo */
/*
@media (-webkit-min-device-pixel-ratio: 2)
{
	.sitewide .header .primary
	{
		background-image: url(/media/images/common/sitewide-header-25th-background-narrow-x2.jpg);
	}
}
*/

.sitewide .header .primary ul
{
	/* line:24px */
	height: 24px;
	height: 2.4rem;
	/* (line:24px * (1 / 3))
	   (margin:20px * 3 / 4)
	   (line:24px * (2 / 3))
	   (margin:20px / 2) */
	padding: 16px 15px 8px 10px;
	padding: 1.6rem 15px .8rem 10px;
}

.sitewide .header .primary li
{
	/* line:24px */
	height: 24px;
	height: 2.4rem;
}

.sitewide .header .primary li.logo
{
	overflow: visible;
}

.sitewide .header .primary li.logo a
{
	display: block;
	/* line:24px * 2 */
	height: 48px;
	height: 4.8rem;
	/* arbitrary */
	width: 163px;
	/* (-line:24px * 1/3) 0 (-line:24px * 2/3) */
	margin: -16px 0 -8px;
	margin: -1.6rem 0 -.8rem;
	background-image: url(/media/images/common/sitewide-header-logo.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	/* 25th logo */
	/*
	width: 168px;
	background-image: url(/media/images/common/sitewide-header-25th-logo.png);
	*/
}

@media (-webkit-min-device-pixel-ratio: 2)
{
	.sitewide .header .primary li.logo a
	{
		background-image: url(/media/images/common/sitewide-header-logo-x2.png);
		/* 25th logo */
		/*
		background-image: url(/media/images/common/sitewide-header-25th-logo-x2.png);
		*/
	}
}

.sitewide .header .primary li.logo img
{
	display: none;
}

.sitewide .header .primary li,
.sitewide .header .primary li a
{
	color: white;
	text-transform: uppercase;
}

.sitewide .header .secondary
{
	/* line:24px - 2px */
	height: 22px;
	height: 2.2rem;
	/* line:24px - 2px */
	line-height: 22px;
	line-height: 2.2rem;
	/* 2px */
	border-top: 2px solid white;
	border-top-width: .2rem;
	font-size: 12px;
	font-size: 1.2rem;
	background-color: #EEEEEE;
	-o-text-shadow: 0 1px 1px white;
	-moz-text-shadow: 0 1px 1px white;
	-webkit-text-shadow: 0 1px 1px white;
	text-shadow: 0 1px 1px white;
}

.sitewide .header .secondary li
{
	/* line:24px - 2px */
	height: 22px;
	height: 2.2rem;
}

.sitewide .header .secondary li.search
{
	float: right;
	display: inline;
}

.sitewide .header .secondary li.search .button-wrapper,
.sitewide .header .secondary li.search .input-wrapper
{
	float: right;
	display: inline;
	/* margin:20px / 4 */
	margin-left: 5px;
}

.sitewide .header .secondary li.search .input-wrapper input
{
	display: block;
	background: white;
	border: none;
	/* line:24px - 4px */
	height: 20px;
	height: 2.0rem;
	/* 0 (margin:20px / 4) */
	padding: 0 5px;
	margin: 1px 0;
	-o-box-shadow: inset 0 0 3px black;
	-moz-box-shadow: inset 0 0 3px black;
	-webkit-box-shadow: inset 0 0 3px black;
	box-shadow: inset 0 0 3px black;
}

.sitewide .header .secondary li.search .input-wrapper input:focus
{
	outline: none;
	-o-box-shadow: inset 0 0 3px #BB0000;
	-moz-box-shadow: inset 0 0 3px #BB0000;
	-webkit-box-shadow: inset 0 0 3px #BB0000;
	box-shadow: inset 0 0 3px #BB0000;
}

.sitewide .header .secondary li.search .button-wrapper input
{
	display: block;
	background: none;
	background-image: url(/media/images/common/sitewide-header-search-v2.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border: none;
	cursor: pointer;
	/* 16px */
	width: 16px;
	/* line:24px - 2px */
	height: 22px;
	height: 2.2rem;
	padding: 0;
	margin: 0;
	overflow: hidden;
	text-indent: -9999px;
	-o-box-sizing: content-box;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

@media (-webkit-min-device-pixel-ratio: 2)
{
	.sitewide .header .secondary li.search .button-wrapper input
	{ background-image: url(/media/images/common/sitewide-header-search-x2.png); }
}

.sitewide .header .nav li
{
	overflow: hidden;
}

.sitewide .header .nav li:hover
{
	overflow: visible;
}

.sitewide .header .nav li li
{
	/* 12pt 'pica' */
	font-size: 12px;
	font-size: 1.2rem;
	/* override */
	float: none;
	display: block;
	overflow: visible;
	height: auto;
	margin: 0;
}

.sitewide .header .nav li li a
{
	display: block;
	/* override */
	text-transform: none;
}

.sitewide .header .nav li li a.more
{
	text-transform: lowercase;
	text-align: right;
}

.sitewide .header .nav li .ul-wrapper
{
	position: relative;
	
	/* A bug in Firefox prevents us from using
	   percentages in padding here. */
	/* padding: 0 50%; */
	/* Instead we use 50% width and float right (see below); */
	width: 50%;
}

.sitewide .header .nav li ul
{
	background-color: white;
	/* margin:20px * 6 */
	width: 120px;
	/* (line:24px / 2) margin:20px */
	padding: 12px 20px;
	padding: 1.2rem 20px;
	/* 0 (-(margin:20px * (6 + 2)) / 2) */
	margin: 0 -80px;
	
	/* See note on Firefox bug above */
	float: right;
	clear: right;
	display: inline;
	
	/* override */
	overflow: visible;
	height: auto;
}

.sitewide .header .nav li:hover ul
{
	-o-box-shadow: 0 0 .6px 0 black;
	-moz-box-shadow: 0 0 .6px 0 black;
	-webkit-box-shadow: 0 0 .6px 0 black;
	box-shadow: 0 0 .6rem 0 black;
}


/* Site-Wide Header + Taylor Lawsuit
****************************************************************/

.sitewide .header .secondary li.search .input-wrapper input
{
	width: 100px;
}

.sitewide .header .nav li.taylor-alt-a,
.sitewide .header .nav li.taylor-alt-b
{
	display: none;
}

.sitewide .header .nav li.donate
{
	overflow: visible;
}

.sitewide .header .primary li,
.sitewide .header .primary li a
{
	display: block;
	position: relative;
	z-index: 10000;
}

.sitewide .header .nav li.donate a,
.sitewide .header .nav li.donate a .after
{
	display: block;
	z-index: 9500;
	background-image: url(/media/images/2013/masthead-miriam.png);
	background-size: 212px 72px;
	background-size: 21.2rem 7.2rem;
	background-repeat: no-repeat;
}


@media (-webkit-min-device-pixel-ratio: 2)
{
	.sitewide .header .nav li.donate a,
	.sitewide .header .nav li.donate a .after
	{
		background-image: url(/media/images/2013/masthead-miriam-2x.png);
	}
}


.sitewide .header .nav li.donate a
{
	position: relative;
	width: 100px;
	width: 10rem;
	height: 48px;
	height: 4.8rem;
	margin: -16px -20px 0;
	margin: -1.6rem -2rem 0;
	text-indent: -9999px;
	background-position: -100px 0;
	background-position: -10rem 0;
}

.sitewide .header .nav li.donate a .after
{
	position: absolute;
	top: 48px;
	top: 4.8rem;
	left: -100px;
	left: -10rem;
	width: 212px;
	height: 24px;
	background-position: 0 -48px;
	background-position: 0 -4.8rem;
}


/* Site-Wide Header + Promotions
*  (began as Ballot Proposals 2012,
*   currently running Right-to-Work)
****************************************************************/

.sitewide .header .nav li.bp2012-alt-a
{
	display: none;
}

.sitewide .header .nav .miballot2012 a
{
	display: block;
	width: 83px;
	height: 24px;
	text-indent: -9999px;
	overflow: hidden;
	background-image: url(/media/images/2012/MIballot2012UpperMenu.png);
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

@media (-webkit-min-device-pixel-ratio: 2)
{
	.sitewide .header .nav .miballot2012 a
	{
		background-image: url(/media/images/2012/MIballot2012UpperMenu-x2.png);
	}
}

.sitewide .header .nav li.share
{
	float: right;
	display: inline;
	margin-left: 0;
	/* margin:20px / 4 */
	margin-right: 5px;
}

.sitewide .header .nav li.share ul
{
	/* override */
	/* (margin:20px * 2) - (1px * 2) */
	width: 38px;
	/* (line:24px / 4) 0 */
	padding: 6px 0;
	padding: .6rem 0;
	/* 1px */
	border: solid 1px white;
	/* 0 (-(margin:20px * 2) / 2) */
	margin: 0 -20px;
	background-color: #008899;
	/* background-color: #51797F; *//* 25th logo */
}

.sitewide .header .nav li.share ul li
{
	text-align: center;
}

.sitewide .header .nav li.share a,
.sitewide .header .nav li.share .label
{
	display: block;
	/* line:24px */
	height: 24px;
	height: 2.4rem;
	margin: 0 auto;
	overflow: hidden;
	text-indent: -9999px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	opacity: 0.6;
	filter: alpha(opacity=60);
  -o-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.sitewide .header .nav li.share a:hover,
.sitewide .header .nav li.share:hover .label
{
	opacity: 1.0;
	filter: alpha(opacity=100);
}

.sitewide .header .nav li.share .label
{ width: 18px; background-image: url(/media/images/common/sitewide-header-share.png); }
.sitewide .header .nav li.share ul li.twitter a
{ width: 24px; background-image: url(/media/images/common/sitewide-header-twitter-v2.png); }
.sitewide .header .nav li.share ul li.facebook a
{ width: 9px;  background-image: url(/media/images/common/sitewide-header-facebook-v2.png); }
.sitewide .header .nav li.share ul li.email a
{ width: 19px; background-image: url(/media/images/common/sitewide-header-email-x1.png); }
.sitewide .header .nav li.share ul li.mobile a
{ width: 10px; background-image: url(/media/images/common/sitewide-header-mobile-v2.png); }
.sitewide .header .nav li.share ul li.rss a
{ width: 20px; background-image: url(/media/images/common/sitewide-header-rss-x1.png); }

@media (-webkit-min-device-pixel-ratio: 2)
{
	.sitewide .header .nav li.share .label
	{ background-image: url(/media/images/common/sitewide-header-share-x2.png); }
	.sitewide .header .nav li.share ul li.twitter a
	{ background-image: url(/media/images/common/sitewide-header-twitter-x2.png); }
	.sitewide .header .nav li.share ul li.facebook a
	{ background-image: url(/media/images/common/sitewide-header-facebook-x2.png); }
	.sitewide .header .nav li.share ul li.email a
	{ /*background-image: url(/media/images/common/sitewide-header-email-x2.png);*/ }
	.sitewide .header .nav li.share ul li.mobile a
	{ background-image: url(/media/images/common/sitewide-header-mobile-x2.png); }
	.sitewide .header .nav li.share ul li.rss a
	{ /*background-image: url(/media/images/common/sitewide-header-rss-x2.png);*/ }
}


/* Site-Wide Footer
****************************************************************/
	
.sitewide .footer
{
	position: absolute;
	bottom: 0;
	clear: both;
}

.sitewide .footer .logo
{
	position: absolute;
	top: 0;
	/* grid:100px */
	width: 100px;
	/* 0 (-margin:20px) */
	margin: 0 -20px;
}

.sitewide .footer .logo img
{
	float: left;
	display: inline;
	/* line:24px margin:20px */
	padding: 24px 20px;
	padding: 2.4rem 20px;
}

.sitewide .footer .colset
{
	/* line:24px 0 */
	margin-top: 24px;
	margin-top: 2.4rem;
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.sitewide .footer .primary ul
{
	text-align: right;
}

.page, /*COMPAT*/ #page
{
	/* push footer to bottom of window */
	position: relative;
	min-height: 100%;
	overflow: hidden;
}

/*.content, *//*COMPAT*/ .prefooter
{
	/* push content up above footer */
	/* (line:24px * 12) + (line:24px * 1 1/2) */
	padding-bottom: 324px;
	padding-bottom: 32.4rem;
	/*COMPAT*/
	width: 100%;
	float: left;
	display: inline;
}


/* Legacy "Legal Foundation" Menus and Breadcrumbs
****************************************************************/

#lf_breadcrumb { color: #666666; font-size: 12px; }
#lf_breadcrumb a { color: #666666; }
/* #lf_breadcrumb a:hover { color: #FFAA00; } */
#lf_intro { padding: 15px 0; }
#lf_intro h1 { padding: 0; margin: 0; }
#lf_intro p { color: #666666; font-size: 14px }
#lf_body { width: 450px; padding: 0 0 10px; float: left; }
#lf_body h2 { padding: 5px 0 0; }
#lf_sidebar { border-top: 1px solid #999999; padding-top: 10px; width: 225px; float: right; }
.lf_sb_menu ul { list-style: none; padding: 0 0 10px; }
.lf_sb_menu li { padding: 2px 0; font-size: 12px; margin-left: 15px; }
.lf_sb_menu a { color: #666666; }
/* .lf_sb_menu a:hover { color: #FFAA00; } */
.lf_sb_menu h2 { padding-left: 15px; cursor: pointer;
  background: white none no-repeat center left; }
.lf_sb_menu_closed h2 {
  background-image: url(/media/images/2010/mcpp_lf_sb_arrow_r.gif); }
.lf_sb_menu_closed ul { display: none; }
.lf_sb_menu_open h2 {
  background-image: url(/media/images/2010/mcpp_lf_sb_arrow_d.gif); }

