@charset "utf-8";
/* CSS Document */

/* MNOPF NOTES
Global Colors (for accessibility):
- #007BBD;
*/


/* ---------------------------------------------------------
	
	* Filename:				default.css
	* Description: 			sets typography, basic grids, 
							and standard formstyles
	* Version:				1.0.0 (2012-06-16)
	* Author:				Ryan Martinez
	
	== INDEX ===============================================
	
	$__generic classes		classes used globally, should be at bottom to prevent semantic inheritance
	
------------------------------------------------------------*/


/*-------------------------------------*/
/* RESET */
/*-------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
    */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

html, button, input, select, textarea {
    font-family: sans-serif;
    color: #222;
}

/*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection declarations have to be separate
     * Also: hot pink! (or customize the background color to match your design)
     */

::-moz-selection {
    background: #007BBD; /* blue */
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #007BBD; /* blue */
    color: #fff;
    text-shadow: none;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

body {
    color: #444;
    font-size: 12px;
    line-height: 18px;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

/*-------------------------------------*/
/* HEADER STYLES */
/*-------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    display: block;
    color: #333;
    font-family: latoregular, Arial, Helvetica, sans-serif;
    letter-spacing: normal;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        font-weight: inherit;
    }

h1 {
    font-size: 38px;
    line-height: 54px;
    letter-spacing: normal;
    margin-top: 0;
    margin-bottom: 10px;
}

h2, .TitleH2 {
    font-family: 'latobold', Arial, Helvetica, sans-serif;
    font-size: 25px;
    line-height: 30px;
    color: #0053a1;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

h3 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: normal;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

h4 {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: normal;
    font-weight: bold;
}

h5 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: normal;
    font-weight: bold;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: normal;
    font-weight: bold;
}

/* Module titles */
.Head {
    display: inline-block;
    margin-bottom: 6px;
}

/* Some old forge modules use .Head, .SubHead, .SubSubHead in table td, We keep this to be compatible */
td.Head, td.SubHead, td.SubSubHead {
    display: table-cell;
    margin-bottom: 0;
}

input[type="image"] + span.Head, input[type="image"] + span.SubHead {
    display: inline;
}

/*-------------------------------------*/
/* PARAGRAPH STYLES */
/*-------------------------------------*/
p {
    margin: 0 0 18px 0;
}
    /* margin bottom is equal to line-height */
    p img {
        margin: 0;
    }

em, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

small {
    font-size: 80%;
}

/* Set text size in modules*/
.Normal,
.NormalDisabled,
.NormalDeleted {
    color: #444;
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
}

/* disabled text styles */
.NormalDisabled,
.NormalDeleted {
    color: #999;
}

/* text style used for help text rendered by modules */
.Help {
    padding: 2px;
    border: #000 1px solid;
    background-color: #ff9;
    font-weight: normal;
    font-size: 11px;
    color: #000;
}
/* text style used for rendered text which requires emphasis */
.NormalBold {
    font-weight: bold;
    color: #222;
}

/* text style used for error messages */
.NormalRed {
    font-weight: bold;
    color: red;
}

/* text style used for rendered text which should appear deleted */
.NormalDeleted {
    text-decoration: line-through;
}

/*	Blockquotes  */
blockquote, blockquote p {
    font-size: 17px;
    line-height: 24px;
    color: #777;
    font-style: italic;
}

blockquote {
    margin: 0 0 20px;
    padding: 9px 20px 0 19px;
    border-left: 1px solid #ddd;
}

    blockquote cite {
        display: block;
        font-size: 12px;
        color: #555;
    }

        blockquote cite:before {
            content: "\2014 \0020";
        }

        blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
            color: #555;
        }

hr {
    clear: both;
    margin: 17px 0 17px;
    height: 0;
    border: solid #ddd;
    border-width: 1px 0 0;
}

/*-------------------------------------*/
/* ANCHOR STYLES */
/*-------------------------------------*/
a, a:visited {
    color: #007BBD;
    text-decoration: none;
    outline: 0;
}

    a:hover, a:focus, a:active {
        color: #222;
        /*outline: 0;*/
    }

p a, p a:visited {
    line-height: inherit;
}

/*-------------------------------------*/
/* IMAGE STYLES */
/*-------------------------------------*/
img.dnn-scale-img {
    max-width: 100%;
    height: auto;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

#dnn_dnnLOGO_imgLogo {
     border: 0;
}

/*-------------------------------------*/
/* lIST STYLES */
/*-------------------------------------*/
ul, ol {
    margin-bottom: 18px;
    margin-left: 18px;
}

ul {
    list-style: square outside;
}

ol {
    list-style: decimal;
}

    /* Nested Styles */
    ul ul, ul ol,
    ol ol, ol ul {
        margin-left: 18px;
        margin-bottom: 0;
    }

    ol ol {
        list-style: lower-roman;
    }

li p {
    line-height: 18px;
}


/* text style for buttons and link buttons used in the portal admin pages */

/* button style for standard HTML buttons */
.StandardButton {
    border: 1px solid blue;
}

/*-------------------------------------*/
/* TAXONOMY */
/*-------------------------------------*/

/* Horizontal taxonomy styles */
.horizontal ul.categories,
.horizontal ul.tags {
    list-style: none;
}

.horizontal ul.categories {
}

.horizontal ul.tags {
}

    .horizontal ul.categories li, .horizontal ul.tags li {
    }

        .horizontal ul.tags li.add-tags {
        }

            .horizontal ul.tags li.add-tags img {
            }

/* Vertical taxonomy styles */
.vertical ul.categories,
.vertical ul.tags {
    list-style: none;
}

    .vertical ul.categories li,
    .vertical ul.tags li {
    }

    .vertical ul.categories li {
    }

    .vertical ul.tags li {
    }

        .vertical ul.tags li.add-tags {
        }

            .vertical ul.tags li.add-tags img {
            }


/* Panels */
.ui-tabs .ui-tabs-panel {
    position: relative;
    display: block;
}

.ui-tabs .ui-tabs-hide {
    display: none;
}


/*-------------------------------------*/
/* TABS : JQUERY UI RESIZABLE 1.8.14 */
/*-------------------------------------*/
.dnnForm .ui-resizable {
    position: relative;
}

.dnnForm .ui-resizable-handle {
    position: absolute;
    display: block;
    z-index: 99999;
    font-size: 0.1px;
}

.dnnForm .ui-resizable-disabled .ui-resizable-handle,
.dnnForm .ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.dnnForm .ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.dnnForm .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.dnnForm .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.dnnForm .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.dnnForm .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.dnnForm .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}




/*-------------------------------------*/
/* UPGRADE FIXES */
/*-------------------------------------*/


div.ModDNNFAQsC .Normal {
    width: auto !important;
}

div.ModDNNUserDefinedTableC div.RadEditor {
    height: auto !important;
}

div.ModDNNUserDefinedTableC ul.dnnActions {
    display: block;
}

div.ModDNNIFrameC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNIFrameC table.Normal td .dnnLabel {
    width: 100px;
}

div.ModDNNIFrameC table.Normal td span.dnnRadiobutton {
    margin: 5px 0 0 30px;
}

div.ModDNNLinksC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

/*-------------------------------------*/
/* GENERIC CLASSES */
/*-------------------------------------*/
.left {
    float: left;
}

.right {
    float: right;
}

.dnnLeft {
    float: left;
}

.dnnRight {
    float: right;
}

.dnnClear {
    clear: both;
}

    .dnnClear:after {
        clear: both;
        content: ".";
        display: block;
        height: 0;
        visibility: hidden;
        font-size: 0;
    }

* + html .dnnClear {
    min-height: 1%;
}

/* used to set the different module align options - from module settings */
.DNNAlignleft {
    text-align: left;
}

.DNNAlignright {
    text-align: right;
}

.DNNAligncenter {
    text-align: center;
}

/* used to collapse panes without any content in them */
.DNNEmptyPane {
    width: 0px;
}

/* style to apply if the content should be hidden */
.Hidden {
    display: none;
}
.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}

div[id$=titleLabel_tb].visible ~ span{ margin-left: 32px;}








/* ORIGINALLY STYLE.CSS - NOW INTEGRATED HERE */

body, p, ul, ul > li, ol, ol > li, div {
    color: #333333;
    font-family: latoregular;
    line-height: 22px;
    font-size: 16px;
}
body, ul, ul > li, ol, ol > li, div {
    margin: 0;
}


@font-face {
font-family: 'latoblack';
src: url('../LATO_BLACK.HTM');
src: url('../fonts/LATO_BLACKD41D.EOT#iefix') format('embedded-opentype'), url('../fonts/woff2/LATO_BLACK.WOF') format('woff2'), url('../fonts/LATO_BLACK.WOF') format('woff'), url('../fonts/LATO_BLACK.TTF') format('truetype'), url('../SVG/LATO_BLACK.SVG#latoblack') format('svg');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'latobold';
src: url('../fonts/LATO_BOLD.EOT');
src: url('../fonts/LATO_BOLDD41D.EOT#iefix') format('embedded-opentype'), url('../fonts/woff2/LATO_BOLD.WOF') format('woff2'), url('../fonts/LATO_BOLD.WOF') format('woff'), url('../fonts/LATO_BOLD.TTF') format('truetype'), url('../SVG/LATO_BOLD.SVG#latobold') format('svg');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'latoregular';
src: url('../fonts/LATO_REGULAR_WEBFONT.EOT');
src: url('../fonts/LATO_REGULAR_WEBFONTD41D.EOT#iefix') format('embedded-opentype'), url('../fonts/woff2/LATO_REGULAR_WEBFONT.WOF') format('woff2'), url('../fonts/LATO_REGULAR_WEBFONT.WOF') format('woff'), url('../fonts/LATO_REGULAR_WEBFONT.TTF') format('truetype'), url('../SVG/LATO_REGULAR_WEBFONT.SVG#latoregular') format('svg');
font-weight: normal;
font-style: normal;
}

.top-header {
background: #eee;
}

.site-brand {
background: #fff none repeat scroll 0 0;
display: block;
padding: 25px 30px;
text-align: center;
box-shadow: 0 0 4px 1px #999;
position: absolute;
z-index: 1;
}

.navbar {
    border: none;
}

.navbar-default {
background-color: #007BBD;
border-color: #007BBD;
margin: 0;
float: left;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-top:  none !important;
}
.main-menu {
background: #007BBD;
border-bottom: 2px solid #9a9c9b;
}

.nav-pills > li > a, .nav-pills > li > a, .nav-pills > li > a {
font-size: 18px;
line-height: 30px;
/*text-transform: uppercase;*/
font-family: 'latoregular';
padding: 15px 20px;
color: #fff;
text-decoration: none;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover, .nav > li > a:focus, .nav > li > a:hover {
background-color: #0a3966;
color: #eee;
border-radius: 0;
}

.nav-pills > li > a > i {
font-size: 20px;
line-height: 30px;
}

.site-moto p {
font-family: 'latoblack';
font-size: 20px;
line-height: 30px;
color: #333333;
margin: 20px 0;
}

.top-menu {
margin: 20px 0 0;
padding: 0;
float: left;
}

.top-menu > li {
display: inline-block;
list-style: outside none none;
}

.top-menu a {
color: #333;
font-family: "latobold";
font-size: 14px;
line-height: 30px;
padding: 10px 7px;
text-transform: uppercase;
transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}

.top-menu a:hover,
.top-menu a:focus {
color: #007BBD;
text-decoration: none;
}

.top-menu > li:after {
content: "|";
}

.top-menu > li:last-child:after,
.top-menu > li:nth-child(3):after {
content: "";
}

.top-menu .search a {
background: #999 none repeat scroll 0 0;
color: #fff;
font-size: 20px;
margin: 0 0 0 20px;
padding: 8px 12px;
}

.nav-social {
margin: 0;
padding: 0;
}

.nav-social li {
display: inline-block;
list-style: none;
padding: 6px 7px 3px 0;
color: #074e95;
font-size: 34px;
}

.nav-social li:after {
content: "|";
}

.nav-social li:last-child:after {
content: "";
}

.nav-social li a {
color: #fff;
line-height: 50px;
font-size: 24px;
padding:0 7px 0 0;
}

.main-slider {
position: relative;
}

.slider-img img {
width: 100%;
}

.slider-description-area {
left: 0;
position: absolute;
right: 0;
top: 120px;
}

.slider-description {
background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
padding: 20px;
border: 1px solid #fff;
}

.slider-description h1 {
color: #000000;
font-family: "latoregular";
font-size: 36px;
line-height: 60px;
margin: 0;
}

a.slider-btn {
background: #007BBD none repeat scroll 0 0;
border: 1px solid #fff;
color: #fff;
font-family: "latoblack";
font-size: 25px;
left: 0;
line-height: 56px;
margin: 0 auto;
padding: 0 0 1px;
position: absolute;
right: 0;
text-transform: uppercase;
top: 84%;
width: 330px;
transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}

a.slider-btn:hover,
a.slider-btn:focus {
background: #0a3966 none repeat scroll 0 0;
color: #fff;
}

.slider-btn em {
background: #fff none repeat scroll 0 0;
color: #007BBD;
font-size: 14px;
line-height: 20px;
margin: 0 0 0 60px;
padding: 1px 8px;
vertical-align: middle;
}

a.slider-btn:hover {
text-decoration: none;
}

.mnopf-home .content {
margin: 30px 0;
}

.banner-img {
    border-bottom: 10px solid #eee;
}
/*
section.content {
padding-top: 30px;
padding-bottom: 30px;
}
*/

.blue {
   color: #007BBD;
}

.blue-block {
background: #007BBD none repeat scroll 0 0;
color: #fff;
padding: 20px 25px 10px;
margin: 0 0 50px 0;
}

.blue-block p {
font-size: 13px;
line-height: 30px;
font-family: 'latoregular';
margin: 5px 0 0;
color: #fff;
}

.blue-block .search-blue {
background: #fff none repeat scroll 0 0;
padding: 0;
}

.blue-block input[type="text"] {
background: #074e95 none repeat scroll 0 0;
border: 1px solid #074e95;
color: #fff;
padding: 10px;
height: 50px;
width: 84%;
}

.blue-text-box {
margin: 25px 0px 25px 0px;
overflow:hidden;
padding:15px;
background-color:#D8ECF7;
border:1px solid #afcde3;
-webkit-border-radius: 5px;
border-radius: 5px;
}

.red-text-box {
margin: 25px 0px 25px 0px;
overflow:hidden;
padding:15px;
background-color:#FEF3F4;
border:1px dotted #EB9A93;
-webkit-border-radius: 5px;
border-radius: 5px;
}


.search-blue .fa-search {
color: #007BBD;
font-size: 22px;
line-height: 30px;
text-align: center;
width: 15%;
}

*::-moz-placeholder {
color: #fff;
font-family: 'latoregular';
font-size: 20px;
opacity: 1;
}
::-webkit-input-placeholder {
color: #fff;
font-family: 'latoregular';
font-size: 20px;
opacity: 1;
}

.que {
background: none repeat scroll 0 0;
border: 0px solid #a0a0a0;
margin: 0;
padding: 0;
}

.que > div {
border-bottom: 0 solid #ccc;
color: #333333;
font-family: "latobold";
font-size: 16px;
line-height: 20px;
list-style: outside none none;
margin: 0;
padding: 0;
}

.que > div:last-child {
border-bottom: 0 solid #eee;
padding: 0;
}

.hav-que > div > h2 {
border-right: 1px solid #e8e8e8;
color: #333;
font-family: "latoblack";
font-size: 18px;
line-height: 20px;
margin: 10px 10px 10px 8px;
padding: 0 15px;
text-align: right;
}

.hav-que > div > p {
color: #007BBD;
margin: 10px 0;
line-height: 20px;
}

.hav-que > div > p > a > span {
color: #000000;
text-transform: uppercase;
font-family: "latobold";
}

.nav-tabs > li.active > button, .nav-tabs > li.active > button:focus, .nav-tabs > li.active > button:hover {
color: #007BBD;
background-color: #fff;
margin: 0;
width: 100%;
display: block;
}

.nav-tabs > li > button {
background: #ccc none repeat scroll 0 0;
border-radius: 0;
border: 0 !important;
color: #333333;
font-family: "latoblack";
font-size: 20px;
line-height: 20px;
margin: 0;
padding: 20px 25px;
text-align: center;
width: 100%;
display: block;
}

.tab-content {
border: 0 none;
padding: 0 20px 20px;
}

.tab-view ul {
margin: 0;
padding: 0;
}

.tab-view ul > li {
font-family: "latoregular";
font-size: 16px;
line-height: 20px;
list-style: outside none none;
color: #333333;
margin: 10px 0 20px;
}

.tab-view ul > li > strong {
font-family: latobold;
}

.news-post .newsSummary > a {
padding:0 0px 0 12px;
line-height: 25px !important;
}
.view-all span, .read-more span {
padding: 5px 12px;
line-height: 20px;
}
.news-post .newsSummary > a, 
.news_post .post_more > a, 
.view-all span, .read-more span {
background: #007BBD none repeat scroll 0 0;
color: #fff;
font-family: latobold;
font-size: 14px;
text-transform: uppercase;
transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
display:  inline-block;
}
.news-post .newsSummary > a, 
.news_post .post_more > a {
    padding: 0 0 0 12px;
}

.news-post .newsSummary > a:after, .news_post .post_more > a:after {
content:"\f105";
font-family:FontAwesome;
margin-left: 12px !important;
color: #333;
}
.news-post .newsSummary > a:after {
background: #fff none repeat scroll 0 0;
}
.news_post .post_more > a:after {
background: #ccc none repeat scroll 0 0;
}
.news_post .post_more {
    margin: 20px 0 0;
    float: right;
}
.news-post .newsSummary > a:after,
.news_post .post_more > a:after, 
.view-all em, .read-more em {
display: inline-block;
font-size: 14px;
line-height: 21px;
margin-left: 0;
padding: 4px 12px 2px;
text-align: center;
transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}

.view-all em {
background: #ddd none repeat scroll 0 0;
color: #666;
}

.member-details-active .view-all:hover,
.member-details-active .view-all:focus,
.view-all:hover, .read-more:hover,
.view-all:focus, .read-more:focus,
.news-post .newsSummary > a:hover,
.news-post .newsSummary > a:focus,
.news_post .post_more > a:hover,
.news_post .post_more > a:focus  {
text-decoration: none;
}

.view-all span:hover, .read-more span:hover,
.view-all span:focus, .read-more span:focus,
.news-post .newsSummary > a:hover,
.news-post .newsSummary > a:focus,
.news_post .post_more > a:hover, .news_post .post_more > a:focus {
background: #0A3966 none repeat scroll 0 0;
color: #fff;
text-decoration: none;
}

.view-all:hover em,
.view-all:focus em,
.read-more:hover em,
.read-more:focus em,
.news-post .newsSummary > a:hover:after,
.news-post .newsSummary > a:focus:after, 
.news_post .post_more > a:hover:after, 
.news_post .post_more > a:focus:after {
background: #ccc none repeat scroll 0 0;
color: #333;
}

.read-more em {
background: #fff none repeat scroll 0 0;
color: #666666;
}


.tab-content > .active {
display: inline-block;
width: 100%;
}

.dwnld-pdf {
margin: 0;
padding: 20px 0 0;
display: inline-block;
}

.dwnld-pdf > li {
list-style: outside none none;
}

.dwnld-pdf > li em.fa-file-pdf-o:before {
display: inline-block;
left: 35px;
position: relative;
text-align: right;
color: #ea4b3a;
}

.dwnld-pdf span {
display: block;
float: left;
width: 73%;
margin: 0 0 15px 0;
line-height: 20px;
}

.dwnld-pdf li em:after {
color: #333;
content: "pdf";
font-family: latobold;
position: relative;
right: 18px;
text-align: left;
text-transform: uppercase;
}

.dwnld-pdf li em {
border: 1px solid #cccccc;
color: #333333;
display: block;
float: right;
padding: 2px 15px;
text-align: right;
}

a:focus {
/*outline: 0 none;
outline-offset: 0;*/
}

.news-post, .grey-block {
    background: #f7f7f7 none repeat scroll 0 0;
}
.news-post, a:link, .grey-block a:link,
.news-post, a:active, .grey-block a:active,
.news-post, a:hover, .grey-block a:hover,
.news-post, a:visited, .grey-block a:visited {
    color: #0071AD;
}


.news-post {
    padding: 18px;
}

.grey-block {
    padding: 18px;
}

.grey-block > h3, .news-post .title > h3 {
color: #000000;
font-family: latoregular;
line-height: 25px;
font-size: 20px;
}

.grey-block > h3 {
margin: 0 0 10px 0;
}

.news-post .title > h3 {
margin: 0 0 10px 10px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
.tab-view, .news-post, .grey-block { min-height: 360px; }
}

.tab-view, .news-post, .grey-block {
min-height:360px;
border: 1px solid #a0a0a0;
position: relative;
}

.tab-view .nav.nav-tabs > li {
width: 50%;
margin-top: 0;
}

.tab-view .nav-tabs {
border-bottom: 0 solid #ddd;
}

.tab-view ul > li:last-child {
margin-bottom: 5px;
}


.XBD_Effect_04_Default li .date {
padding: 0;
position: relative;
text-align: center;
background:rgba(0,0,0,0);
}

.XBD_Effect_04_Default li .date .day {
margin:0;
}

#dnn_News li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #bbb;
}

.media .date, .date .day {
background: #007BBD none repeat scroll 0 0;
color: #fff;
display: block;
font-family: latoregular;
font-size: 30px;
line-height: 30px;
padding: 6px 15px;
text-align: center;
width: 78px;
}
.news_detail .date .day,
.news_post .date .day {
    font-size: 24px;
    line-height: 27px;
    padding: 3px 15px;
}

.news_detail .date .month, 
.news_detail .date .year, 
.news_post .date .month, 
.news_post .date .year {
    font-size: 12px;
    line-height: 22px;
    padding: 0 5px;
}
.date .month, 
.date .year, 
.mnth, .year {
font-family: latobold;
font-size: 13px;
line-height: 24px;
display: inline-block;
margin: 0px;
width: 39px;
text-align: center;
padding: 3px 5px; float: left;
}
.date .month, .mnth {
background: #fff none repeat scroll 0 0;
color: #0053a1;
}

.news_post .news_calendar .month,
.news_detail .news_calendar .month {
background: #efefef none repeat scroll 0 0 !important;
}

.date .year, .year {
background: #ddd;
color: #000;
}
.grey-block .media-body {
width: inherit;
}

.grey-block .media-left {
padding: 0;
}

.dwnld-pdf {
}

.top-50 {
margin-top: 20px;
}

.member-details,
.member-details-active {
border: 1px solid #999;
padding: 25px;
display: inline-block;
margin: 50px 0;
}

.member-details-active {
background: #007BBD;
}

.member-details h2,
.member-details-active h2 {
margin: 0 0 10px 0;
font-family: 'latobold';
text-transform: uppercase;
font-size: 25px;
line-height: 30px;
}

.member-details h2 {
color: #0053a1;
}

.member-details-active h2,
.member-details-active p {
color: #fff;
}

.member-details-active p,
.member-details > p {
min-height: 110px;
}

.member-details .view-all,
.member-details-active .view-all {
float: left;
}

.member-details-active .view-all span {
background: #eee !important;
color: #074e95;
}

.member-details-active .view-all span:hover,
.member-details-active .view-all span:focus {
background: #fff;
color: #074e95;
}

.member-details-active .view-all:hover i,
.member-details-active .view-all:focus i {
background: #999;
color: #fff;
}

.member-details-active .view-all i {
background: #fff;
color: #074e95;
}

.my-pension {
/*background: rgba(0, 0, 0, 0) url("../img/My-MNOPF-pension.jpg") repeat scroll 0 0;*/
height: 420px;
width: 100%;
margin: 60px 0 0;
z-index: -1;
}

footer {
background: #eee none repeat scroll 0 0;
padding: 35px 0;
border-bottom: 10px solid #007BBD;
}

.bottom-copy {
background: #dddddd;
padding: 15px 0;
}

.bottom-copy-menu {
margin: 0;
padding: 0;
}

.bottom-copy-menu > li {
display: inline-block;
list-style: outside none none;
}

.bottom-copy-menu a {
color: #333;
font-family: "latobold";
font-size: 13px;
line-height: 30px;
padding: 10px 7px;
}

.bottom-copy-menu > li:after {
content: "|";
}

.bottom-copy-menu > li:last-child:after {
content: "";
}

.copy-right {
color: #333333;
font-family: latoregular;
line-height: 30px;
font-size: 13px;
margin: 0;
text-align: right;
}

.footer-menu-1 {
margin: 0;
padding: 0;
}

.footer-menu-1 li ul {
margin: 0 0 0 15px;
padding: 0;
}

.footer-menu-1 li {
list-style: none;
padding: 5px 0 0 7px;
}

.footer-menu-1 li a {
color: #0053a1;
transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}

.footer-menu-1 li a:hover,
.footer-menu-1 li a:focus {
color: #0A3966;
}

.footer-menu-1 li ul li:before {
content: "-";
margin: 0 14px 0 -21px;
transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}

.footer-menu-1 li ul li a {
color: #333333;
}

.footer-contact p em {
color: #007BBD;
font-size: 20px;
line-height: 30px;
}
.footer-contact {
    text-align: right;
}
.footer-contact img {
margin: 0 0 20px 0;
/*float: right;*/
text-align: right !important;
display: inline !important;
}
.footer-contact a {
    text-align: right;
    display: inline !important;
}

.footer-contact p {
color: #333333;
font-size: 20px;
font-family: 'latobold';
line-height: 30px;
float: right;
display: inline-block;
}

.footer-social {
display: inline-block;
float: right;
clear: both;
margin: 10;
padding: 0;
}

.footer-social li {
list-style: none;
display: inline-block;
margin: 0 0 0 10px;
}

.footer-social li a {
background: #fff none repeat scroll 0 0;
display: table-cell;
height: 36px;
padding: 0 8px;
text-align: center;
vertical-align: middle;
transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}

.footer-social li a em {
color: #999999;
font-size: 24px;
line-height: 30px;
transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}

.footer-social li a:hover em,
.footer-social li a:focus em {
color: #007BBD;
}

.pension-page .slider-description-pension h1 {
font-size: 34px;
line-height: 50px;
color: #ffffff;
font-family: 'latobold';
margin: 0;
text-align: left;
}

.pension-page .slider-description-area {
top: 250px;
}

.my-MNOPF-pension {
background: rgba(0, 0, 0, 0) url("../images/MY_MNOPF_PENSION_LEFT.JPG") repeat scroll 0 0;
border-radius: 36px;
display: inline-block;
height: 320px;
margin: 20px 0;
position: relative;
width: 100%;
}

.footer-contact {
/*float: right;*/
}

.img-center {
display: block;
text-align: center;
margin: 0 auto;
}

.pension-page .img-center {
margin-top: 50px;
margin-bottom: 50px;
}

.pension-faq > h2 {
color: #000000;
font-size: 20px;
}

.panel-collapse .panel-body {
background: #eee none repeat scroll 0 0;
color: #333;
padding: 20px;
}

.panel-default > .panel-heading {
border-radius: 0;
background-color: #eee;
color: #000;
padding: 0;
margin: 0 0 2px 0;
}
.panel-heading > button {
    padding: 15px 20px;
}

.pension-faq .panel-group .panel {
border-radius: 0;
margin: 0 !important;
border-top: 0 none;
box-shadow: none;
}

.pension-faq .panel-group .panel {
border: none;
}

.pension-faq .panel-title, #RptTable button {
color: #333;
font-family: latobold;
font-size: 16px;
line-height: 22px;
display: block !important;
width: 100%;
border: none;
text-align: left;
}
.news-post .newsSummary {
    text-align: right;
}
.news-post .newsSummary p {
    text-align: left;
}

.news-post .newsSummary .content {
color: #333;
font-family: latoregular;
font-size: 16px;
margin-bottom: 8px;
margin-top: 0;
}
.pension-faq .panel-title, #RptTable button {
margin: 0;  
}

.mymnopf_pension-back {
background: rgba(51, 51, 51, 0.7) none repeat scroll 0 0;
border-radius: 0 0 36px 30px;
bottom: 0;
position: absolute;
padding: 10px 0 0 8px;
}

.mymnopf_pension-back > h2 {
color: #fff;
font-size: 35px;
margin: 0 0 15px 0;
text-align: center;
}

.mymnopf_pension-back > a.btn {
background: rgb(0, 83, 161);
background: -moz-linear-gradient(90deg, rgb(0, 83, 161) 9%, rgb(0, 125, 195) 49%);
background: -webkit-linear-gradient(90deg, rgb(0, 83, 161) 9%, rgb(0, 125, 195) 49%);
background: -o-linear-gradient(90deg, rgb(0, 83, 161) 9%, rgb(0, 125, 195) 49%);
background: -ms-linear-gradient(90deg, rgb(0, 83, 161) 9%, rgb(0, 125, 195) 49%);
background: linear-gradient(180deg, rgb(0, 83, 161) 9%, rgb(0, 125, 195) 49%);
border-color: #fff;
border-radius: 30px 0 30px 0;
border-style: solid;
border-width: 2px 0 0 2px;
color: #fff;
float: right;
font-family: "latobold";
font-size: 22px;
line-height: 20px;
padding: 15px;
}

.mymnopf_pension-back > p {
color: #fff;
float: left;
font-size: 15px;
line-height: 16px;
margin: 0 0 10px 0;
text-align: center;
font-family: "latobold";
width: 54%;
}

.linklist li.linkitem,
.left-menu .btn {
position: relative;
background: #eee none repeat scroll 0 0;
border-radius: 0;
color: #000000;
display: inline-block;
width: 100%;
font-size: 22px;
line-height: 30px;
padding: 0;
text-align: left;
font-family: latobold;
white-space: inherit;
}

.left-menu .btn:last-child {
border-top: 0 none;
}

.linklist li {
border-left:1px solid #ccc;
border-right:1px solid #ccc;
border-bottom:1px solid #ccc;
}

.linkitem:first-child {
border-top:1px solid #ccc;
}

.linklist li a {
transition:all 0.3s ease-in-out 0s;
-moz-transition:all 0.3s ease-in-out 0s;
-webkit-transition:all 0.3s ease-in-out 0s;
-o-transition:all 0.3s ease-in-out 0s;
}

.linklist li:last-child a {
border-bottom:1px solid #f00;
}

.linklist li a:hover, .linklist li a:focus {
text-decoration: none;
background: #007BBD none repeat scroll 0 0;
color: #fff !important;
}

/* New Left Menu */
    nav.mnopf-menu-left {
        border-top: 1px solid #ccc;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
        padding: 0;
        margin: 0 0 30px 0;
    }
    nav.mnopf-menu-left ul {
        margin: 0;
        padding: 0;
        position: relative;
    }
    nav.mnopf-menu-left li {
        padding: 0;
        margin: 0;
        list-style-type: none;
        position: relative;
    }
    nav.mnopf-menu-left li a {
        display: block;
        border-bottom: 1px solid #ccc;
        /*padding: 15px 30px 15px 20px;
        font-size: 20px;*/
        font-weight: 400;
        text-decoration: none;
        position: relative;
    }
    nav.mnopf-menu-left li a:after {
        color: #000;
        content: "\f105";
        display: flex;
        position: absolute;
        font-family: fontawesome;
        font-size: 20px;
        right: 15px;
        top: 0;
        bottom: 0;
        align-items: center;
    }



/* Top level left nav items */
    nav.mnopf-menu-left > ul > li > a {
        color: #000;
        background-color: #f7f7f7;
    }
    nav.mnopf-menu-left > ul > li > a:hover {
        text-decoration: none;
        background-color: #fafafa;
    }
    nav.mnopf-menu-left > ul > li > a.active {
        background-color: #007BBD !important;
        color: #fff !important;
    }
    nav.mnopf-menu-left > ul > li > a.active:before {
        color: #fff;
    }
    nav.mnopf-menu-left .activeparent {
        font-family: latobold;
    }
/* Second level left nav items */
    nav.mnopf-menu-left > ul > li > ul > li > a:link,
    nav.mnopf-menu-left > ul > li > ul > li > a:hover,
    nav.mnopf-menu-left > ul > li > ul > li > a:active,
    nav.mnopf-menu-left > ul > li > ul > li > a:visited {
        background-color: white;
        color: #333;
        font-size: 18px;
    }
    nav.mnopf-menu-left > ul > li > ul > li a.active {
        font-family: latobold;
        color: #007BBD !important;
    }
    nav.mnopf-menu-left > ul > li > ul > li > a:before {
        color: #ccc;
        content: "\f111";
        display: inline-block;
        float: left;
        font-family: fontawesome;
        font-size: 10px;
        margin: 1px 15px 20px 0;
    }
    nav.mnopf-menu-left > ul > li > ul > li a.active:before {
        color: #007BBD !important;
    }
    nav.mnopf-menu-left > ul > li > ul > li > a:hover:before {
        color: #007BBD;
    }

/* Responsive styles for left nav items */

@media screen and (min-width: 993px) {
    nav.mnopf-menu-left li a {
        padding: 15px 30px 15px 20px;
        font-size: 18px !important;
    }
}
@media screen and (max-width: 992px) {
    nav.mnopf-menu-left li a {
        padding: 10px 30px 10px 15px;
        font-size: 16px !important;
    }
    nav.mnopf-menu-left > ul > li > ul > li > a:visited {
        font-size: 15px !important;
    }
}


/* Fix container width */
@media screen and (max-width: 1200px) {
    .container {
        width:  96% !important;
        padding-left: 2% !important;
        padding-right: 2% !important;
    }
}



.left_menu_active.btn.btn-default > a, .linklist li a {
    color: rgb(0, 0, 0);
    padding: 15px 20px;
    width:89%;
    display:table-cell;
}

.left_menu_active.btn.btn-default > a[aria-expanded="true"], 
.ltmnactv {
background: #007BBD none repeat scroll 0 0;
color: #fff !important;
}

.left_menu_active.btn.btn-default > a:hover,
.left_menu_active.btn.btn-default > a:focus {
text-decoration: none;
}

.left_menu_active.btn.btn-default > a[role="button"] {
    display: table-cell;
    vertical-align:middle;
    padding:0 20px;
}








/*.left_menu_active.btn.btn-default > a[role="button"] {

display: block;
position: absolute;
right: 0;
top: 0;
}*/
/*    .left-menu .btn:before {
content: "\f105";
display: inline-block;
font-family: fontawesome;
font-size: 20px;
font-weight: normal;
margin: 0 0 0 40px;
float: right;
} */

.left-menu .well {
background-color: #fff;
border-color: #e3e3e3;
border-radius: 0;
border-style: solid;
border-width: 1px 0 0;
box-shadow: none;
display: block;
float: left;
margin-bottom: 0;
min-height: 0;
padding: 0;
width: 100%;
}

.left-menu .well > ul {
padding: 0;
}

.left-menu .well li {
border-bottom: 1px solid #ccc;
list-style: outside none none;
padding: 15px 15px 15px 50px;
position:relative;
}

.left-menu .well a {
color: #333;
font-family: latoregular;
font-size: 19px;
line-height: 30px;
}

.pension-faq .panel-default .panel-heading button.panel-title {
color: #333; font-family: latobold;
}

.pension-faq .panel-default .panel-heading button.panel-title:hover,
.pension-faq .panel-default .panel-heading button.panel-title:focus {
text-decoration: none;
}

.pension-faq .panel-default .panel-heading button.panel-title:before {
content: "\f077";
display: inline-block;
float: right;
font-family: fontawesome;
color: #007BBD;
}

.pension-faq .panel-default .panel-heading button.panel-title.collapsed:before {
content: "\f078" !important;
float: right;
font-family: fontawesome;
color: #ccc !important;
width: 10%;
text-align: right;
}

.pension-coa div p {
color: #000;
font-family: 'latoregular';
font-size: 16px;
line-height: 25px;
}

.pension-coa .pension-content p span.blue,
p span.blue {
color: #007BBD;
font-family: 'latobold';
font-size: 16px;
line-height: 25px;
}

.pension-coa .pension-content-pdf i {
font-size: 45px;
color: #e93737;
}

.pension-coa {
margin: 40px 0 0;
border: 1px dashed #007BBD;
display: inline-block;
padding: 15px 5px;
}

.pension-coa .view-all {
float: right;
margin: 12px 0 0;
}

.get-in-touch {
border: 1px solid #007BBD;
margin: 0px 0 30px;
}

.get-in-title {
background: #007BBD;
text-align: center;
padding: 15px 8px;
width: 18%;
}

.get-in-title p {
font-size: 25px;
font-family: 'latobold';
color: #fff;
text-transform: uppercase;
line-height: 22px;
}

.get-in-title p span {
font-size: 14px;
line-height: 15px;
}

.get-in-contact.media-right p:first-child,
.get-in-contact.media-right p:last-child {
font-family: "latobold";
text-align: right;
line-height: 30px;
}

.get-in-contact.media-right p:first-child {
border-bottom: 1px solid #ccc;
font-size: 27px;
margin: 0 0 5px;
padding: 0 0 10px;
}

.get-in-contact.media-right p:last-child {
font-size: 16px;
}

.get-in-contact p i {
color: #007BBD;
padding: 0 5px 0 0;
}

.get-in-contact p:first-child i {
font-size: 24px;
}

.get-in-contact p:last-child i {
font-size: 20px;
}

.get-in-contact {
padding: 6px 12px;
}

.publication h1, h1 {
font-size: 42px;
line-height: 30px;
}

.publication h1 {
color: #000;
margin: 0 0 20px 0;
padding: 0 0 20px 0;
border-bottom: 1px solid #000;
line-height:50px;
}

.publication p {
margin-bottom: 15px;
}

.mnopf-publication .content {
padding: 80px 0;
}

.NormalTextBox {
}

.white-block input[type="text"] {
background: #074e95 none repeat scroll 0 0;
border: 1px solid #074e95;
color: #fff;
height: 50px;
padding: 10px;
width: 84%;
}

.tab-view .Normal > ul > li {
color: #333333;
font-family: "latoregular";
font-size: 16px;
line-height: 20px;
list-style: outside none none;
margin: 10px 0 20px;
}



.Normal > h3 {
margin: 0 0 10px;
}

.Normal > h3, 
.news-post .title > h3,
.news-post h3,
.news-post h3 > a {
    color: #333;
    font-family: latoregular;
    font-size: 20px;
    line-height: 25px;
    text-decoration: none;
}


/* for left menu selected  highlght  End*/

.que .pension-faq .panel-default .panel-heading .panel-title a:before {
content: "" !important;
}

.que .pension-faq .panel-default > .panel-heading {
background: #eee none repeat scroll 0 0;
}

.que .pension-faq .panel-collapse .panel-body {
background: #fff none repeat scroll 0 0;
}


.eventlistbody {
}

.eventdate {
color: #999;
font-size: 14px;
margin: 0 0 10px;
font-style: italic;
}

.eventlistimg img {
margin: 5px 0 0;
}

.SelCategory > span {
color: #333;
display: block;
font-size: 20px;
line-height: 24px;
margin: 10px 0;
}

.rcbFocused {
width: 300px !important;
}

.RadComboBox_Default .rcbInput {
background: #007BBD none repeat scroll 0 0 !important;
color: #fff;
cursor: pointer !important;
font-size: 20px;
}

.RadComboBox table {
width: 300px !important;
}

.rcbReadOnly > td {
border: 0 none !important;
box-shadow: none !important;
}

.rcbReadOnly td.rcbArrowCell > a {
background: #ddd none repeat scroll 0 0 !important;
font-size: 0;
height: 40px !important;
padding: 15px;
}

.rcbReadOnly td.rcbArrowCell > a:hover, .rcbReadOnly td.rcbArrowCell > a:hover {
text-decoration: none;
}

.rcbReadOnly td.rcbArrowCell > a:before {
color: #333;
content: "\f107";
font-family: fontawesome;
font-size: 28px;
position: relative;
top: 2px;
}

.EvtHdrLftCol {
margin: 0;
}

.RptPagerPage, .RptPagerCurrentPage {
background: #ccc none repeat scroll 0 0;
height: 30px;
margin: 5px 1px;
padding: 5px 10px;
text-align: center;
vertical-align: middle;
width: 30px;
}

.RptPagerPage {
background: #ccc none repeat scroll 0 0;
}

.RptPagerCurrentPage {
background: #007BBD none repeat scroll 0 0;
color: #fff !important;
}

.RptPagerHeader {
display: block;
margin: 10px 0 40px 0;
}

.DNNContainer_Title_h2.SpacingBottom {
margin: 60px 0 0;
}

.SelCategory > span {
margin: 10px 0;
}

.SelCategoryTR {
float: right;
}

input[type=checkbox], input[type=radio] {
margin: 4px 7px 0 !important;
margin-top: 1px\9;
line-height: normal;
}

label {
font-family: latoregular;
}

div#divEventDetailsTemplate1 {
margin-bottom: 27px;
}

.DetailContentLeft .panel-info > .panel-heading {
background-color: #007BBD !important;
border-color: #007BBD !important;
color: #fff !important;
text-align: center;
border-radius: 0 !important;
}

.DetailContentLeft .panel-info {
border-color: #007BBD !important;
}

.DetailContentLeft .panel-body {
padding: 9px !important;
text-align: center !important;
}

.dnnClear .btn-primary {
color: #fff;
background-color: #007BBD;
border-color: #007BBD;
}

.Normal, .NormalDisabled, .NormalDeleted {
color: #444;
font-size: 16px;
font-weight: normal;
line-height: 24px;
}

.Head {font-size: 22px; line-height: 28px;}

.SubHead-fontsize {
font-size: 18px;
}

.eventCreateDate {
font-style: italic;
}

ul.DetailCommands.dnnActions.dnnClear.pull-right {
margin-bottom: 18px;
}

.eventAuthor {
border-bottom: 1px dashed #666;
padding-bottom: 6px;
margin-bottom: 9px;
}

.RadComboBox_Default {
display: inline-block !important;
width: inherit !important;
}

.RptTable a{
margin-bottom: 0;   
}

.panel {
border-radius: 0 !important;
}


.news_title > a,
.grey-block #RptTable h3 a,
.news-post .rightView .title a {
color: #333;
font-size: 20px;
line-height: 26px;
}
.grey-block #RptTable h3 a:hover, .grey-block #RptTable h3 a:focus { text-decoration:none; }

.news_calendar {
    display: none;
    float: left;
    height: auto;
    width: 12%;
}
.news_post .newsListTitle {
    display: block;

    width: 87%;
}
.news_post .post_author a, .news_post  .post_date {
    color: #666;
}
.news_post .post_author:after {
    color: #666;
    content: "|";
    padding: 0 6px 0 7px;
}
.news_post .news_headline {
    color: #333 !important;
    font-size: 15px !important;
    padding: 0;
    text-transform: capitalize !important;
}
.news_post .post_content {
    margin-top: 20px;
}
.news_post .post_categories,
.news_detail  .post_categories {
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd !important;
    margin:15px 0 0 0;
    color: #666;
}
.news_detail .post_categories > a,
.news_list .post_categories > a {
    color: #337ab7 !important;
}
.news_detail .post_categories .sep,
.news_list .post_categories .sep {
    color: #666 !important;
    padding: 0 5px;
}

.news_list .news_post {
    border-bottom: 5px solid #dcdcdc;
    margin-bottom: 20px;
    padding: 0 20px 20px;
}

.news_post .post_content .newsContPara {
    display: block;
    float: left;
    width: 73%;
    min-height: 80px;
}

.news_rightpane h2  {
    border-bottom: 2px solid #0053a1 !important;
    padding: 0 0 10px;
}

.news_rightpane  .Category_Default .category_list ul {
    margin: 20px 0 0 !important;
}

.Archive_Default .archive_list{
    padding:0px!important;
    margin:0px;
}
.Archive_Default .archive_list li{
    list-style:none;
    padding: 0;
    border-bottom:1px dotted #CCCCCC;
    background:url(../images/CALENDAR_ICON.PNG) 0px 10px no-repeat;
}
.Archive_Default .archive_list li a{
    text-decoration:none;
    color:#111;
}
.Archive_Default .archive_list li a:hover{
    text-decoration:underline;
}
.news_rightpane .Category_Default .category_list li a,
.news_rightpane .Archive_Default .archive_list li {
background:none;
}

.news_rightpane .Category_Default .category_list li a,
.news_rightpane .Archive_Default .archive_list li a {
    color: #666;
    font-size: 18px;
    text-decoration:none;
    display:block;
    padding: 12px 0;
}

.news_rightpane .Category_Default .category_list li a:after,
.news_rightpane .Archive_Default .archive_list li a:after {
    color: #0053a1;
    content: "\f105";
    float: right;
    font-family: FontAwesome;
    font-size: 22px;
    transition:all 0.3s ease-in-out 0s;
    -moz-transition:all 0.3s ease-in-out 0s;
    -webkit-transition:all 0.3s ease-in-out 0s;
    -o-transition:all 0.3s ease-in-out 0s;
    padding:0 10px 0 0;
}

.news_rightpane .Category_Default .category_list li a:hover:after,
.news_rightpane .Archive_Default .archive_list li a:hover:after { 
    padding:0 0 0 0;
}

.news_rightpane .archive_list a.active {
    font-family: 'latobold';
}

.news_rightpane .NormalTextBox {
    border-radius: 0;
    width: 270px !important;
}

.news_detail h2.news_title {
    color: #333;
    font-size: 20px;
    font-weight: normal;
    line-height: 26px;
    margin: 0 0 4px;
}

.news_detail .post_content > p {
    display: inline-block;
    width: 100%;
    margin: 0 0 15px 0;
}

.news_detail .attachments_box h4 {
    background: #007BBD none repeat scroll 0 0;
    border: 1px solid #fff;
    color: #fff;
    margin: 40px 0 10px;
    padding: 10px;
}

.news_detail .attachments_box ul li {
    color: #333;
    font-size: 20px;
    list-style: outside none none;
    margin: 15px 10px;
    }
    
.news_detail .attachments_box ul li a {
    color: #333;
}
.news_detail .attachments_box ul li a,
.news_detail .attachments_box ul li a:before {
    transition:all 0.3s ease-in-out 0s;
    -moz-transition:all 0.3s ease-in-out 0s;
    -webkit-transition:all 0.3s ease-in-out 0s;
    -o-transition:all 0.3s ease-in-out 0s;
}

.news_detail .attachments_box ul li a:before {
    color: #333;
    content:"\f101";
    font-family: fontawesome;
    font-size: 25px;
    padding: 0 15px 0 0;
}
.news_detail .attachments_box ul li a:hover,
.news_detail .attachments_box ul li a:focus {
    text-decoration:none;
    color: #007BBD;
    padding: 0 0 0 5px;
}
.news_detail .attachments_box ul li a:hover:before,
.news_detail .attachments_box ul li a:focus:before {
    color: #007BBD;
    padding: 0 15px 0 5px;
}

.news_detail .post_sharing {
    margin-top: 15px;
}

.news_post .news_headline .post_author a,
.news_post .news_headline .post_author a,
.news_detail .news_headline .post_date,
.news_detail .news_headline .post_date {
    color: #666;
    font-size: 14px;
    font-style: italic;
}
.news_detail {
    padding: 0px 0 0 !important;
    display:inline-block !important;
}
.eventlist {
    border-bottom: 1px dashed #ddd;
    display: inline-block;
    margin: 0 0 30px;
    padding: 0 0 30px;
    width: 100%;
}

.dnnForm .dnnFormItem {
    margin: 15px 0;
}
.pension-page .well {
    background: #fff none repeat scroll 0 0;
    border: 0 none;
    box-shadow: none;
    margin:0;
    padding: 0;
}
.pension-page .well > h2 {
    border: 0 none !important;
    padding: 0 !important;
}


a.DocTrens-Link:link,
a.DocTrens-Link:hover,
a.DocTrens-Link:active,
a.DocTrens-Link:visited {
    text-decoration:none;
    display: block;
    text-align: left;
}
a.DocTrens-Link span {
    display: inline-block;
    float: right;
    border: 1px solid #ccc;
    margin-left: 10px;
}
a.DocTrens-Link span.icon_pdf:before {
    color: #f00;
    content: "\f1c1";
    font-family: fontawesome;
    font-weight: normal;
    font-size: 15px;
    padding: 3px 5px 2px;
    vertical-align: middle;
}
a.DocTrens-Link span.icon_pdf:after {
    color: #333;
    content: "PDF";
    font-family: latoregular;
    font-weight: normal;
    font-size: 15px;
    padding: 3px 5px 2px;
    vertical-align: middle;
}

.tab-view a {
    font-weight: bold;
}






.mnopf-home .tab-view .dnnGridItem {
    border-bottom: 0 dotted #efefef;
    clear: both;
    display: inline-block;
    margin: 15px 0 0 0;
    padding: 0;
    width: 100%;
}
.dnnGridItem:hover, .dnnGridAltItem:hover {
    background-color: none !important;
    background: none !important;
}

.CatDocTrens  .dnnGridItem {
    background: #fcfcfc none repeat scroll 0 0;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 3px 3px 2px -2px #ccc;
    padding: 15px;
    overflow: hidden;   
}
.errorimg {
    margin: 10px auto 35px;
}
.Error .view-all > span,
.thanku .view-all > span {
    font-size: 18px;
    padding: 15px;
}
.Error .view-all,
.thanku .view-all {
    display: inline-block;
    margin: 20px 0 0;
}
.Error .view-all em,
.thanku .view-all em {
    font-size: 30px;
    line-height: 35px;
    padding: 5px 18px 12px;
}
.thanku article .lead {
    margin: 60px 0 15px;
}
.DNNspot-sitemap {
    margin: 0 0 40px 20px;
}
.DNNspot-sitemap li {
    padding: 10px 0 0;
     list-style: initial;
}
.DNNspot-sitemap li a {
    color: #333;
    font-family: latoregular;
    font-size: 18px;
    line-height: 25px;
    transition:all 0.25s ease-in-out;
    -moz-transition:all 0.25s ease-in-out;
    -webkit-transition:all 0.25s ease-in-out;
    -o-transition:all 0.25s ease-in-out;
}
.DNNspot-sitemap li a:hover,
.DNNspot-sitemap li a:focus {
    text-decoration:none;
    color:#337ab7;
}

@media screen and (min-width:0\0) {
.news_post .post_more > a { padding:6px 0px 4px 12px !important; }
} 

.news_title > a:hover,
.grey-block #RptTable h3 a:hover,
.news-post .rightView .title a:hover,
.news_title > a:focus,
.grey-block #RptTable h3 a:focus,
.news-post .rightView .title a:focus {
text-decoration:none;
}


.publication table td{ padding:5px 10px;}
.publication table th{ text-align:center}
.publication table td:first-child{ font-weight:bold;}

.publication ul {
   margin: 10px;
}

article.publication ul {
   padding: 0px 10px 10px 10px;
   margin-left: 25px;
}
.publication li {
    list-style-type: disc;
    margin-bottom: 7px;
}
.panel-title > a:hover{ text-decoration:none;}
.panel ul {
    /*padding-left: 15px;*/
}
.panel .panel-collapse {
    padding: 0;
}
.panel > div,
.panel-collapse > div {
    padding: 20px;
}

.news_title > a:hover, .grey-block #RptTable h3 a:hover, .news-post .rightView .title a:hover{ text-decoration:none !important;}
.news-post .newsSummary > a:after{ position:relative !important; right:-1px !important}
.loginContent .dnnForm {
    padding: 0 20px;
    text-align: center;
}
#dnn_ctr484_Login_Login_DNN_lblLoginRememberMe , #dnn_ctr484_Login_Login_DNN_lblLogin{ display:none !important}
.dnnLoginActions a.dnnSecondaryAction {
    display: none;
}
.onecolumn-page .publication h1{ padding:15px 0 20px;}
.DocLeftMenu .linklist li a {
    display: block;
    width: 100%;
}
.DocLeftMenu .linklist li.activeli a {
    color: rgb(255, 255, 255) !important;
}


.field-items p {
    margin-bottom: 10px;
}
.panel a:hover , .panel a:focus{ text-decoration:none;}

.li-level0::before {
    content: "\f105 ";
    left: -15px;
    position: absolute;
    top: 10px;
    font-family:FontAwesome;
}
.li-level2{ position:relative; list-style:none !important}
.li-level2::before {
    content: "\f10c";
    left: -15px;
    position: absolute;
    top: 12px;
    font-family:FontAwesome;
    font-size:9px;
}
.bottom-logout{ background:rgb(0, 125, 194); padding:5px}
.bottom-logout a{ color:#ffffff !important} 
 
 
 iframe {
 /*   height: 100%; */
    width: 100%;
}

.RptTable h3 {
    margin-bottom: 10px !important;
}


/* Contact Floaty */
#contactFloaty {

    position: fixed;
    top: 100px;
    right: -350px;
    margin: 0;
    padding: 0;
    z-index: 10000;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 350px;
    background-color: #fff
}
.showContactFloaty {
    right: 0px !important;
    -webkit-box-shadow: 3px 3px 12px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 3px 3px 12px 0px rgba(0,0,0,0.35);
    box-shadow: 3px 3px 12px 0px rgba(0,0,0,0.35);
}
#contactFloatyLink {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    display: inline-block;
    background-color: #007BBD;
    color: #fff;
    padding: 10px;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    text-decoration: none;
    left: -70px;
    top: 100px;
    position: absolute;
    border: 1px solid #fff;
}
#contactFloatyLink:link,
#contactFloatyLink:hover,
#contactFloatyLink:active,
#contactFloatyLink:visited {
    background-color: #007BBD;
    color: #fff;
}
#contactFloaty > .floaty-content-block {
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
#contactFloaty .floaty-content-1,
#contactFloaty .floaty-content-2 {
    padding: 10px;
}
#contactFloaty p {
font-size: 13px;
}
#contactFloaty h4 {
font-size: 14px;
font-weight: bold;
}
#contactFloaty .floaty-content-1 {
    background-color: #f8f8ff;
}
#contactFloaty .floaty-content-2 {
    background-color: #fef3f4;
}

#contactFloaty .floaty-content-dark {
    padding: 10px;
    background-color: #007BBD;
    color: #fff;
}
#contactFloaty .floaty-content-dark p,
#contactFloaty .floaty-content-dark a,
#contactFloaty .floaty-content-dark a:link,
#contactFloaty .floaty-content-dark a:hover,
#contactFloaty .floaty-content-dark a:active,
#contactFloaty .floaty-content-dark a:visited {
    color: #fff;
}
#contactFloatyHide {
    display: block;
    text-align: right;
}
@media only screen and (max-width: 767px) {
    #contactFloatyLink {
        left: -64px !important;
    }
    #contactFloaty {
        top: 0px;
    }
}


/* Homepage Contact Boxes */

.home-contact-MNOPF { 
    border: 1px solid grey; 
    background: url("../images/MYMNOPF_BACK.PNG") #f8f8ff top right no-repeat;
}
.home-contact-MNOPF a:link,
.home-contact-MNOPF a:active,
.home-contact-MNOPF a:hover,
.home-contact-MNOPF a:visited {
    color: #0071AD !important;
}
.home-contact-ERP-MNOPF {
    background: url("../images/ERP_MNOPF_BACK.PNG") #fef3f4 top right no-repeat;
    border: 1px solid grey; 
}
.ERP {
    background-color: #fef3f4;
    border: 1px dotted grey;
    padding: 3px;
}

.home-contact-ERP { 
    border: 1px solid grey; 
    background: url("../images/ERP_BACK.PNG") #ffe6e6 top right no-repeat; 
}

.home-contact-myMNOPF { 
    border: 1px solid grey; 
}
.home-contactBoxes { 
    background-color: #fff !important; 
}
.contactBoxes { 
    padding: 18px !important; 
    min-height: 380px;
}
.contactBoxes h3 {
    margin: 10px 0 20px 0;
    font-weight: bold;
}
.contactBoxes p { 
    margin: 0 0 7px 0;
}
#contactFloaty .glyphicon,
.contactBoxes .glyphicon {
    margin-left: -19px;
    padding-right: 4px;
    font-size: 0.9em;
}

@media screen and (min-width: 751px) and (max-width: 974px) {
    .secondaryContactBoxes {
        margin-top: 20px !important;
    }
}

#backToTop {
    display: block;
    float: right;
    margin: 0 0 20px 0;
    padding: 5px 10px;
    background-color: #007BBD;
    border: none;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}
#backToTop .glyphicon {
    margin-left: 5px;
    font-size: 0.8em;
}











/* ORIGINALLY STYLE6D5C.CSS */
.XBD_Effect_04_Default ul{
    margin:0;
    padding:0;
    list-style:0;
}
.XBD_Effect_04_Default li{
    margin:0 0 20px 0;
    padding:0;
    list-style:none;
    clear:both;
}
.XBD_Effect_04_Default li .date {
    padding:0 ;
    text-align:center;
    position:relative;
}
.XBD_Effect_04_Default li .date .year{
    display:block;
    font-size:13px;
    margin-bottom:3px;
}
.XBD_Effect_04_Default li .date .month{
    display:block;
    font-size:14px;
    margin-bottom:3px;
}
.XBD_Effect_04_Default li .date .day{
    display:block;
    font-size:30px;
    margin-bottom:0;
}

.XBD_Effect_04_Default li .title {
    font-size:16px;
    font-weight:bold;
    margin-bottom:8px;
}
.XBD_Effect_04_Default li .info {
    margin:0;
    padding:0;
    list-style:none;
}
.XBD_Effect_04_Default li .info li{
    margin:0;
    padding:0;
    display:inline-block;
    background-color:#efefef;
    padding:3px 5px;
    margin-bottom:8px;
}
.XBD_Effect_04_Default li .category a{
    display:inline-block;
    background-color:#efefef;
    padding:3px 5px;
    margin-bottom:8px;
}
.XBD_Effect_04_Default li .thumbnail {
    border:1px solid #e3e3e3;
    padding:2px;
    text-align:center;
}
.XBD_Effect_04_Default li .thumbnail img{
    max-width:100%;
}
.XBD_Effect_04_Default li .content {
    margin-bottom:8px;
}

.XBD_Effect_04_Default .leftView {
    float:left;
    padding-right:10px;
    box-sizing:             border-box;
    -moz-box-sizing:        border-box;
    -webkit-box-sizing:     border-box;
    margin:2px 0 8px;
}
.XBD_Effect_04_Default .rightView {
    margin:0 0 8px;
    overflow:hidden;
    width:auto;
}




@media only screen and (max-width: 767px) {
    .XBD_Effect_04_Default > li .leftView{
        transform:scale(0.8);
        -webkit-transform:scale(0.8);
    }
}






/* ORIGINALLY STYLE6D5C_3.CSS */
.Category_Default .category_list,
.Category_Default .category_list ul{
    padding:0px!important;
    margin:0px;
}
.Category_Default .category_list li{
    list-style:none;
}
.Category_Default .category_list li a.title{
    text-decoration:none;
    border-bottom:1px dotted #CCCCCC;
    padding:6px 0px 6px 20px;
    background:url(../images/LIST_ICON.PNG) 0px 8px no-repeat;
    display:block;
    color:#111;
}
.Category_Default .category_list li a.rss{
    float:right;
    background:url(../images/RSS_3.PNG) no-repeat center center;
    width:16px;
    height:16px;
    text-indent:-100px;
    overflow:hidden;
    margin-top:7px;
}
.Category_Default .category_list li a.title:hover{
    text-decoration:underline;
}
.Category_Default .category_list li li a.title{
    padding:3px 0px 3px 20px;
    background:none;
    border:none;
}
.Category_Default .category_list li li li a.title{
    padding:3px 0px 3px 40px;
}


/* Sitemap */
ul.sitemap li {
    margin:  0 !important;
    padding: 0 !important;
    list-style: none;
}
ul.sitemap li > a {
    display: block;
    padding: 7px 0;
}
ul.sitemap > li > a {
    font-family: 'latobold', Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #333;
}

ul.sitemap > li > ul {
    border-left: 2px solid #999;
    margin-left: 10px;
}
ul.sitemap > li > ul > li > a {
    font-family: 'latobold', Arial, Helvetica, sans-serif;
    font-size: 18px;
}

ul.sitemap > li > ul > li> ul {
    border-left: 2px solid #ccc;
    margin-left: 10px;
}
ul.sitemap > li > ul > li > ul > li > a {
    font-family: 'latoregular', Arial, Helvetica, sans-serif;
    font-size: 16px;
}


/* Screen Reader Skip link */
a.screen-reader-text:link,
a.screen-reader-text:active,
a.screen-reader-text:hover,
a.screen-reader-text:visited,
a.screen-reader-text:focus {
    background-color: #006399 !important;
    border: 0;
    color: #fff !important;
    display: block;
    line-height: normal;
    text-decoration: none;
    word-wrap: normal!important;
}

a.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    font-size: 1em;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

a.screen-reader-text:focus {
    clip: auto!important;
    -webkit-clip-path: none;
    clip-path: none;
    height: auto;
    left: 5px;
    padding: 15px 23px 14px;
    top: 5px;
    width: auto;
    z-index: 100000
}


/* Figures */
figure {
    text-align: center;
    margin: 0 auto 20px auto;
    max-width: 600px;
}
figure img {
    max-width: 100%;
}