﻿/*
	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: Segoe UI,Tahoma,Arial !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;
    height: 1px;
    width: 500px;
    float: left;
    padding: 0;
    margin: 0;
}
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
{
    min-height: 5em;
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
}
/* Logo */
#headertopleft
{
    float: left;
}
#mslogo
{
    background: #CEE5F3 url(    '~/../Images/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
{
    float: right;
    text-align: right;
    max-width: 20em;  /* Don't want header-top-right elements to get too far to the middle of header */
}

#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(       '~/../Images/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;
    min-width: 17.3125em;
    float: none;
}

#SearchTitle
{
    float: right;
}

.SmallLogoHeader
{
    float: right;
    margin-right: 10px;
    margin-bottom: 5px;
}

#usermenuandlinks
{
    min-height: 3em;
    float:right;
    margin-left: 4em; /* extra distance between search and facebook icon */
}

#usertile #links
{
    text-align: right;
    font-size: .8em;
}

#usertile #links a, #usertile #links a:visited
{
    color: Black;
}

#quicksearch
{
    text-align: left;
}
#usertile #quicksearch
{
    text-align: right;
    float: right;
    margin-right: 0;
}
#quicksearch .searchhint
{
    padding: 0;
    padding-left: 1em;
    width: 350px;
    height:22px;
    vertical-align: top;
    font-size: 1.2em;
    /*text-align: center;*/
}
#quicksearch .searchtext
{
    padding: 0;
    padding-left: 1em;
    width: 350px;
    height:22px;
    vertical-align: top;
    font-size: 1.2em;
}
#quicksearch .searchtext
{
    font-style: normal;
    color: #000000;
}
#quicksearch .searchhint
{
    font-style: italic;
    color: #C0C0C0;
}
#quicksearch .searchicon
{
    /*vertical-align: top;*/
    background-color: #FFFFFF;
    margin-left: -20px;
    margin-top: 5px;
    padding-right: 3px;
}
/* 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: 30;
}
#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;
}

#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(       ' ~/../Images/SecurityInformation.png' ) no-repeat;
    text-align: justify;
    vertical-align: top;
}

.Warning, .SecurityWarning
{
    background: url(       ' ~/../Images/SecurityWarning.png' ) no-repeat;
    text-align: justify;
    vertical-align: top;
}
.Critical, .SecurityCritical
{
    background: url(       ' ~/../Images/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; */
}

/* Footer */
#footer
{
    text-align: center;
}
#footercontent
{
    color: #ffffff;
    bottom: 0px;
    vertical-align: bottom;
    margin-bottom: 0.5em;
}
#footer a, #footer a:visited
{
    color: #ffffff;
    font-size: .7em;
}
#footerleft
{
    clear: both;
    float: left;
    text-align: left;
    padding-top: .25em;
}
#footerright
{
    float: right;
    padding-top: .25em;
}
#footerbottom
{
    clear: both;
    font-size: .6em;
    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;
}
.mstNavNavItem.selected
{
    font-weight: normal;
}

/*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.AspNet-Menu /* Tier 1 */
{
    min-width: 800px;
    vertical-align: middle;
}

#menu .AdapterMenu ul.AspNet-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.AspNet-Menu /* Tier 1 */
{
    width: 100%;
    z-index: 30;
}

#usermenu .AdapterMenu ul.AspNet-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.AspNet-Menu-Leaf > a:hover, .AdapterMenu li.AspNet-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 .AspNet-Menu-WithChildren
{
    height: 25px;
}

/* list items being hovered over */
#menu .AspNet-Menu-WithChildren > span
{
    margin-top: 3px;
    padding-left: 1px;
    padding-right: 1px;
    border-bottom: 1px solid #035e97;
}
#menu .AspNet-Menu-WithChildren > span:hover, #menu .AspNet-Menu-Selected > span, #menu .AspNet-Menu-ChildSelected > span, #menu .TopMenuSelectedSpan
{
    margin-top: 2px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
    border: 1px solid #1c4a67 !important;
}
#menu .AspNet-Menu-WithChildren > span > a
{
    padding-top: 1px;
    padding-left: 5px;
    padding-right: 5px;
    border-bottom: 1px solid #035e97;
}
#menu .AspNet-Menu-WithChildren > span > a:hover, #menu .AspNet-Menu-Selected > span > a, #menu .AspNet-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(      '~/../Images/menuinnerbg.png' ) !important;
}


#usermenu .AdapterMenu li:hover, .AdapterMenu li.AspNet-Menu-Hover /* list items being hovered over */
{
    vertical-align: middle;
}

.AdapterMenu li.AspNet-Menu-Leaf a, .AdapterMenu li.AspNet-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.AspNet-Menu-Hover li a, .AdapterMenu li.AspNet-Menu-Hover li span, .AdapterMenu li:hover li:hover li a, .AdapterMenu li:hover li:hover li span, .AdapterMenu li.AspNet-Menu-Hover li.AspNet-Menu-Hover li a, .AdapterMenu li.AspNet-Menu-Hover li.AspNet-Menu-Hover li span /* the tier above this one is hovered */
{
    color: Black;
}

#menu .AdapterMenu li ul li:hover, .AdapterMenu li ul li.AspNet-Menu-Hover
{
    border-style: none;
    background-image: none;
}

.AdapterMenu span.AspNet-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;
}
#Encyclopedia_Search
{
    width:564px;
    background-color:#00B395;
    height:209px;
    padding:12px 20px;
    margin:30px 0;
}
#Encyclopedia_Search h3, #Encyclopedia_Search .browseLink 
{
    color:#ffffff;
}
#Encyclopedia_Search .contentText .browseLink 
{
    background: url("~/../Images/icon-arrow-circle-white-22px.png") no-repeat scroll right center transparent;
    display: inline-block;
    font-size: 1.2em;
    height: 22px;
    margin-top: 5px;
    padding: 6px 30px 0 0;
}
#Encyclopedia_Search .contentText
{
    color:#ffffff;
    font-size:.7em;
}
.contentText ul {
    margin: 10px 0 10px 20px;
    list-style:disc;
}
#paging ul
{
    margin-top:10px;
}

.ListThreats {
    width: 190px;
    margin-right:10px;
    margin-top: 10px;
    word-wrap: break-word;
}
.ListThreats ul
{
    padding: 0;
    margin: 0;
}
.ListThreats li
{
    list-style: none;
    padding: 0;
    margin: 0;
}