/* CSS for Release Notes or Service Pack Notes  and for all the chapters at the top level of Helpfiles, such as support.htm, glossary2.htm, etc. Format is CSS3, compatible with XHTML 1.1 */

body {
	counter-reset: figno;
	background-color: #ffffff;
	} 


/* Styling for any active links -- not used here -- must go last after hover. The order must be link, visited, hover, active. */
A:link {
	color: #16477c; /* was #0a14b6; bright blue */
	font-weight:normal;
	}

A:visited {
	color: #0A14B6;
	} /* bright blue */ 

A:hover {
    color: #2349f7;
	} /* lighter blue */
	

p, ol, ul, form, blockquote, body, address, div {
	color: #000000; /* black */
	font-size: 12pt;
	font-family: Calibri;
	font-weight: normal;
	vertical-align: top;
	text-align: left;
	}  

td {	
	font-size: 12pt;
	font-family:Calibri;
	font-weight: normal;
	vertical-align: top;
	text-align: left;
	}
	
h1 {
	margin-top: 23px;
	margin-left: 160px;
	margin-bottom: 8px;
	font-family:Calibri;
	font-weight: normal;
	font-size: 19pt;
	color:#000000;
	} 
 
 
 h2 {
	border-style: solid;
    border-width: 2px;
	border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-bottom-color: #16477c; /* was  #ae370e;  orange  */
	font-family:Calibri;
	font-weight: normal;
	font-size: 18pt;
	padding-top: 15px;
	padding-bottom: 5px;
	margin-top: 10px;
	color:#000000; /* black */}
	
	/* old
h2 {
	border-style: solid;
    border-bottom-width: 2px;
	border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
	border-bottom-color: #16477c; 
		}
	  was  #ae370e;  orange* then #16477c; blue */
	/* font-family:Calibri; font-weight: normal; font-size: 22pt; padding-top: 0px; padding-bottom: 10px; margin-top: 10px; color:#000000;} */

 

h3 {
	padding-bottom: 0px;
	padding-top: 0px;
	text-align: left;
	font-size: 16pt;
	color:#000000; 
	font-family:Calibri;
	font-weight: normal;
	text-decoration: underline;
	}

h4 {
	padding-bottom: 2px;
	padding-top: 2px;
	text-align: left;
	font-family: Calibri;
	font-size: 16pt;
	color: #000000;
	font-weight: normal;
	}

h5 {
	padding-bottom: 0px;
	padding-top: 2px;
	color: #000000; 
	text-align: left;
	font-family: Calibri;
	font-size: 14pt;
	font-weight: normal;
	text-decoration:underline;
	}

.noPad
{margin-top: 2px;
margin-bottom:2px;}

hr {
	color: #16477c;
	}
	 /* #16477c; Premier  blue;   green #08b41a*/
	/* was bright blue  #0a14b6; */
	/* was turquoise #1f978f */
	
ul {
	list-style-type: disc;
	}
	
ol ul { 
	list-style-type: disc;
	}

	 /* Wrapper div. Thin double border. Not used in chapters; only in Release Notes.*/
.wrapper {
	margin-top: 15px;
	margin-left: 0px;
	background-color: #ffffff;
	width:950px;
	padding: 2px;
	border-width: thin;
	border: 3px double #16477c; /*soft blue table frame color*/
	z-index:2;
	overflow: visible;
	} 
	
	 
	/* Sets up a figure class for implementing auto figure numbering. */
.figure {
	text-align:center
	} 

	/* Implements auto figure numbering. File contains one line of js 
	that resets the counter to zero each time the page loads.*/
h3.figure:before {
   	 content:"Figure " counter(figno) " - ";
	 counter-increment:figno; 
	 display:inline;
     }
	 
	/* The next two entries style general tables -- double border; outside: 2 px blue top and left, 
	gray bottom and right; inside cell border: one px, 
	and reverse colors of borders. Creates a 3D effect. */

	/* Set up the mensa class for general table style. */
.mensa {
	/* width:auto;
    margin: auto;  Should  make the margins on both sides of the table equal. Centers the table. Bug in IE 10, 11...does not work */
	width:80%; /* Compensates for above bug. */
    margin-left:10%; 
    margin-right:10%; 
	}

	/* Defines table style for general tables inside the main wrapper table. */
.wrapper table.mensa{
	border: 2px  #16477c; /* was lighter blue #5774fb; */
	border-style: solid;
	border-collapse:separate;
	}
	
	
	
.PlainTable {
	border: 2px #16477c; /* was lighter blue #5774fb; */
	border-style: solid;
	border-collapse:separate;}

.PlainTable td /* Note: does not change the default which is text wrap. If you wish text to NOT wrap, insert nowrap="nowrap" in td tag */
{
	vertical-align:top;
	border-collapse:separate;
	border: 1px;
	border-top-color:  #16477c;  /* was lighter blue #5774fb; */
	border-right-color: #CCF;
	border-bottom-color: #CCF;
	border-left-color: #16477c;  /* was lighter blue #5774fb; */ 
	border-style: solid;
	padding:4px;
	}


	/* Defines borders for tds in mensa-styled tables inside the main wrapper table. All four border attributes are needed 
	for the 3D effect, if you specify any one. */
.wrapper table.mensa td {
	vertical-align:top;
	border-collapse:separate;
	border: 1px;
	border-top-color: #16477c;  /* was lighter blue #5774fb; */
	border-right-color: #CCF;
	border-bottom-color: #CCF;
	border-left-color: #16477c;  /* was lighter blue #5774fb; */
	border-style: solid;
	padding:4px
	}
		
	/* Misc class to set the entry in a table column to the top of the column. */	 
.colTop {vertical-align:top;}	
 
/* Styles for semantic elements */

	/* Used in Release Notes under each figure title to indicate the path to the figure -- if the figure is a panel. */
.path {
	font-size:11px; font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif; 
	color: #666;
	text-align:center;}

	/* Styles note headings. */
.note {
	color:  #16477c;   /* was #0a14b6; bright blue*/
	font-family: Calibri;
	font-size: 12pt; 
	font-weight: bold;
	text-decoration: underline;
	}

	/* Styles panel names in text. */
.panel {
	color: #16477c;   /* was #0A14B6; bright blue*/ 
	font-family: Calibri;
	font-size: 12pt; 
	font-weight: bold;
	font-style: italic;
	}

	/* Styles buttons and links in text; e.g., Click Enter. */
.link {
	color: #16477c;
	font-weight:bold;
	} 	/* was  #0A14B6;  bright blue*/

	/* Misc positioning, lists,  and div classes */

	/* Center text, e.g., images */
.center {
	text-align: center;
	}
	
	/* Indent text in Release Notes */
.indenttext { 
	font-size: 12pt; 
	font-weight: normal;  
	margin-top: 6px;
	margin-bottom: 6px;
	margin-left: 40px; 
	font-family: Calibri;
	color: inherit;
	}

	/* Bulleted list, small orange square bullets. Used in chapter TOCs and other lists.*/
.square {   
	list-style-position: outside;
	list-style-image:url(images/SquareBulletOrange.gif);
	}
	
	/* Bulleted list, small square blue bullets.*/
.bluelist {
	list-style-image: url(images/SmSquareBlueBullet.gif);
	}	
	
	/*Turquoise square bulleted list */ 
.dkturqlist {
	list-style-position: outside;
	list-style-image: url(../Procedures/images/SmSquareDkTurqBullet.gif);
	} 

	/* Logo div inside banner. */
.logo {
	position:absolute;
	height: 48px;
	width: 138px;
	top: 0px;
	left: 5px;
	border: 0px;
    }

	/* Used to size the Release Notes page for printing. This div is the main enclosing div, outside of wrapper. */
	/* If the page is sized bigger than 968px, print scales the page and text is too small to read.*/
	/* Images must not be bigger than 910px or they kick out the div to the right.*/  
.printdiv {
	width: 950px; z-index:1;
	overflow:visible;
	}

	/* Release Notes release number div */
.release {
	position:absolute;
	width:190px;
	top: 133px;
	height: 25px;
	left: 714px;
	z-index: 4;
    }

	/* Release Notes banner div */
.banner {
	background: #FFFFFF;
	top: 36px;
	border-bottom-width:2px;
	border-bottom-style:solid;
	border-bottom-color: #16477c; /* Premier blue. This was #ae370e;  orange*/
	margin: left;
	width: 930px;
	height: 95px;
	position: absolute;
	z-index:3;
	left: 18px;
    }
	
	/* Workflow section, used in some chapters. */
.workflow {
	padding:5px; 
	background:#efefef; 
	border: solid thin #808080; 
	width:70%;
	}

	/* Setup section, used in some chapters. */
.setup {
	padding:5px; 
	background:#FFFFFF; 
	border: solid thin #808080; 
	width:70%;
	}
	
	/* Can be used to downsize headings 2 and 4, if you need underlined words */
.small {
	font-size: 12pt;
}
	

	 /* Used in some navigation panels */ 
.bignum {
	font-size: 12pt;
	font-weight:bold;
	font-family: Calibri;
	color: #0A14B6;
	}


	/* Color classes */
.blue {
	color: #16477c;
	}
	/*was #0a14b6;  bright blue */

.mediumgray {
	color: #797979;}
	/*medium gray*/

.darkgray {
	color: #4f5657;
	}
	/*darkest gray*/

.orange {
	color: #f47321;
	}
	/*orange*/

.redbold {
	color: #FF0000;
	font-weight: bold;
	}
	 /* Red bold - useful for warnings, etc. Used in some panels to indicate above some sort of threshold */	
	
.white {
	color: #ffffff;
	font-size:11px;
	}
	/* This class is used to hide commonly misspelled words -- eg: requsition -- so that the search engine will find them. 
	If you change the background color of the doc., change this class to match.*/

.greenbold {
	color: #339900;
	font-weight: bold;
	}
	/* Green bold - Can be used for New designation. Used for mfr in Analysis Workbench.
	 Used in some panels to indicate below some sort of threshold */
	
	/*The color classes below are used in the Analysis Workbench categories to color text for, eg. vendor name, mfr name, dept, etc. */

.dept {
	color: #FF9933; /* dark yellow */
    font-weight: bold;
	}
 
.group {
	color: #3399CC; /* powder blue */
	font-weight: bold;
	}

.turq {
	color: #33CCCC; /* turquoise */
	}

.purplebold {
	color: #7909AD;
	font-weight: bold;}

.graybold {
	color: #666666;
	font-weight: bold;
	}

.vendor {
	color: #990000; /* brownish red */
	font-weight: bold;
	}

	/* Highlighting classes */

	/*DO NOT use this class -- highlight -- for highlighting text. This version of highlighting is used only by the search engine. 
	 All the search engine needs is this CSS entry.*/
	/*There is another version - hilite - to use if you want to highlight something in text. */

.highlight {
	background: #FFFF40;
	}
	
	/* USE this below for highlighting text. Creates a yellow background around text.*/	 
.hilite {
	background-color:#FFFF66;
	}

.pinkBkgd {
	background-color:##fab6f8;
}
.blueBkgd {
	background-color:#B9D7F7;
}

	/* The next two entries are for horizontal tables, blue text. The nostack class goes on the <ul> tag: <ul class="nostack"> */
.nostack {	
	font-family: Calibri;
	font-size: 10pt;
	color: #16477c;/*was  #0a14b6; */
	} 

.nostack li{
	margin-left:7px;
	display: inline;
	}

	/* Styles the preliminary notification div */
.prelimnote {
    padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	top: 181px;
	color: #16477c; /*was  #0A14B6; */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt;
	}


	/*The next 2 entries set the W for workwith and
	 the i for inquiry to the same font and color as the application.*/

.workwith {
	font-family: Georgia, Times New Roman, Times, serif;
	font-size: 14px;
	font-style: italic;
	font-weight: bold;
	text-transform: lowercase;
	color: #1f978f;
	}

.inquiry {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12pt;
	font-style: italic;
	font-weight: bold;
	text-transform: lowercase;
	color: #116cb3;
	}

/* Generate Company Name and "PremierConnect" */
.GetCompany:before{content: " Premier";}

.GetPC:before{content: " PremierConnect";
              font-style:italic;}

	/* Copyright notice at the bottom of each page. Small, gray text. */
.copyright {
	font-family: Calibri;
	color: #808080;
	font-size: 9pt;
	text-align: left;
	}
	
	/* Next two style the version date next to h2 chapter title */
.version {
	padding-right:3px;
	font-size: 10pt;
	font-family: Calibri;
	font-weight:normal;	
		}
	
p.version {
	text-align:right;
	}

	/* Revised blockquote tag. Reduces the left margin. */
blockquote {
	font-family: Calibri;
	font-size: 12pt;
	font-weight: normal;
	margin-top: 2pt;
	margin-left: 20pt;
	margin-bottom: 2pt;
	}


	/* Color and style for alpha links in glossary -- each letter. */
.glossary_letters {
	color: #000000;
	background-color:#ccf4f2;
	}
	
	/* Used in Navigation chapters. Makes larger letters. Occasionally useful. */
.alpha {
	font-size: 12pt;
	font-weight:bold;
	}
	
/* Might be obsolete or experimental. Used for menu on left side. */
#MenuLayer {
	position:absolute;
	width:318px;
	height:29px;
	z-index:1;
	right: 954px;
	top: 137px;
	}

/* Might be obsolete. Used for really small text. */
.minutes {
	color:  #16477c;/*was  #0a14b6; */
	font-family:Calibri;
	font-size: 8pt; 
	font-weight: bold;
	}
	/* previous turquoise color: #1f978f */	

	/* Not sure where used. */
#coolstuff {
	border: medium #1f978f;
	}

	/* Used in glossary. Not sure where else. */
.ix { 
	font-family: Calibri;
	font-size: 12pt;
	} 

	/* Not sure where used. */
.registered {
	font-size: 10pt;
	}

	/* Used in Glossary */
	
	.navelement:hover {
		color: #2349f7;}
 
	.navelement {	
		color: #787878;
		font-weight: bold;
		text-decoration: underline;}
			
/* Used for each li element in the glossary navigation list. Makes a horizontal list. */
	.navlist {	
		list-style-type: none;
		display: inline;
		color: #787878;
		padding-bottom:0px;
		padding-right:20px;
		text-align:center;
		}


	/* Old dark blue before re-branding.
	
	.dkbluebold {
		color: #330099;
		font-weight: bold;}
	*/ 
