/*
	This CSS File is theme independent.  Theme specific CSS
	should be placed in the [theme].css file under 
	App_Themes\[themename]\[themename].css
*/
/* Global font specifier */
*
{
	font-family: Verdana, Arial, Segoe UI,Tahoma !important;
}

/* Elements */
body a
{
	text-decoration: none;
}

body a:hover
{
	text-decoration: underline;
}

h1
{
	font-size: 1em;
	margin-bottom: 0.25em;
	margin-top: 0.0em;
	color: Black;
}

h2
{
	font-size: 1em;
	margin-bottom: 0.5em;
	color: Black;
}

h3
{
	font-size: 1em;
	margin-bottom: 0.25em;
	color: Black;
}

h4
{
	font-size: 1em;
	margin-bottom: 0.25em;
	color: Black;
}

hr
{
	color: #c8d6e6;
}

ul > li
{
	padding-bottom: .5em;
}

/* this style will prevent overflow when there is text that 
has no white space (which would otherwise cause a line break) */
.wrapLongText
{
	overflow: auto; /* force a scroll bar if the content is too wide */
	word-wrap: break-word; /* Internet Explorer 5.5+ */
	width: 99%; /* remove horizontal scroll-bar when viewing in IE7 */
}

/* Styling by ID */
/* Note that padding contributes to the overall
height/width of an element - so an element that is 100px wide
with padding of 25px for each side will actually be
150 px wide.
*/

.noWrap
{
	white-space: nowrap;
}

/* Header */
#header
{
	text-align: left;
}

/* to make the header image clickable*/
#header .MMPCLogo
{
	position: absolute;
	margin-top: 5px;
	margin-left: 10px;
	width: 515px;
	height: 4.25em;
	text-decoration: none;
	font-size: 1.65em;
	color: Black;
}

#headertop
{
	height: 5em;
	min-height: 5em;
	margin-top: 0;
	margin-bottom: 10px;
	margin-left: 10px;
	margin-right: 10px;
}

/* Logo */
#headertopleft
{
	float: left;
}

#mslogo
{
	background: #CEE5F3 url('../graphic/top_page_bg.jpg' );
	text-align: left;
	padding-top: 10px;
	padding-bottom: 5px;
	padding-left: 19.5px;
}

#mslogo a
{
	text-decoration: none;
}

/* me tile */
/* quick search */
#headertopright
{
	text-align: right;
}

#headermiddle
{
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
}

/* menu */
#headerbottom
{
	clear: both;
	min-height: 29px;	
	height:1.8em;	
	background-color: #02538d;
	background-image: url('../graphic/menubg.png' );
	background-repeat:repeat-x;
}

#headerbottomcenter
{		
	vertical-align: middle;
	margin-left: 5px;
	margin-right: 10px;
}

/* alert message - see message classes below for background */
#alertMessage
{
	font-size: .8em;
}

#alertMessage div
{
	padding-left: 30px;
	background-color: #FFFFFF;
	min-height: 25px;
}



/* usertile */
#usertile
{
	margin-top: 12px;
	width: 17.3125em;
	min-width: 17.3125em;
	height: 4.375em;
	min-height: 4.375em;
}

#usermenuandlinks
{
	height: 3em;
	min-height: 3em;
}

#usertile #links
{
	text-align: right;
	font-size: .8em;
}

#usertile #links a, #usertile #links a:visited
{
	color: Black;
}

#quicksearch
{
	text-align: left;
	white-space: nowrap;
}

#usertile #quicksearch
{
	text-align: right;
	float: right;
	margin-right: 0;
}

#quicksearch .searchhint
{
	padding: 0;
	padding-left: .25em;
	width: 11.25em;
	vertical-align: top;
	text-align: center;
}

#quicksearch .searchtext
{
	padding: 0;
	padding-left: .25em;
	width: 11.25em;
	vertical-align: top;
}

#quicksearch .searchtext
{
	font-style: normal;
	color: #000000;
}

#quicksearch .searchhint
{
	font-style: italic;
	color: #C0C0C0;
}

#quicksearch .searchicon
{
	vertical-align: top;
}

/* main body */
#body
{
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 24px;
	min-height: 32.125em;
	margin: 0;
	font-size: 1em; /* the font size must be at 1em, or all 16px = 1em calculations are toast  */
	text-align: left;
}


/*overlay div settings*/
/*  Modal div */
#overlay
{
	visibility: hidden;
	position: absolute;
	background-color: #666666;
	filter: alpha(opacity=70);
	opacity: 0.7;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 1000;
}

#overlay div
{
	position: relative;
	top: 50%;
	width: 18.75em;
	margin: 6.25em auto;
	background-color: #FFFFFF;
	border: .063em solid #000;
	padding: 1em;
	text-align: center;
	z-index: 1000;
}

#message
{
	border: 1px #e9eaf1 solid;
	vertical-align: middle;
	font-size: .85em;
	width: 100%;
	margin-bottom: .25em;
}

#message img
{
	height: 1em;
	width: 1em;
	border: 0;
	padding: .3em .5em .3em .5em;
	vertical-align: middle;
}

/* use classes for severity level */
.None
{
	display: none;
}

.Help, .Information
{
	background: url('../graphic/SecurityInformation.png' ) no-repeat;
	text-align: justify;
	vertical-align: top;
}

.Warning, .SecurityWarning
{
	background: url('../graphic/SecurityWarning.png' ) no-repeat;
	text-align: justify;
	vertical-align: top;
}

.Critical, .SecurityCritical
{
	background: url('graphic/SecurityCritical.png' ) no-repeat;
	text-align: justify;
	vertical-align: top;
}

/* Messages getting displayed in Content area */
.contentNone
{
	display: none;
}

.contentMessageText
{
	color: #000000;
}

.saidMessageWrapper
{
	text-align: justify;
}

.validationmessage
{
	width: 250px;
}

.messageIcon
{
	height: 24px;
	width: 24px;
}

.bulletsListStyle
{
	list-style-type: disc;
	padding-left: 20px;
	margin-left: 0px;
}

#navigation
{	
	min-height:2em;
	font-size: .80em;
}

#breadCrumb
{
	clear: both;
	float: left;	
	padding-bottom:10px;
}

#commandBar
{
	float: right;	
	padding-bottom:10px;
}

.separatorbar
{
	padding-left: 15px;
	padding-right: 15px;
}

/*  Content */
#content
{
	clear: both;
	min-height: 29.9em;
}

#contentMain
{
	min-height: 27.4em;
}

/* *** Page patterns *** */
td
{
	vertical-align: top;
}

.messageText
{
	vertical-align: middle;
	padding-bottom: 3px;
}

.contentnone
{
	display: none;
}

.contentWrapper
{
	width: 450px;
	overflow: hidden;
}

.contentViewImage
{
	margin-right: 8px;
}

/* style for pages that use the master page (no pattern) with a single section */
.contentFull
{
	min-width: 940px;
	width: 940px;
}

/* common table attributes for all patterns */
#pattern1, #pattern2, #pattern3, #pattern4, #pattern5, #pattern6, #pattern8, #pattern9
{
	border: 0;
}

/* pattern 1 */
#pattern1 .contentTop, #pattern1 .contentCenter, #pattern1 .contentBottom
{
	min-width: 940px;
	width: 940px;
}

#pattern2 .contentLeft, #pattern2 .contentRight, #pattern3 .contentLeft, #pattern3 .contentRightTop, #pattern3 .contentRightBottom, #pattern4 .contentLeftTop, #pattern4 .contentLeftBottom, #pattern4 .contentRight, #pattern5 .contentLeftBottom, #pattern5 .contentLeftTop, #pattern5 .contentRightTop, #pattern5 .contentRightBottom, #pattern7 .contentLeftFirst, #pattern7 .contentLeftSecond, #pattern7 .contentLeftThird, #pattern7 .contentLeftFourth, #pattern7 .contentRightFirst, #pattern7 .contentRightSecond, #pattern7 .contentRightThird, #pattern7 .contentRightFourth, #pattern8 .contentLeft, #pattern8 .contentRightTop, #pattern8 .contentRightMiddle, #pattern8 .contentRightBottom, #pattern10 .contentLeftFirst, #pattern10 .contentLeftSecond, #pattern10 .contentLeftThird, #pattern10 .contentRightFirst, #pattern10 .contentRightSecond, #pattern10 .contentRightThird
{
	width: 465px;
	min-width: 465px;
}

/* pattern 6 */
#pattern6 .contentcenter
{
	overflow: hidden;
}

#pattern9 .contentTop
{
	width: 940px;
	min-width: 940px;
}

/* defines content display: common among all patterns */
.contentcell
{
	margin-bottom: 10px;
	margin-right: 10px;
}

.contentText
{
	font-size: .8em;
	width: auto;
	color: #545454;
}

.contentTextAdditions
{
	font-size: .8em; 
	font-family: Verdana, Arial;
}

/* Footer */
#footer
{
	text-align: center;
}

#footercontent
{
	color: #ffffff;
	bottom: 0px;
	vertical-align: bottom;
	margin-bottom: 0.1em;
}

#footer a, #footer a:visited
{
	color: #ffffff;
	font-size: .7em;
}

#footerleft
{
	clear: both;
	float: left;
	text-align: left;
	padding-top: .1em;
}

#footerright
{
	float: right;
	padding-top: .25em;
}

#footerbottom
{
	clear: both;
	font-size: .8em;
	text-align: right;
	color: #ffffff;
}

/* Submission List */
#submissionlist

{
	white-space: normal;
	margin-bottom: 0;
}

#submissionCount
{
	text-align: left;
	margin-bottom: .3em;
}

#submissionListSort
{
	text-align: center;
	width: 100%;
	margin-bottom: .3em;
	padding-bottom: .3em;
	border-bottom: solid .0625em #BBCCDD;
}

#submissionListSort a
{
	color: #000000;
	margin-right: 5px;
	margin-left: 5px;
}

#submissionListSort img
{
	margin-right: 5px;
}

#selectedSubmissionDiv
{
	border-top: solid .125em #BBCCDD;
	border-bottom: solid .125em #BBCCDD;
}

#selectedSubmissionDiv > div
{
	background-color: #DDFFFF;
	padding-top: .25em;
	padding-bottom: .5em;
	margin-top: .2em;
	margin-bottom: .2em;
}

#submissionListItem
{
	border-bottom: solid .0625em #BBCCDD;
	padding-bottom: .4em;
	margin-bottom: .3em;
	margin-top: .3em;
}

/* Browse */
#letters ul li
{
	display: inline;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	padding-left: 19px;
}

.SelectedLetter
{
	color: Navy;
	font-weight: bold;
}

/* Paging */
#paging ul
{
	margin-left: 0;
}

#paging ul li
{
	display: inline;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	padding-left: 4px;
}

.selected
{
	color: Navy;
	font-weight: bold;
}

/*Glossary*/
.glossaryLinks
{
	padding-left: 5px;
}

.sectionpadding
{
	padding-left: 20px;
	font-size: .9em;
}

.sectionheadingtag
{
	font-size: .9em;
	display: inline;
}

/* Page message style */
.pageInfoMessage
{
	background-color: #C8D6E6;
	color: #000000;
	border: #7395BF 1px solid;
}

/* Menu style */
#menu .AdapterMenu ul.TE-Menu /* Tier 1 */
{
	min-width: 800px;
	width: 60em;
	vertical-align: middle;		
}

#menu .AdapterMenu ul.TE-Menu ul /* Tier 2 */
{
	width: 14.3em;
	top: 100%;
	left: 0;	
}

#menu .AdapterMenu li /* all list items */
{
	padding-bottom: 0;
	padding-right: 3.5em;
	font-size: .9em;	
}

#menu .AdapterMenu ul li ul
{
	border-top: 1px solid #CCCCCC;
	border-left: 1px solid #CCCCCC;
	border-bottom: solid 2px gray;
	border-right: solid 2px gray;		
}

#menu .AdapterMenu ul li ul li
{
	width: 100%;
	background-color: #FFFFFF;
	font-size: .9em;
	padding: 0.25em 0 0.25em 0;
}

/* User Menu style */
#usermenu div
{
	height: 1.2em;	
}

#usermenu .AdapterMenu ul.TE-Menu /* Tier 1 */
{
	width: 100%;
/*	z-index: 30; */
	z-index: 99999;
}

#usermenu .AdapterMenu ul.TE-Menu ul /* Tier 2 */
{
	width: 13em;
	top: 100%;
	right: 0;	
}

#usermenu .AdapterMenu li /* all list items */
{
	background-color: Transparent;
	text-align: right !important;
	float: right !important;
	font-size: .8em;
	padding: 0 0 0 .625em;	
}

#usermenu .AdapterMenu ul li ul
{
	border: solid .0625em #C0C0C0;	
}
#usermenu .AdapterMenu ul li ul li
{
	width: 100%;
	background-color: #FFFFFF;
	padding: 0.25em 0 0.25em 0;
	text-align: left !important;
	float: left !important;
	font-size: 1em !important;
}

.AdapterMenu li.TE-Menu-Leaf > a:hover, .AdapterMenu li.TE-Menu-Hover /* list items being hovered over */
{
	color: #0066CC;
}

.AdapterMenu a, .AdapterMenu span /* all anchors and spans (nodes with no link) */
{
	color: #FFFFFF;
	padding: 0;
	border: 0px solid gray;
}

#menu .TE-Menu-WithChildren
{
	z-index: 3;
	height: 25px;
}

/* list items being hovered over */
#menu .TE-Menu-WithChildren > span
{
	margin-top: 3px;
	padding-left: 1px;
	padding-right: 1px;
	border-bottom: 1px solid #035e97;
}

#menu .TE-Menu-WithChildren > span:hover, #menu .TE-Menu-Selected > span, #menu .TE-Menu-ChildSelected > span, #menu .TopMenuSelectedSpan
{
	margin-top: 2px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
	border: 1px solid #1c4a67 !important;
}

#menu .TE-Menu-WithChildren > span > a
{
	padding-top: 1px;
	padding-left: 5px;
	padding-right: 5px;
	border-bottom: 1px solid #035e97;
}

#menu .TE-Menu-WithChildren > span > a:hover, #menu .TE-Menu-Selected > span > a, #menu .TE-Menu-ChildSelected > span > a, #menu .TopMenuSelectedAnchor
{
	padding-top: 0px !important;
	padding-left: 4px !important;
	padding-right: 4px !important;
	border: 1px solid #d3e4ed !important;
	background-image: url('../graphic/menuinnerbg.png' ) !important;	
}

#usermenu .AdapterMenu li:hover, .AdapterMenu li.TE-Menu-Hover /* list items being hovered over */
{
	vertical-align: middle;
}

.AdapterMenu li.TE-Menu-Leaf a, .AdapterMenu li.TE-Menu-Leaf span /* leaves */
{
	background-image: none !important;
	padding: 0px 2px 0px 8px;
}

.AdapterMenu li:hover li a, .AdapterMenu li:hover li span, .AdapterMenu li.TE-Menu-Hover li a, .AdapterMenu li.TE-Menu-Hover li span, .AdapterMenu li:hover li:hover li a, .AdapterMenu li:hover li:hover li span, .AdapterMenu li.TE-Menu-Hover li.TE-Menu-Hover li a, .AdapterMenu li.TE-Menu-Hover li.TE-Menu-Hover li span /* the tier above this one is hovered */
{
	color: Black;
}

#menu .AdapterMenu li ul li:hover, .AdapterMenu li ul li.TE-Menu-Hover
{
	border-style: none;
	background-image: none;
}

.AdapterMenu span.TE-Menu-NonLink
{
	color: Silver !important;
}

.MenuDropArrow
{
	border: none;
	vertical-align: middle;
	padding-left: .3em;
}

/* Menu item width settings according to the width of text being displayed */
#menu .AdapterMenu > div > ul > li + li + li > ul
{
	width: 12.5em !important;
}

#menu .AdapterMenu > div > ul > li + li + li + li > ul
{
	width: 14.4em !important;
}

#menu .AdapterMenu > div > ul > li + li + li + li
{
	padding-right:0;
}

ul.link_sharing {
	list-style: none;
}

ul.link_sharing li {
	float:   left;
	padding: 0 3px 0 3px;
}

ul.link_sharing a span {
	background-color: black;
	position:         absolute;
	top:              0;
	left:             0;
	width:            60px;
	height:           60px;
	z-index:          100;
	opacity:          0.2;
}

ul.link_sharing img {
	opacity: 0.7;
}

ul.link_sharing img:hover {
	opacity: 1.0;
}

.overlap {
	position: relative;           /* establish new containing block */
	width: 600px; height: 400px;  /* must specify width/height */
}
.overlap .sw { position: absolute; }
	
.overlap .sw { 
	float: right;
	padding: 60px 0 0 360px;
	top: 0; 
	left: 0; 
	z-index: 2; 
}
	
.welcomemsg
{
	font-weight: bold;
	color: #000000 !important;
}
	
.mmpcReducedText
{
	font-size: .7em;
}

.box01, .box01 a, .box01 a:link, .box01 a:visited, .box01 a:hover, .box01 a.active 
{ 
	border: 1px solid #555555;
	text-decoration: none;

}

.centeredImage
{
  *text-align:center;
  *margin-top:0px;
  *margin-bottom:0px;
  *padding:0 0 5px 0;
}
