@charset "UTF-8";
/* CSS Document */
/* Common for main pages of the Helpdesk site */
/* See separate style sheet (pubs.css) for the individual Publication pages */

/* Version 150610-1 */

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #FFFFFF;
	margin: 0;
	padding: 0;
	color: #000000;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
 	padding-right: 15px;
	padding-left: 15px;  /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

h1 {
    text-align: center;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

.header{
	margin-top: 15px;
	text-align: center;
}

.navigation, .footer{
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: center;
}

.content {
  margin-top: 0px;
  padding-left: 10px;
  padding-right: 10px;
}

/* This class is to create red text with less than standard line spacing */
.redtext {
	color: #FF0000;
}