/* ====================================================
    Setup (Normalize, Border-box, Clearfix)
   ==================================================== */
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary {
    display: block;
}

audio,canvas,video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden] {
    display: none;
}

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

a:focus {
    outline: thin dotted;
}

a:active,a:hover {
    outline: 0;
}

h1 {
    font-size: 1.875rem;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,strong {
    font-weight: 700;
}

dfn {
    font-style: italic;
}

mark {
    background: #ff0;
    color: #000;
}

code,kbd,pre,samp {
    font-family: monospace, serif;
    font-size: 1em;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px 15px;
    overflow: auto;
    display: block;
    margin: 1em 0px;
}

q {
    quotes: \201C \201D \2018 \2019;
}

small {
    font-size: 80%;
}

sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em;
}

button,input,select,textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}

button,input {
    line-height: normal;
}

button,html input[type=button],/* 1 */
input[type=reset],input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],input[disabled] {
    cursor: default;
}

input[type=checkbox],input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

input[type=search] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body,figure {
    margin: 0;
}

legend,button::-moz-focus-inner,input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* ====================================================
    Base Styles
   ==================================================== */
body {
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #333333;
}

h1,h2,h3,h4 {
    font-family: Tahoma, sans-serif;
    font-weight: bold;
}

p, input{
    font-size: 1.125rem;
}
a {
    text-decoration: none;
    font-size: inherit;
    color: #FF7729;
}

a:hover{
	cursor:pointer;
  color: #FF7729;
}
input:focus {
    outline: none;
}

ul, ol {
    list-style: none;
}

.bold{
    font-weight:600;
}

/*Note - all input placeholder texts*/
input:focus::placeholder { opacity:0; }

    /* WebKit browsers */
input:focus::-webkit-input-placeholder { opacity:0; }

    /* Mozilla Firefox 4 to 18 */
input:focus:-moz-placeholder { opacity:0; }

    /* Mozilla Firefox 19+ */
input:focus::-moz-placeholder { opacity:0; }

    /* Internet Explorer 10+ */
input:focus:-ms-input-placeholder { opacity:0; }


/* ====================================================
   Header
   ==================================================== */
header {
    width: 100%;
    padding: 2% 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stickyHeader {
    background-color: #0F3161;
    position: fixed;
    z-index: 2;
    display: none;
    top: 0;
    height: 80px;
}

.homeHeroHeader {
    background: transparent;
    position: absolute;
    z-index: 2;
  	display:none;
}

header>a[title="Home"], header .headerSupportWrapper {
    flex-basis: 20%;
}

header form {
    flex-basis: 40%;
}

header img {
    width: 100%;
  max-width: 180px;
}

header .search {
    position: relative;
}

header .search:before {
    content: "\1F50D";
    font-family: "entypo";
    font-size: 25px;
    bottom: 12.5%;
    right: -5%;
    position: absolute;
    color: #092030;
    opacity: 0.4;
}

header .search input[type=search] {
    border-radius: 20px;
    font-size: 1.2em;
    padding: 2% 5%;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    border: none;
    background-color: rgba(246, 246, 249, 0.8);
    color: #092030;
}

header input[type=search]::placeholder {
    color: #092030;
}

header .headerSupportWrapper{
    display: flex;
    padding-top: 0.75%;
}

header .my-activities, header .login{
	color: #F6F6F9;
  text-transform: capitalize;
  font-size: 1.2em;
  white-space: nowrap;
  line-height: 1.4em;
}

header .my-activities:hover, header .my-activities:focus, header .my-activities:active, header .login:hover, header .login:focus, header .login:active{
	color: #fff;
  text-decoration: underline;
}

header .headerSupport {
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    color: #F6F6F9;
    line-height: 1.4em;
    font-size: 1.2em;
  	flex-basis: 50%;
    padding: 0 10px 0 10px;
}

header .request {
    background: #FF7729;
    color: inherit;
  font-size: 12px;
    padding: 8px 16px;
    margin-bottom: 2%;
  	border-radius:4px;
  	border: 2px solid transparent;
}

header .request:hover, header .request:focus, header .request:active {
    border: 2px solid #F6F6F9;
}

header .headerSupport p {
    padding-top: 15px;
    margin: 0
}

header .user-avatar {
		display:none;
}

header .user-info{
    color: white;
    margin-left: 5%;
    text-align: right;
    font-size: 1.2em;
  	flex-basis:20%;
  	white-space:nowrap;
}

/* ====================================================
    Hero
   ==================================================== */
.hero {
    background-image: url("/hc/theming_assets/01HZP8TNA0SA5JSKCKQJSV64YC");
    background-size: cover;
    display: flex;
    -webkit-display: flex;
    justify-content: center;
    padding: 8% 5% 15% 5%;
    position: relative;
}

/*.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #7A858E;
    opacity: 0.9;
}*/

.heroContent {
    z-index: 2;
    color: #F6F6F9;
    width: 70%;
    text-align: center;
    padding-top: 40px;
}

.heroContent h1 {
    font-size: 1.875rem;
}

.heroContent form {
    display: flex;
}

.heroContent .search input[type=search] {
    border-radius: 50px;
    font-size: 13px;
    padding: 16px 10%;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    margin-right: 3%;
    color: #092030;
    border: 2px solid #DADEE0;
}

.heroContent .search input[type=search]::placeholder{
    color: #092030;
}
.heroContent .search input[type=submit] {
    background-color: #092030;
    text-transform: uppercase;
    border-style: none;
    padding: 0 5%;
    width: 25%;
    color: #DADEE0;
}

/* ====================================================
   Products
   ==================================================== */
.products {
    margin-top: -10%;
    position: relative;
    padding: 0 10%;
}

.products h2 {
    color: #F6F6F9;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.8em;
    padding-right: 3%;
    font-weight: 500;
}

.products .categoryList {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0;
    width: 100%;
    }

.products .categoryWrapper {
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    font-weight: 600;
    -webkit-display: flex;
    -webkit-flex-basis: 30%;
    -webkit-flex-direction: column;  
}

.products .categoryWrapper a:hover {
    text-decoration: underline;
}

/*.products .categoryWrapper a.category:hover::after {
    content: ">";
    transform: rotate(90deg);
    display: inline-block;
    padding: 0 4%;
    margin-top: -5%;
}*/

.products .category {
    background: #0F3161;
    padding: 60px 10%;
    margin: 2%;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    color: #DADEE0;
    font-size: 1.4em;
    white-space: nowrap;
}

.products .sectionList {
    padding: 0;
    text-align: center;
    color: #092030;
}

.categoryWrapper .subMenu {
    display: none;
}

li.section {
    margin: 2px 4px;
    padding: 4px 0;
    background: #F4F8FC;
    font-size: 11px;
}

li.section:hover{
    color: #00A4EB;
}

.sectionStaging {
    padding: 1% 0;
}

.sectionStaging .subMenu {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: center;
}

.sectionStaging .subMenu > li {
    background: #092030;
    width: 18%;
    margin: 0 1%;
}

/* ====================================================
   Additional Resources
   ==================================================== */
.resources {
    padding: 1% 2% 3% 2%;
}

.resources h2, .resources h4 {
    color: #092030;
}

.resources h2 {
    font-size: 1.9em;
    text-align: center;
}

.resources h4 {
    font-size: 1.6em;
    align-self: center;
    text-align: left;
    margin-bottom: 5%;
    margin-top: 0;
}

.resourceWrapper {
    display: flex;
    justify-content: space-between;
    margin: 0 0 0 5%;
}

.resource {
    flex-basis: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resource img {
    width: 60px;
}

.resourceList {
    padding: 0;
    margin: 0;
}

.resourceListItem {
    padding: 1% 0;
    color: #00A4EB;
    line-height: 23px;
}

.resourceListItem a:hover{
  color: #FF7729;
  text-decoration: underline;
}

.resourceListItem p {
    margin: 0;
}

/* ====================================================
   Support
   ==================================================== */
.support {
    width: 100%;
    background-color: #DADEE0;
}

.contactInfo {
    margin: auto;
    text-align: center;
    padding: 2% 3% 2% 3%;
    margin-top: 1%;
}

.contactInfo img {
    display: block;
    margin: 0 auto;
    width: 60px;
}

.contactInfo h3 {
    margin: 2% 0;
    white-space: nowrap;
    color: #092030;
    font-size: 1.8em;
    text-transform: capitalize;
}

.contactInfo a {
    background-color: #FF7729;
    padding: 1% 3%;
    white-space: nowrap;
    color: #F6F6F9;
    font-size: 1.2em;
    text-transform: uppercase;
}

.contactInfo a:hover, .contactInfo a:focus, .contactInfo a:active {
    border: 3px solid #F6F6F9;
}

.contactInfo h4 {
    white-space: nowrap;
    color: #5b5f63;
    margin-top: 2%;
    margin-bottom: 0;
    font-size: 1.6em;
}

.contactInfo p {
    white-space: nowrap;
    color: #5b5f63;
    margin: 0;
    font-size: 1.2em;
    padding-top: 10px;
}

/* ====================================================
   Category Page
   ==================================================== */
.breadcrumbs {
    padding: 3% 5% 0 5%;
    margin-top: 4%;
  	width: 100%;
}

.breadcrumbs li {
    display: inline-block;
    color: #092030;
    font-size: 13px;
}

.breadcrumbs li a {
    color: #333;
}

.breadcrumbs li a:hover
{
  color: #333;
  text-decoration: underline;
}

.breadcrumbs li:after {
    content: ">";
}

.breadcrumbs li:last-child:after {
    content: "";
}

.sections {
    padding: 0 5% 1% 5%;
}

.sections h2 {
    text-align: center;
    color: #00A4EB;
    font-size: 3.0em;
    padding: 10px 0;
}

.eachSection {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.eachSection .section {
    background: #DADEE0;
    margin: 12px;
    width: 25%;
    text-align: center;
}

.eachSection a:hover{
    color: #FF7729;
    text-decoration: underline;
}

.videos
{
  padding: 3% 5% 3% 5%;
}

.learning, .training {
    padding: 1% 5%;
}

.videos h3, .training h3 {
    font-size: 1.6em;
    text-align: center;
}

/* Owl Carousel */
.owl-prev {
    background: url('https://res.cloudinary.com/milairagny/image/upload/v1487938188/left-arrow_rlxamy.png') left center no-repeat;
    height: 54px;
    position: absolute;
    top: 50%;
    width: 27px;
    z-index: 1000;
    left: 2%;
    cursor: pointer;
    color: transparent;
    margin-top: -27px;
}

.owl-next {
    background: url('https://res.cloudinary.com/milairagny/image/upload/v1487938220/right-arrow_zwe9sf.png') right center no-repeat;
    height: 54px;
    position: absolute;
    top: 50%;
    width: 27px;
    z-index: 1000;
    right: 2%;
    cursor: pointer;
    color: transparent;
    margin-top: -27px;
}

.owl-prev:hover, .owl-next:hover {
    opacity: 0.5;
}

/* Owl Carousel */
/* Popup Text */
.white-popup-block {
    background: #FFF;
    padding: 20px 30px;
    text-align: left;
    max-width: 650px;
    margin: 40px auto;
    position: relative;
}

.popuptext {
    display: table;
}

.popuptext p {
    margin-bottom: 10px;
}

.popuptext span {
    font-weight: bold;
    float: right;
}

/* Popup Text */
/* Icon CSS */
.item {
    position: relative;
}

.item i {
    display: none;
    font-size: 4rem;
    color: #FFF;
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.item a {
    display: block;
    width: 100%;
}

.item a:hover:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.item a:hover i {
    display: block;
    z-index: 2;
}

div.learning {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1% 5% 1% 5%;
}

.learning h3 {
    font-size: 2.5em;
    color: #092030;
    text-align: center;
}

.learning h3 a:hover
{
  color: #FF7729;
  text-decoration: underline;
}

.learningPlans {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 5%;
}

.learningPlans ul {
    display: flex;
    justify-content: center;
    width: 100%;
}

.learningPlans ul li {
    padding: 0 2%;
    display: flex;
    flex-direction: column;
    margin: 0 1%;
    font-size: 1.4em;
}

.learningPlans ul li img {
    height: 60px;
    color: #00A4EB;
}

.learningPlans ul li a {
    text-align: center;
    display: block;
}

.learningPlans a:hover
{
  color: #FF7729;
  text-decoration: underline;
}

div.training {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1% 5%;
}

.training ul {
    padding-left: 0;
    font-size: 1.2em;
}

.training h3 {
    font-size: 2.5em;
    color: #092030;
}

.training h3 a:hover
{
  color: #FF7729;
  text-decoration: underline;
}

.training li
{
  font-size: 14px;
  text-align: center;
}

.training a:hover
{
  color: #FF7729;
  text-decoration: underline;
}
  
/* ====================================================
   Section Page
   ==================================================== */
.section-area  {
    margin: 2% 5%;
}

.section-tree
{
  margin-left: -40px;
}

.section-area h1 {
    font-size: 1.875rem;
}

.section-subscribe {
    margin-left: 15px;
    font-size: 14px;
    color: #7A858E;
}

.section-area li {
    padding: 3px 0;
    line-height: 23px;
}

.section-area li a
{
  color: #FF7729;
}

.section-area li a:hover {
    color: #FF7729;
  text-decoration:underline;
}

.section-area li a:visited {
  color: #FF7729;
  text-decoration: underline;
}

.section-area li a:visited:hover
{
  color: #FF7729;
}

.section-area .section-tree .article-list {
    font-size: 14px;
}

.pagination ul {
    display: flex;
    font-size: 14px;
    margin-left: inherit;
}

.pagination li {
    padding: 5px 5px 5px 2px;
}

.pagination-current {
    font-weight: bold;
}

.search-results .pagination ul
{
  margin-left: -40px;
  margin-top: -1%;
}

/* ====================================================
   Article Page
   ==================================================== */

.article-subscribe::before, .article-unsubscribe::before {
    content: "Click to ";
}

.article-subscribe, .article-unsubscribe {
    padding: 0 0 0 5%;
    font-size: 13px;
    color: #7A858E;
}

.clickToSubscribe
{
  margin-top: 1%;
}

.article-header
{
  padding: 0 0 0 5%
}

.article-header h1 {
    font-size: 1.875rem;
    padding-bottom: 35px;
    padding-top: 0px;
}

.article-body {
    font-size: 14px;
    margin: -2% 5% 2%;
    line-height: 23px;
    max-width: 1200px; 
}

.article-body ul {
    list-style: initial;
}

.article-body ol, .article-attachments ol{
    list-style: decimal;
}

.article-attachments ul
{
  margin: 0 2% 2% 5%;
  list-style: initial;
}

.article-attachments li
{
  margin-bottom: 1em;
}

.article-attachments a
{
  color: #FF7729;
  font-size: 12.5px;
}

.article-attachments a:hover
{
  color: #092030;
  text-decoration: underline;
}

.article-attachments a:visited
{
  color: #00ADEE;
}

.article-body a{
    color: #FF7729;
}
.article-body a:hover{
    color: #FF7729;
  text-decoration: underline;
}

.article-body a:visited
{
  color: #FF7729;
}

.article-body a:visited:hover
{
	color: #FF7729;
  text-decoration: inherit;
}

.article-body img{
    border: 1px solid #a9b0b5;
    margin-top: 15px;
    display: block;
    max-width: 1000px; 
}

img.icon
{
  display: inline-block;
  margin-top: 0;
}

.article-footer {
    background: #7A858E;
    box-sizing: initial;
    margin: 1% 5% 0 5%;
    height: 3px; 
}

.article-vote {
    display: none;
}

.article-more-questions {
    font-size: 13px;
    font-style: italic;
    margin: 2% 0 0 5%;
}

.article-more-questions a {
    color: #FF7729;
    font-weight: bold;
}

.article-comments {
    padding: 2% 5% 2% 5%;
}

.article-comments h2
{
  font-size: 16px;
}

.comment-container textarea {
    width: 60%;
    font-size:14px;
}

.article-sidebar {
    display: flex;
    padding: 2% 5% 4% 5%;
    justify-content: space-between;
}

.article-sidebar section h3 {
    font-size: 18px;
}

.article-sidebar section ul {
    font-size: 14px;
    padding: 0;
    color: #FF7729;
}

.article-sidebar section li
{
  margin-bottom: 8px;
}

.article-sidebar a:hover
{
  color: #FF7729;
  text-decoration: underline;
}

.article-sidebar a:visited
{
  color: #FF7729;
}

.recent-articles
{
  margin-left: 9%;
}

.related-articles
{
  margin-right: 9%;
}

.recent-articles .related-articles a:hover
{
  text-decoration: underline;
  color: #FF7729;
}

/* ====================================================
   Error Page
   ==================================================== */
.error-page {
    margin: 80px 5%;
}

/* ====================================================
   Submit A Request Page
   ==================================================== */

.submitRequest{
    margin: 2% 5%;
}

.submitRequest h1{
    font-size: 1.875rem;
}

.submitRequest .request_ticket_form_id label{
    font-size: 1.6em;
}

.submitRequest .form-field{
      margin-bottom: 2%;
    font-size: 14px;
}

a.nesty-input
{
  width: 50%;
  display: block;
  margin-top: 1%;
}

.submitRequest textarea, .submitRequest input[type=text] {
    width: 50%;
    margin-top: 1%;
    display: block;
}

div #request_issue_type_select option
{
  background: #4286f4;
}

#new_request div p
{
  width: 50%;
  font-size: 12px;
}

#new_request div label
{
  font-weight: bold;
}

textarea#request_description
{
  height: 130px;
}

.submitRequest .upload-dropzone span {
    color: #092030;
    font-size: 13px;
}

.submitRequest footer {
    background: transparent;
    color: #092030;
    width: 50%;
}

.form .suggestion-list {
  display:none;
}

.form .suggestion-list label {
  display:none;
}

.form .suggestion-list li {
  display:none;
}

.form .suggestion-list li a:visited {
  display:none;
}

/* ======================================================
   My Activities Pages (Requests/Contributions/Following)
   ====================================================== */
.my-activities-nav ul {
    display: flex;
    font-size: 1.6em;
    justify-content: space-around;
  	border-bottom: 1px solid #DADEE0;
  	padding-bottom: 1%;
    margin-left: 9.5%;
    margin-right: 6%;
}

.my-activities-sub-nav ul{
		display:flex;
  	justify-content: space-around;
  	margin: 2% 5%;
  	font-size: 1.4em;
}

.my-activities-nav li{
		flex-basis: 30%;
    text-align: center;
}

.my-activities-nav a, .my-activities-sub-nav a{
		color:#FF7729;
}

.my-activities-nav a:hover, .my-activities-nav a:focus, .my-activities-nav a:active, .my-activities-sub-nav a:hover, .my-activities-sub-nav a:focus, .my-activities-sub-nav a:active{
	color: #092030;
}

.my-activities-nav li:nth-of-type(2){
		border-right: 1px solid #DADEE0;
  	border-left: 1px solid #DADEE0;
}

.request-table-toolbar{
		background: #DADEE0;
    margin: 5% 6% 5% 9.5%;
    display: flex;
    padding: 1%;
    justify-content: space-between;
}

.request-table-filters
{
  font-size: 14px;
}

.request-table-toolbar input[type=search]{
	border-radius: 20px;
  padding: 0.2% 1%;
  border:none;
}

.my-activities-table{
  font-size: 1.2em;
  margin: 1% 6% 5% 9.5%;
}

.my-activities-table table{
	  width: 100%;
    text-align: left;
}

.my-activities-table table thead th{
	color: #DADEE0;
  border: 1px solid #DADEE0;
  padding: 0.5% 1%;
}
.my-activities-table table tbody td{
	font-size: 1.2em;
  padding: 2% 1%;
}

.my-activities-table table tbody td a{
	color: #FF7729;
}

/* ====================================================
   Search Results Page
   ==================================================== */
.search-results{
   margin: 2% 5%;
}

.search-results-heading
{
  margin: 1% 0 1% 0;
}

.search-results-subheading{
    font-size:1.75em;
}

.search-result{
    font-size: 15px;
}

.search-result ul
{
  padding-top: 1%;
}

.search-result li
{
  margin-bottom: 1em;
}

.search-results-list a:hover {
    color: #FF7729;
}

.search-results-list a:visited {
  color: #7A858E;
}

.search-result-link{
    font-weight: bold;
}

.search-result-description{
    padding: 1% 0% 2% 0%;
    font-size: 14px;
  
}

.search-result-meta
{
  font-size: 11px;
  padding-top: 1%;
  font-style: italic;
}

.search-results-list
{
  padding-top: 5px;
  margin-left: -40px;
}

.search-result-votes
{
  display: none;
}

/* ====================================================
   Footer
   ==================================================== */
footer {
    background: #092030;
    display: flex;
    padding: 0 10%;
    justify-content: space-around;
    color: white;
    text-transform: uppercase;
}

/* ==================================================
   My Requests page (Eliza)
   ================================================== */

h1.requestpage
{
    margin: 1% 3% 2% 5%;
}

div.requestpage
{
  margin: 1% 3% 2% 5%;
}

ul.comment-list
{
  margin: 0;
  padding: 0;
}

.comment-body
{
    margin-top: 2%;
    margin-bottom: 2%;
}

.upload-dropzone
{
    width: 50%;
    margin-bottom: 1%;
    margin-top: 1%;
}

dl.request-details
{
    margin: 0 0 2% 5%;
    font-size: 12px;
}

dt
{
    font-weight: bold;
    margin: 1% 0 1% 0;
}

.request-status
{
    font-style: italic;
}


/* ==================================================
   Eliza (Technical Writer) styles DO NOT DELETE 
   ==================================================*/
  
div.spacedlist li
{
	margin-top: 1em;
  margin-bottom: 1em;
} 	

ol.lower-alpha
{
  list-style-type: lower-alpha;
}

ol.lower-roman
{
  list-style-type: lower-roman;
}

ul.circle
{
  list-style-type: circle;
}

img.list
{
  margin-top: 1em;
  display: block;
}

.note
{
 margin-top: 1em;
}

.documents ul
{
  font-size: 13px;
  padding: 0;
}

div.article-body hr
{
  border-style: solid;
  border-width: 1px;
  border-color: #A9A9A9;
  padding: 0;
}

.styledtableheader
{
  font-size: 20px;
  font-weight: bold;
  padding-top: 20px;
}

.styledtable table
{
  width: 100%;
  padding: 20%;
}

.styledtable td
{
  width: 140px;
  padding: 5px;
}

.styledtable th
{
  background: #E0E0E0;
  color: #000;
  font-size: 14px;
  line-height: 15px;
  font-weight: bold;
  padding: 10px 10px 10px 20px;
}

.styledtable tbody
{
  color: #000;
  background: #fff;
  font-size: 13px;
  line-height: 15px;
}

.styledtable td, th 
{
   border-style: solid;
   border-width: 1px;
   border-color: #B8B8B8;
   padding: 10px 10px 10px 20px;
   vertical-align: middle;
}

div.styledtable li
{
	margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
}

div.superscriptnotes
{
  line-height: 5px;
  margin-bottom: 0;
  margin-top: 0;
}

span.toc
{
  margin-top: -300px;
  padding-bottom: 300px;
  display: block;
}

div.contactSupport
{
  font-size: 1.4em;
  font-family: 'Raleway', sans-serif;
  font-weight: 6;
  color: #092030;
  text-align: center;
  padding-bottom: 2%;
}

div.contactSupport a:hover
{
  text-decoration: underline;
}

button
{ 
font-size:16pt;
text-align: center;
background-color: #0F3161;
height: 150px;
width: 275px;  
margin-left: 780px;
margin-right: auto;  
padding: 0px,20px;  
}
/* End Eliza styles */
