/*
    max-width: 140px;
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */

/* =============================================================================
 *   Base
 * ========================================================================== */

/*
 * To preserve theme settings never apply font properties to the HTML element.
 * This is critically important if you are using the Responsive JavaScript
 * feature as this relies on being able to set a pseudo font family on the HTML
 * element. If you need to set default font properties of any kind use the BODY
 * element as these can be overridden using font theme settings.
 */

html {
  background: #e5e5e5;
}


body {
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 87.5%;
}


/* =============================================================================
 *   HTML Elements
 * ========================================================================== */

h1 {}

h2 {}

h3 {}

h4 {}

h5 {}

h6 {}

p {}

b,
strong {}

i,
em {}

dfn {}

sup {}

sub {}

del {}

ins {}

blockquote {}

cite {}

q {}

address {}

ul {}

ol {}

li {}

dl {}

dd {}

dt {}

abbr {}

acronym {}

pre,
code,
tt,
samp,
kbd,
var {
  font-family: Consolas, Monaco, 'Courier New', Courier, monospace, sans-serif;
}


/* =============================================================================
 *   Wrappers
 * ========================================================================== */

/*
 * Page wrapper, includes the .container class which sets the overall page or section width
 * Main wrapper in page.tpl.php, the .container class sets the width of the page, do not add width to it!
 */
#page {
    //background-color: #045ba8;
}
#page .container {
    margin: 0px 0 0 0;
}

/*
 * Wraps all header elements - branding and .region-header
 */
#header {
  background-color: #fff;
  margin: -40px 0 -20px 0!important;
  padding: 10px 0 0 0!important;	
}
/*
 * Wraps the sidebars the content column
 */
#columns {}

/*
 * Main content column wrapper
 */
#content-column {}

.not-front #content-column {
    background-color: #ffffff;
}

/*
 * Wraps the main-content-header, the content region and feed-icons. Use this wrapper to style the entire main content column
 */
#main-content {}

.not-front .content-inner  {
    background-color: #ffffff!important;
    //padding: 0 20px 0 20px;
    max-width: 940px;
}

/*
 * Wraps the content region, avoid applying styles to this wrapper, its used mainly for position and invisible gutters and can be problematic to style
 */
#content {}

/*
 * Footer wrapper
 */
#footer {}

/*
 * Panels may need additional margin wrangling when in the $content region
 */
#content .panel-display {}

/*
 * Full Width Wrappers
 * These are used in the optional page--full-width-wrappers.tpl.php template.
 * All have internal .container classes. In the full width wrapper template the
 * .container classes set the width or max-width of the contained element - you
 * can style this but never add any width/margin/padding/borders etc to .container
 */
/*
 * Wraps #page
 */
#page-wrapper {}
#page-wrapper .container {}

/*
 * Wraps the leaderboard
 */
.region-leaderboard {
background-color: #ffffff;
}

#leaderboard-wrapper {}

#leaderboard-wrapper .container {
}

/*
 * Wraps the header
 */
#header-wrapper {
  /* Debug styles, is this working */
}
#header-wrapper .container {}

/*
 * Wraps the nav elements
 */
#nav-wrapper {}
#nav-wrapper .container {}

/*
 * Wraps breadcrumb
 */
#breadcrumb-wrapper {}
#breadcrumb-wrapper .container {}

/*
 * Wraps messages and help
 */
#messages-help-wrapper {}
#messages-help-wrapper .container {}

/*
 * Wraps the secondary content/preface region
 */
#secondary-content-wrapper {}
#secondary-content-wrapper .container {}

/*
 * Wraps the main content column
 */
#content-wrapper {}
#content-wrapper .container {}

/*
 * Wraps the tertiary content/postfix region
 */
#tertiary-content-wrapper {}
#tertiary-content-wrapper .container {}

/*
 * Footer wrapper
 */
#footer-wrapper {
  /* Debug styles, is this working? */
  background: rgba(255, 192, 203, 0.5);
}
#footer-wrapper .container {}


/* =============================================================================
 *   Branding
 * ========================================================================== */

/*
 * Wraps all the branding elements, logo, name and slogan
 */
#branding {
    max-width: 450px!important;
    margin: 50px 0 0 0!important;
    padding: 10px 10px 20px 0px!important;
}
/*
 * Logo
 */
#logo {
  background-color: #045ba8;
  padding: 0 10px;
  max-width: 410px;
  margin: -10px 0 -6px 0;
}


#logo img {
  vertical-align: bottom;
  margin: 0 0 0 -11px;	
}

/*
 * Wrapper for the site name and slogan (hgroup)
 */
#name-and-slogan {}

/*
 * Site name (h1)
 */
#site-name {
  margin: 0;
}

#site-name a {}

#site-name a:link,
#site-name a:visited {
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

/*
 * Site slogan (h2)
 */
#site-slogan {
  margin: 0;
}


/* =============================================================================
 *   Page content header
 * ========================================================================== */

/*
 * Main content header wraps the page title, tabs and actions links
 */
#main-content-header {}

/*
 * The main page title (h1)
 */
#page-title {
  margin: 0;
}


/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */

/*
 * Feed icons
 */
.feed-icon {}

/*
 * Aggregator feed source
 */
#aggregator .feed-source .feed-icon {
  display: inline;
  float: none;
  margin-right: 10px;
}

.feed-details dt,
.feed-details dd {
  display: inline;
  margin: 0;
}

/*
 * Generic styles for the more link
 */
.more-link {
  color: #555555;
  }

.more-link a,
.more-link a:link,
.more-link a:visited,
.more-link a:active,
.more-link a:hover {
    color: #555555;
    font-weight: bold;
}

/*
 * Generic styles for links. See the ul.links declaration in node and comment stylesheets
 */
ul.links {
  margin: 0;
  padding: 0;
}

ul.links.inline {
  display: block;
}

ul.links li {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Search results are an ordered list so reset the margin
 */
.search-results {
  margin: 0;
}


/* =============================================================================
 *   Regions
 * ========================================================================== */

/*
 * Standard region wrapper, don't add width to any regions, you will bork the layout - no margin, padding or borders etc
 */
.region {}

/*
 * Regions have an inner div - perfect for adding margin, padding or borders
 */
.region-inner {}

/*
 * Regions can be nested, such as when using Panels
 */
.region-inner .region-inner {}

/*
 * Header region, embedded in the #header
 */
.region-header {}

/*
 * Generally used to output Drupals help block, if the help module is enabled
 */
.region-help {}

/*
 * Secondary content
 */
.region-secondary-content {}

/*
 * Sits above the main content header, like a content-top region
 */
.region-highlighted {}

/*
 * Sits below the main content, like a content-bottom region
 */
.region-content-aside {}

/*
 * Sidebars - targets both
 */
.sidebar {}

/*
 * First sidebar
 */
.region-sidebar-first {}

/*
 * Second sidebar
 */
.region-sidebar-second {}

/*
 * Tertiary content
 */
.region-tertiary-content {}

/*
 * Footer region
 */
.region-footer {
  background-color: #ffffff;
  }


/* =============================================================================
 *   Links
 * ========================================================================== */

a {
  text-decoration: none;
}

a:link,
a:visited {}

a:active,
a.active {}

a:hover,
a:focus {
  text-decoration: underline;
}


/* =============================================================================
 *   Primary, Secondary and Menu Bar region menus
 * ========================================================================== */

/*
 * Use one of the following id's for granular control:
 *  - #menu-bar (menu bar region)
 *  - #primary-menu (main menu)
 *  - #secondary-menu (secondary/user menu)
 * You can target all of these with .nav or div[id$="menu-bar"]
 */
.nav {
  clear: both;
  margin: 12px 0 3px 0;
}

.nav ul,
.nav ul.menu {
  margin: 0;
  padding: 0;
}

.nav li,
.nav ul.menu li {
  display: inline;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav li a,
.nav ul.menu li a {
  display: block;
  white-space: nowrap;
  padding: 0 10px;
}

.nav li a:visited,
.nav ul.menu li a:visited {}

.nav li a:hover,
.nav li a:focus,
.nav ul.menu li a:hover,
.nav ul.menu li a:focus {}

.nav .block {
  margin-bottom: 0;
}



#menu-bar {
  background-color: #045ba8!important;
  height: 48px!important;
  //margin: 0 0 0 19px!important;
}




#block-superfish-1 .menu:before {   
    content:"";   
    bottom: -.65em;   
    position:absolute;    
    display:block;    
    border-style:solid;   
    border-color: #000 transparent transparent transparent;   
    z-index:-1;   
    right: 0;   
    border-width: .75em .5em 0 0;  
}

#block-superfish-1:before {
    border-left: 9px solid transparent !important;
    border-bottom: 31px solid #b2d235 !important;
    height: 6px;
    position: absolute;
    content: "";
    margin-left: -19px;
    margin-top: -7px;
}

#block-superfish-1  {
    padding: 0px 0 15px 0;
    text-decoration: none;
    //color: white;
    font-weight: bold;
    display: block;
    border-left: 10px solid transparent !important;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
    background-color: #b2d235 !important;
    height: 15px;
    width: 873px;
    //line-height: 50px;
    font-size: 1.6em;
    position: absolute;
    //margin: 8px -10px 20px  57px;
    float: right;
    margin: 8px -20px 0 88px!important;
}

#block-superfish-1 a,
#block-superfish-1 a:link,
#block-superfish-1 a:visited,
#block-superfish-1 a:active,
#block-superfish-1 a:hover {
  color: #045BA8;
  font-style: italic;
  text-decoration: none;
  //border-right: 2px solid #000000;

}

.nolink {
  color: #045BA8;
  font-style: italic;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  padding: 3px 10px;
}

#block-superfish-1 ul ul:before {
    border-left: 10px solid transparent !important;    
    height: 8px;
    position: absolute;
    content: "";
    margin-left: -20px;
    margin-top: -20px;
                                            
}

#block-superfish-1 ul ul .menu:before {   
    content:"";   
    bottom:-.8em;   
    position:absolute;    
    display:block;    
    border-style:solid;   
    border-color: #000 transparent transparent transparent;   
    z-index:-1;   
    right: 0;   
    border-width: .8em .8em 0 0;  
}

#block-superfish-1 ul ul .nav li, .nav ul.menu li {
    display: inline;
    float: left;
    list-style: none outside none;
    margin: 0;
    padding: 3px 0 0;
}

#@-moz-document #block-superfish-1 ul ul  {
    padding: 5px 20px 10px 0;
}

#block-superfish-1 ul ul  {
    padding: 5px 10px 10px 0;
    text-decoration: none;
    //color: white;
    font-weight: bold;
    display: block;
    border-left: 10px solid transparent !important;
    background: #045ba8; /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzA0NWJhOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjYlIiBzdG9wLWNvbG9yPSIjMjA3Y2NhIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMjclIiBzdG9wLWNvbG9yPSIjMjA3Y2NhIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAyMmU2MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
    background: -moz-linear-gradient(top,  #045ba8 0%, #207cca 6%, #207cca 27%, #022e63 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#045ba8), color-stop(6%,#207cca), color-stop(27%,#207cca), color-stop(100%,#022e63)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #045ba8 0%,#207cca 6%,#207cca 27%,#022e63 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #045ba8 0%,#207cca 6%,#207cca 27%,#022e63 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #045ba8 0%,#207cca 6%,#207cca 27%,#022e63 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #045ba8 0%,#207cca 6%,#207cca 27%,#022e63 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#045ba8', endColorstr='#022e63',GradientType=0 ); /* IE6-8 */
    height: 35px;
    max-width: 870px;
    //line-height: 50px;
    font-size: 12px;
    position: absolute;
    margin: 0px 0 0 0px;
    top: 33px;
    left: -25px;
}

#block-superfish-1 ul ul .nav li, .nav ul.menu li {
    display: inline;
    float: left;
    list-style: none outside none;
    margin: 0;
    padding: 0 2px 0 0!important;
}

#block-superfish-1 ul ul a,
#block-superfish-1 ul ul a:link,
#block-superfish-1 ul ul a:visited,
#block-superfish-1 ul ul a:active,
#block-superfish-1 ul ul a:hover {
  color: #b2d235;
  font-style: italic;
  text-decoration: none;
  border-right: 2px solid #0188FF;
  padding: 0 6px;
}

.primary-menu-wrapper {
  margin: -20px 0 0 0;    
  position:relative;    
  text-align: center;   
  font-style: italic;    
  font-weight: bold;    
  height: 41px;
  float: right;
  background-color: #045ba8;
}

.secondary-menu-wrapper {    
  margin: 30px 0 0 0;		
  position:relative;		
  text-align: center;		
  text-shadow: 2px 1px 0px #000 ;	    
  font-style: italic;    
  font-weight: bold;    
  height: 41px;
  background-color: #045ba8;
}

.primary-menu {  	
  padding: 10px;    
  text-decoration: none;    
  color: white;    
  font-weight: bold;    
  display: block;     
  border-left: 10px solid transparent !important;    
  border-bottom: 30px solid #b2d235 !important;    
  height: 11px;    
  line-height: 50px;
  font-size: 1.9em;
}

.secondary-menu {  
  padding: 10px;    
  text-decoration: none;    
  color: white;    
  font-weight: bold;    
  display: block;     
  border-left: 10px solid transparent !important;    
  border-bottom: 30px solid #045ba8 !important;    
  height: 11px;    
  line-height: 50px;
}

.primary-menu:before,.secondary-menu:before {		
  content:"";		
  bottom:-.5em;		
  position:absolute;		
  display:block;		
  border-style:solid;		
  border-color: #000 transparent transparent transparent;		
  z-index:-1;	  
  right: 0;	  
  border-width: .5em .5em 0 0;	
}

.primary-menu a,
.primary-menu a:link,
.primary-menu a:visited {
  color: #005baa;
  border-right: 2px solid;
  height: 20px;
  margin-top: 15px;
  line-height: 20px;
}
#block-superfish-1 ul ul li.last a,
#block-superfish-1 li.last a{
  border: none;
}

.secondary-menu a,
.secondary-menu a:link,
.secondary-menu a:visited {  
  color: #b2d235;
  border-right: 2px solid;
  height: 20px;
  margin-top: 15px;
  line-height: 20px;
}


/* =============================================================================
 *   Superfish
 * ========================================================================== */

ul.sf-menu {
  margin-bottom: 0;
}

ul.sf-menu a {
  border-left: 0;
  border-top: 0;
  padding: 0 10px;
  text-decoration: none;
  height: 2.5em;
  line-height: 2.5em;
}

ul.sf-menu a:link,
ul.sf-menu a:visited {}

ul.sf-menu li {}

ul.sf-menu li:hover,
ul.sf-menu li.sfHover {
  outline: 0;
}

ul.sf-menu a {}

ul.sf-menu a:focus,
ul.sf-menu a:hover,
ul.sf-menu a:active {
  outline: 0;
}

/*
 * Superfish blocks
 */
.block-superfish {}

.block-superfish .block-inner .content {}

.block-superfish ul {
  margin: 0 !important;
  padding: 0 !important;
}

.block-superfish ul ul {}

.block-superfish ul ul ul {}

.block-superfish ul ul ul ul {}

.block-superfish li {
  margin: 0 !important;
  padding: 0 !important;
}

/*
 * Vertical style
 */
.sf-vertical {
  width: 100%;
}

.sf-vertical li {
  width: 100%;
}

.sf-vertical li.last {}

.sf-vertical li:hover ul,
.sf-vertical li.sfHover ul {
  left: 100%;
  top: 0;
  margin: 0;
  padding: 0;
}

.sf-vertical li a {
  padding: 0 10px;
}

/*
 * Navbar style
 */
.sf-navbar {
  padding-bottom: 0 !important;
}

/*
 * Sensible padding for the default style
 */
.sf-menu.sf-style-default a {
  padding: 0 10px;
}


/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */

ul.menu {
  padding-left: 15px;
}

ul.menu ul {
  padding-left: 15px;
}

ul.menu ul ul {}

ul.menu ul ul ul {}

ul.menu li {
  margin: 0;
}

ul.menu li.collapsed,
ul.menu li.expanded,
ul.menu li.leaf {}

ul.menu li a {}

ul.menu li a:link,
ul.menu li a:visited {}

ul.menu li a:active,
ul.menu li a.active {}

ul.menu li a:hover,
ul.menu li a:focus {}

ul.menu li.active a,
ul.menu li.active-trail a {}

ul.menu li.first,
ul.menu li.last {}

/* If li.content exists it's a problem, so reset the padding */
.block .menu li.content {
  padding: 0;
}


/* =============================================================================
 *   Book navigation menu
 * ========================================================================== */

.book-navigation {}

.book-navigation .page-links {}

.book-navigation .page-previous {}

.book-navigation .page-next {}

.book-navigation .page-up {
  /* Prevent text wrapping to a new line, assumes English "up" is used (two characters) */
  min-width: 2em;
  white-space: nowrap;
}

.book-navigation .menu {
  margin-left: 0;
}


/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */

#breadcrumb {
  margin: 10px 0;
}

/* If the label is set to show in theme settings the label class is added */
#breadcrumb .breadcrumb-label {
  font-size: 1em;
  display: inline;
  padding-right: 10px;
}

#breadcrumb .breadcrumb-label:after {
  content: ":";
}

#breadcrumb ol {
  margin: 0;
  padding: 0;
}

#breadcrumb .with-breadcrumb-label ol {
  display: inline;
}

#breadcrumb li {
  list-style: none;
  display: inline;
}

#breadcrumb li.crumb-first {}

#breadcrumb li.crumb-last {}

#breadcrumb a {}

#breadcrumb a:link,
#breadcrumb a:visited {}

#breadcrumb a:active,
#breadcrumb a.active {}

#breadcrumb a:hover,
#breadcrumb a:focus {}


/* =============================================================================
 *   Pagers
 * ========================================================================== */

ul.pager {
  clear: both;
  margin: 0;
  text-align: center;
}

.item-list ul.pager li {
  margin: 0;
}

ul.pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: .5em;
}

ul.pager li.pager-current {
  font-weight: 700;
}

.block ul.pager li {
  margin: 0;
}

/*
 * Theme the various states of pager links
 */
ul.pager li {}

ul.pager li a {}

ul.pager li a:link,
ul.pager li a:visited {}

ul.pager li a:active,
ul.pager li a.active {}

ul.pager li a:hover,
ul.pager li a:focus {}

ul.pager li.pager-item {}
ul.pager li.first {}
ul.pager li.last {}
ul.pager li.pager-current {}
ul.pager li.pager-first {}
ul.pager li.pager-previous {}
ul.pager li.pager-next {}
ul.pager li.pager-last {}


/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */

#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50;
}

#skip-link a {
  background: #444;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#skip-link a:link,
#skip-link a:visited {
  background: #444;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#skip-link a:hover,
#skip-link a:focus,
#skip-link a:active {
  outline: 0;
}


/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */

#tasks {
  margin-bottom: 15px;
}

ul.primary {
  border-bottom-color: #ccc;
  margin: 20px 0;
  padding: 0 0 0 5px;
}

ul.primary li {
  display: block;
  float: left;
  margin: 0 1px -1px;
}

ul.primary li a {
  background-color: #f5f5f5;
  border-color: #ccc;
  margin-right: 1px;
  padding: 0 10px;
  display: block;
  float: left;
  height: 1.5em;
  line-height: 1.5em;
}

ul.primary li a:hover,
ul.primary li a:focus {
  background-color: #eee;
  border-color: #ccc;
}

ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  background-color: #fff;
  border-bottom-color: #fff;
}

ul.secondary {
  border-bottom: 1px solid #ccc;
  margin: 1em 0 0;
  padding: 0 .3em 1em;
}

ul.secondary li {
  border-right: 0;
  list-style: none;
  padding: 0 10px 0 0;
}

ul.secondary li a {}

ul.secondary li a:hover,
ul.secondary li a.active {
  border-bottom: none;
  text-decoration: underline;
}


/* =============================================================================
 *   Action links
 * ========================================================================== */

ul.action-links {
  margin: 20px 0 0;
  list-style: none;
}

ul.action-links li {}


/* =============================================================================
 *  Field Styling
 * ========================================================================== */

/*
 * Wrapper for any field
 */
.field {}

/*
 * Above and inline classes are on the field wrapper
 */
.field-label-above {}

/*
 * When labels are set to inline in field display settings the clearfix class is automatically added
 */
.field-label-inline {}

/*
 * Labels are h2 in Adaptivetheme. Use a strong selector to mitigate unwanted ineritance issues
 */
.field-label {
  font-size: 1em;
  font-weight: 700;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 0;
}


/*
 * Field types (Core)
 */

/*
 * Image fields use the <figure> and <figcaption> elements from HTML5
 */
.field-type-image {}

.field-type-image .caption {}

.field-type-image .full-caption {}

.field-type-image .teaser-caption {}

/*
 * Taxonomy
 */
.field-type-taxonomy-term-reference {
  /* The same bottom margin as p, blockquote, ul, ol and dl */
  margin-bottom: 1.5em;
}

.field-type-taxonomy-term-reference.field-label-inline .field-items {
  margin: 0;
  padding: 0;
}

.field-type-taxonomy-term-reference.field-label-inline .field-item {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Text
 */
.field-type-text {}

/*
 * Long text
 */
.field-type-text-long {}

/*
 * Text with summary
 */
.field-type-text-with-summary {}

.view-taxonomy-term .field-type-text-with-summary {
  margin: -10px 0 0 10px;
  padding: 3px 0px;
}

.view-taxonomy-term .views-field-title h3{
  margin: 17px 0 -26px 10px;
}

/*
 * File
 */
.field-type-file {}

/*
 * Number/Integer
 */
.field-type-number-integer {}

/*
 * Decimal
 */
.field-type-number-decimal {}

/*
 * Number float
 */
.field-type-number-float {}

/*
 * List
 */
.field-type-list-text {}

/*
 * List boolean
 */
.field-type-list-boolean {}

/*
 * List integer
 */
.field-type-list-integer {}

/*
 * List float
 */
.field-type-list-float {}

/*
 * Field types (Contrib)
 */
.field-type-datetime {}

.field-type-node-reference {}

.field-type-user-reference {}

/*
 * Named fields
 */
.field-name-body {}

.field-name-field-image {}

.field-name-field-tags {}

/*
 * Underscores in field name are replaced with dashes
 */
.field-name-field-FIELDNAME {}

/*
 * Image Alignment Theme Settings - included here so you can easily override
 */
/*
 * Float none setting
 */
.ia-n .field-type-image,
.iat-n .field-type-image {}

/*
 * Float left setting
 */
.ia-l .field-type-image figure,
.iat-l .field-type-image figure {
  margin: 5px 20px 15px 0;
}

/*
 * Centered setting
 */
.ia-c .field-type-image figure,
.iat-c .field-type-image figure {
  margin: 5px auto 15px;
}

/*
 * Float right setting
 */
.ia-r .field-type-image figure,
.iat-r .field-type-image figure {
  margin: 5px 0 15px 20px;
}


/* =============================================================================
 *   Block Styling
 * ========================================================================== */

/*
 * Main wrapper for most blocks, block_system_main does not have it
 */
.block {
  margin-bottom: 20px;
}

/*
 * Inner wrapper for most blocks, good for margin, padding and borders, block_system_main does not have it
 */
.block-inner {}

/*
 * The first block in the region
 */
.block.first {}

/*
 * The last block in the region
 */
.block.last {}

/*
 * Zebra striping for each block in the region
 */
.block.odd {}

/*
 * Zebra striping for each block in the region
 */
.block.even {}

/*
 * Block title
 */
.block-title {
  margin: 0;
}

/*
 * Block content wrapper
 */
.block-content {}

/*
 * Match item list and block menu margin and padding
 */
.block-content {}

.block-content ul,
.block-content ol {
  padding: 0 0 0 15px;
}

.block-content li {
  margin: 0;
  padding: 0;
}

/*
 * Block for the latest news items in the first category
 */
#block-aggregator-category-1 {}

/*
 * Block for the latest news items in the first feed
 */
#block-aggregator-feed-1 {}

/*
 * First block created with "Add block" link
 */
#block-block-1 {}

/*
 * "Recent BLOG POSTS" block
 */
#block-blog-recent {}

/*
 * "Book navigation" block for the current book's table of contents
 */
#block-book-navigation {}

/*
 * "Recent comments" block
 */
#block-comment-recent {}

/*
 * "Active forum topics" block
 */
#block-forum-active {}

/*
 * "New forum topics" block
 */
#block-forum-new {}

/*
 * Language switcher block
 */
#block-locale-language {}

/*
 * Custom menu block
 */
#block-menu-menu-NAME {}

/*
 * "Recent content" block
 */
#block-node-recent {}

/*
 * "Syndicate" block for primary RSS feed; see also page.css's .feed-icon
 */
#block-node-syndicate {}

/*
 * "Most recent poll" block
 */
#block-poll-recent {}

/*
 * "Author information" block for the profile of the page's author
 */
#block-profile-author-information {}

/*
 * "Search form" block
 */
#block-search-form {}

#search-api-page-search-form-node-search {
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}

/*
 * "Shortcuts" block
 */
#block-shortcut-shortcuts {}

/*
 * "Popular content" block
 */
#block-statistics-popular {}

/*
 * "Main menu" block
 */
#block-superfish-1 {}

/*
 * "Management" block for Drupal management menu
 */
#block-system-management {}

/*
 * "Navigation" block for Drupal navigation menu
 */
#block-system-navigation {}

/*
 * "User menu" block for Drupal user menu
 */
#block-system-user-menu {}

/*
 * "System help" block
 */
#block-system-help {}

/*
 * "Main page content" block
 */
#block-system-main {}

/*
 * "Powered by Drupal" block
 */
#block-system-powered-by {}

/*
 * "User login form" block
 */
#block-user-login  .lb-h input.form-text {
    margin-left: -65px;
    margin-top: 25px;
    max-width: none;
}


#block-user-login {
max-width: 270px;
float: right;
margin: -120px -50px 0 0px;
}

.form-item input {
    width: 128px;
}

/*
 * "Who's new" block for a list of the newest users
 */
#block-user-new {}

/*
 * "Who's online" block for a list of the online users
 */
#block-user-online {}


/* =============================================================================
 *   Node Styling
 * ========================================================================== */

.node {
  margin-bottom: 20px;
}

.node.node-promoted {}

.node.node-sticky {}

.node.node-by-viewer {}

.node.node-teaser {}

.node.node-full {}

.node.odd {}

.node.even {}

.node .node-title {
  margin: 0;
}

.node .user-picture {}

.node .submitted {}

.node .submitted .username {}

.node .submitted time {}

.node .node-content {}

.node ul.links {}

.node ul.links li {}

.node ul.links li a {}

.node ul.links li.node-read-more a {}

.node ul.links li.comment-add a {}

.node ul.links li.comment-comments a {}

.node ul.links li.comment-new-comments a {}

.node ul.links li.blog-sernames-blog a {}

.node ul.links li.print-html a {}

.node ul.links li.print-email a {}

.node ul.links li.print-pdf a {}

.preview .node {}

/*
 * All nodes are given a node-FOO class that describes the type of content that
 * it is. If you create a new content type called "my-custom-type", it will
 * receive a "node-my-custom-type" class.
 */
.node-page {}

.node-article {}

.node-book {}

.node-forum {}

.node-poll {}


/* =============================================================================
 *   Comment Styling - Comments, comment wrapper, comment form
 * ========================================================================== */

/*
 * Wrapper for the list of comments and its titles
 */
#comments {
  margin: 1.5em 0;
}

#comments h2 {}

#comments h2.comment-title {
  margin: 0;
}

#comments h2.comment-form {
  margin: 0;
}

/*
 * Wrapper for a single comment
 */
.comment {
  margin-bottom: 20px;
}

.comment.first {}

.comment.last {}

.comment.odd {}

.comment.even {}

.comment .user-picture {}

.comment .submitted {}

.comment .submitted p {}

.comment .submitted .username {}

.comment .submitted time {}

.comment .user-signature {}

.comment ul.links {}

/*
 * Comment title
 */
.comment-title {
  margin: 0;
}

/*
 * Comment states
 */
.comment-new {}

.comment-by-anonymous {}

.comment-by-node-author {}

.comment-by-viewer {}

.comment-title-hidden {}

.comment-with-picture {}

.comment-with-signature {}

/*
 * Preview of the comment before submitting new or updated comment
 */
.comment-preview {}

/*
 * "New" marker for comments that are new for the current user
 */
.new {
  color: #c00;
}

/*
 * Nested comments are indented
 */
.indented {
  margin-left: 40px;
}


/* =============================================================================
 *   Forms
 * ========================================================================== */

/*
 * Wrapper for a form element (or group of form elements) and its label
 */
.form-item {}

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}

.form-item label {
  font-weight: 700;
}

.form-item label.option {}

/*
 * Highlight marks and form required mark
 */
.marker,
.form-required {
  color: #c00;
}

.form-item .description {
  font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item {}

/*
 * The submit button
 */
.form-submit { 
background-color: #045ba8;
    color: #ffffff;
    float: right;
    height: 50px;
    margin-left: 300px;
    margin-top: 30px;
}

.commerce-order-handler-area-order-total{
		margin: 10px -50px 0 667px;
}


#edit-checkout {
  margin: 84px -390px 50px 250px !important;
  padding: 14px;
}

.component-title {
  max-width: 40px;
}

.commerce-price-formatted-components .component-total {
  text-align: left;
  margin: 0 20px 0 0;	
}

.commerce-order-handler-area-order-total .commerce-price-formatted-components {
  margin-left: auto;
  width: 75%;
}

.views-field-edit-quantity .form-item input{
	width: 20px;
}

.views-field-edit-delete{
	max-width: 30px;
	
}

.commerce-line-item-views-form input.delete-line-item {
    font-size: 0.8em;
    padding: 1px 6px;
    margin: -6px 44px 0 -58px;
}

.container-inline div,
.container-inline label {
  display: inline;
}

/*
 * Define consistent borders
 */
fieldset {
  border: 1px solid #ccc;
}

/*
 * Tips for Drupal's input formats
 */
.tips {}

/*
 * Buttons used by contrib modules like Media
 */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/*
 * Password confirmation
 */
.password-parent,
.confirm-parent {
  margin: 0;
}


/* =============================================================================
 *   Tables
 * ========================================================================== */

table {
  margin: 10px 0;
  padding: 0;
  width: 100%;
}

table.sticky-header {
  z-index: 10;
}

table,
thead,
tbody,
tr,
th,
td {
  border-color: #ccc;
}

table,
td,
th {
  vertical-align: middle;
}

caption,
th,
td {
  text-align: left;
}

thead tr {
  font-weight: 700;
  background-color: #e5e5e5;

}

td,
th {
  border-bottom: 0;
  margin: 0;
  padding: 5px 7px;
}

tbody {}

tbody tr {
  border-top: 1px solid #ccc;
}

tr.info,
.view-bottom-content-grid tr:nth-child(2n+1),
tr.odd {
  background: #e5e5e5;
  border-bottom: 0;
  padding: 5px 0 !important;
}
.view-bottom-content-grid.view-display-id-block .cols-1 tr.row-first {
  background: #fff;
}
.view-bottom-content-grid.view-display-id-block .attachment .cols-1 tr.row-first {
  background: #e5e5e5;
}

tr.even {
  background-color: #fff;
}

tr.drag {}

tr.drag-previous {}

tr.odd td.active {
  background-color: #eee;
}

tr.even td.active {
  background-color: #ebebeb;
}

.lt-ie8 tr {}

.lt-ie8 tr.even,
.lt-ie8 tr.odd {}

.lt-ie8 tr.even th,
.lt-ie8 tr.even td,
.lt-ie8 tr.odd th,
.lt-ie8 tr.odd td {
}

/*
 * Forum tables
 * Core sets white-space to nowrap, which makes no sense
 */
#forum td {}

#forum td .created,
#forum td .posts,
#forum td .topics,
#forum td .last-reply,
#forum td .replies,
#forum td .pager {
  white-space: normal;
}


/* =============================================================================
 *   Messages
 * ========================================================================== */

/* Left and right margin are set by the global gutter width */
div.messages {
  margin-bottom: 10px;
  margin-top: 10px;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

div.status {}

div.warning {}

tr.warning {}

div.error,
tr.error {}

.error {}

.warning {}

/*
 * Unpublished nodes
 */
.node-unpublished,
.comment-unpublished {}

.node-unpublished,
.comment-unpublished {}

.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
  color: pink;
  color: rgba(239, 170, 170, 0.4);
  font-family: Impact,"Arial Narrow",Helvetica,sans-serif;
  font-size: 75px;
  font-weight: bold;
  height: 0;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
}

/*
 * Otherwise these elements will appear below the "Unpublished" text
 */
.lt-ie8 {}

.lt-ie8 .node-unpublished > *,
.lt-ie8 .comment-unpublished > * {
  position: relative;
}


/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */

.maintenance-page {}
.maintenance-page .container {
  padding: 40px 0;
}

.maintenance-page #site-name,
.maintenance-page #page-title {
  margin: 0;
}

.db-offline {}

.db-offline .container {
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  max-width: 960px;
}

.db-offline div.messages {
  margin: 20px 0 0;
}

.db-offline #content {
  padding: 20px 0;
}


/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */

/*
 * Admin menu overrides
 */
#admin-menu {
  margin: 0;
  padding: 0;
}

/*
 * Devel Module
 */
.dev-query {
  background: #eee;
  padding: 30px;
}

/*
 * Styleguide module tweaks
 */
#styleguide-header {
  padding: 0 10px;
}

#styleguide-header .item-list {
  font-family: inherit;
  margin: 0 20px 20px 0;
  min-height: 260px;
  width: auto;
}

.block-title {
  margin-bottom: -10px!important;
}

.block-title a,
.block-title a:link,
.block-title a:visited,
.block-title a:active,
.block-title a:hover {
  font-size: .7em;
  margin-bottom: -10px!important;
}

#nmp-front-panel  {
  background-color: #ffffff;
  margin: -8px 0 0 0;
}

#nmp-front-panel.two-33-66 > .region-two-33-66-second {
        //width: 68.6%!important;
}

#nmp-front-panel.two-33-66 > .region-two-33-66-first {
        //width: 300px!important;
        //border-right: 3px solid #b2d235;
}


#nmp-front-panel .region-two-33-66-first {
  margin: -44px 0 0px;
  background-color: #045BA8 !important;
}

#nmp-front-panel .region-two-33-66-second {
  margin: -44px 0 0 -5px;
}

.fp-panel-top-article  {
    margin: 12px 0 0 0;
}

.fp-panel-top-article .more-link {
  margin: 0px 0 0 0!important;
}

.fp-panel-top-article .views-field-title:before {
      //border-bottom: 90px solid #B2D235 !important;
      border-left: 15px solid rgba(0, 0, 0, 0) !important;
      content: "";
      height: 12px;
      margin-left: -25px;
      margin-top: -12px;                                                              position: absolute;
}


.fp-panel-top-article .views-field-title{
      border-bottom: 90px solid #B2D235!important;
      border-left: 15px solid rgba(0, 0, 0, 0);
      content: "";
      height: 1px;
      margin: -6px -34px 0 0!important;
      position: absolute;
      max-width: 680px;
      color: #ffffff;
      font-size: 2em;
      font-weight: bold;
      font-style: italic;
      padding: 2px  0 0px 0;
      text-align: center;
      text-shadow: 1px 1px 1px #000000;

}

.fp-panel-top-article .views-field-title:after {
      content: "";
      top: 93px;
      position: absolute;
      display: block;
      border-style: solid;
      border-color: #000 transparent transparent transparent;
      right: 0;
      border-width: 1.3em .6em 0 0;
}

.fp-panel-top-article .views-field-title a,
.fp-panel-top-article .views-field-title a:link,
.fp-panel-top-article .views-field-title a:visited,
.fp-panel-top-article .views-field-title a:hover,
.fp-panel-top-article .views-field-title a:active {
      color: #ffffff;
      text-decoration: none;
}

.image-style-top-news-article-image {
    margin: 5px auto 10px;
}

.top-article .field-type-text-with-summary {
    max-width: 620px;
    margin: 10px auto!important;
    padding: 0 0 20px 0;
    text-align: justify;
    font-weight: bold;
}

.top-news-article-fp .block-inner {
    border-bottom: 3px solid #B2D235 !important;
    padding-bottom: 10px;
}

.pane-events  {
    background-color: #ffffff;
    //border: 2px solid #045ba8;
}

.pane-events .block-content {
    margin: 10px 0 0 0;
}

.pane-events .more-link {
    margin: 18px 0 0 0!important;
}
.view-events .views-field-title {
    margin: 5px 0 0 0;  
}

/*** added by chan ***/

#mini-panel-bottom_subject_area .pane-title a {
  color: #f41a09;
  margin: 15px 0;
  font-size: 1em;
}

.fp-top-block-categories .field-name-field-image {
    margin: 0 0 0 0;
    height: 120px;
}

#mini-panel-bottom_subject_area .views-field-title {
    min-height: 30px;
    padding: 0px 2px;
}


#mini-panel-bottom_subject_area .views-field-title a {
  color: #000;
  font-weight: bold;
}

#mini-panel-bottom_subject_area .row-first a {
  font-weight: bold;
  min-height: 30px;
}

.fp-top-block-categories-attach {
    width: 225px;
    height: 120px;
}

.fp-secondary-block-categories {
        width: 235px;
}


.fp-secondary-block-categories-attach {
      width: 235px;
}


.pane-block-5 {
    float: left;
    //margin: 0px 0 0 -10px;
}

.pane-block-5 .block-inner {
    margin: 0 0 0 0!important;
}


/****** Top 2 Sub Artcles  *******/

.top-two-block-fp  {
    margin: 0 0 -20px 0!important;    
}

.top-two-block-fp .more-link {
    margin: -5px 0 0 0!important;
}

.view-display-id-block_3 .more-link{
    margin: -20px 20px 10px 0;
}


.view-display-id-block_5 .more-link{
  margin: -50px 20px 10px 0;
}

.view-id-bottom_content_grid .more-link,
.view-display-id-block_2 .more-link{
    margin: 5px 10px; 0 0;
}


.view-display-id-block_2 .row-1 .col-1{
    //height: 200px;
    margin: -30px 0 0 0;
    //vertical-align: top;
    max-width: 280px;
}

.view-display-id-block_2 .views-field-title {
    background-color: #ecffd4!important;
    color: #ffffff!important;
    border-radius: 5px;
    text-align: left;
    padding: 2px 5px;
    margin: 0 0 0px 0;
}

.view-display-id-block_2 .views-field-title a,
.view-display-id-block_2 .views-field-title a:link,
.view-display-id-block_2 .views-field-title a:visited,
.view-display-id-block_2 .views-field-title a:active,
.view-display-id-block_2 .views-field-title a:hover  {
    color: #000000;
    font-size: 1.3em;
    text-decoration: none;
    font-style: italic;
    font-weight: bold;
}

.view-display-id-block_2 .field-type-image {
    max-width: 100px;
    float:left;
    padding: 0px 5px 16px 5px;
}

.view-display-id-block_2 .field-type-text-with-summary {
    font-size: 1em;
    //font-weight: bold;
    padding: 0 5px;
    //text-align: justify;
}



/****** middle right minipanel *****/

.view-display-id-block_3  {
      margin: 0px 0px 30px 0;
}


.view-display-id-block_3 .views-field-title a,
.view-display-id-block_3 .views-field-title a:link,
.view-display-id-block_3 .views-field-title a:visited,
.view-display-id-block_3 .views-field-title a:active,
.view-display-id-block_3 .views-field-title a:hover {
      color: #000000;
      font-size: 1.2em;
      line-height: 1.1em;
      font-style: italic;
}

.view-display-id-block_3 .views-field-title {
      font-weight: bold;
      //background-color: #e7e7e7;
      padding: 5px 15px 15px 0;
      margin: 10px 10px 10px 10px;
      height: 30px;
}


.view-display-id-block_3 .field-name-field-image {
      float: left;
      max-width: 100px;
      padding: 0px 10px 8px 10px;
      margin: -10px 5 px;
}

.view-display-id-block_3 .field-type-text-with-summary {
    font-size: 1.01em;
    line-height: 1.3em;
    margin: 0 0 0 40px!important;
    max-width: 250px;
    padding: 0 0 0 10px;
    //text-align: justify;
    //font-weight: bold;
    //color: #666666;
}

.middle-four-block-fp {
  height: 170px;
  //margin: 0 0 20px 0;
}

.middle-four-block-fp h2.pane-title {
  background-color: #045BA8!important;
  color: #ffffff!important;
  border-radius: 5px;
  text-align: center;
}

.middle-four-block-fp .block-title a,
.middle-four-block-fp .block-title a:link,
.middle-four-block-fp .block-title a:visited,
.middle-four-block-fp .block-title a:active,
.middle-four-block-fp .block-title a:hover  {
  color: #ffffff;
  font-size: 1em;
  text-decoration: none;
  font-style: italic;
}

.middle-four-block-fp .more-link {
    margin: -5px 0 10px 0px!important;
}

.articles-banner:before {
border-bottom: 45px solid #B2D235 !important;
    border-left: 15px solid rgba(0, 0, 0, 0) !important;
        content: "";
            height: 12px;
                margin-left: -25px;
                    margin-top: -12px;
                        position: absolute;
}

.top-article .views-field-title,
.article-banner {
  border-bottom: 45px solid #B2D235;
  border-left: 15px solid rgba(0, 0, 0, 0) !important;
  content: "";
  height: 1px;
  margin: 10px -31px 0 0;
  margin-top: -12px;
  position: relative;
  max-width: 680px;
  color: #ffffff;
  font-size: 2em;
  font-weight: bold;
  font-style: italic;
  padding: 2px  0 0px 0;
  text-align: center;
  text-shadow: 1px 1px 1px #444444;;
}
top-article .views-field-title {
    margin-top: 10px;
    font-size: 1.6em;
}
top-news-article-fp .views-field-title{
    border-bottom: 90px solid #B2D235 !important;
    border-left: 15px solid rgba(0, 0, 0, 0) !important;
    color: #FFFFFF;
    content: "";
    font-size: 1.9em;
    font-style: italic;
    font-weight: bold;
    height: 1px;
    margin: -4px -20px -18px 0;
    max-width: 680px;
    padding: 2px 0 0;
    position: relative;
    text-align: center;
    text-shadow: 1px 1px 1px #000000;
    background-color: transparent !important;
    border-radius: 0;
}

.top-article .views-field-title:after,
.article-banner:after,
.top-news-article-fp .views-field-title:after {
  content: "";
  top: 93px;
  position: absolute;
  display: block;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
  right: 0;
  border-width: 1em .5em 1em 0;
}
.top-article .views-field-title:after {
  //top: 47px;
  font-size: 1.3em;
}

.top-article .views-field-title after,
.article-banner:after,
.mini-panel-top_right_articles .views-field-title:after {
    content: "";
    top: 48px;
    position: absolute;
    display: block;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    right: 0;
    border-width: 1em .5em 1em 0;
}

.pane-news-ticker {
    margin: 0 0 2px 0!important;
}

/**** Views-News-Ticker FP ****/

#views-ticker-liScroll-news_ticker {
    width: 2516px!important;
}

/* liScroll styles */

.liScroll-container { /* the outer div with the black border */
  border: 1px solid #000;
  background: #000000;
  width: 640px!important;
  height: 40px;
  margin: 0;
  padding: 0px 0 0 0;
  overflow: hidden;
}

.liScroll-container .mask { /* that serves as a mask. so you get a sort of padding both left and right */
  position: ;
    left: 10px;
    top: -5px;
    width: 720px;
    overflow: hidden;
}

ul.liScroll { /* that's your list */
  position: relative;
    left: 720px;
      font: bold 1.1em Verdana;
        list-style-type: none;
          margin: 0;
            padding: 0;
            vertical-align: middle;
}

ul.liScroll li {
    float: left; /* important: display inline gives incorrect results when you check for elem's width */
      margin: 0;
        padding: 0;
        //line-height: .7em;
}

ul.liScroll a,
ul.liScroll a:link,
ul.liScroll a:visited,
ul.liScroll a:active,
ul.liScroll a:hover
{
    color: #B2D235;
    white-space: nowrap;
    padding: 0;
    margin: 0 30px 0 0;
    vertical-align: middle;
}

ul.liScroll span {
    margin: 0 10px 0 0;
}

/*******  Story Panelizer *******/

.story-panelizer .panel-2col-stacked .panel-col-first {
      float: left;
      width: 66.9%;
      margin: 0px 0 0 0;
}

.story-panelizer .panel-2col-stacked .panel-col-last {
    float: right;
    width: 30.9%;
    margin: 0px 0 0;
}

#block-block-8  {
    max-width: 300px;
    float: right;
    margin: -80px 76px 0 0 !important;
}

.socicon {
    float: left;
}

.socrow1  {
}

#block-block-14  {
    background-image: url('/sites/default/files/MNMP_MAY14-1.png') ;
    background-repeat: no-repeat;
    background-position: left;
    max-width: 270px;
    margin: -120px 0 -26px 455px;
    text-align: center;
    color: #045ba8;
    height: 130px;
}

.dig-sub-fp  {
    margin: 20px 0px 0 0;
    max-width: 160px;
    line-height: 1.1em;
    font-size: 1.1em;
    font-weight: bold;
    padding: 15px 0 4px 0;
    float: right;
}

.dig-sub-fp-link a,
.dig-sub-fp-link a:link,
.dig-sub-fp-link a:visited,
.dig-sub-fp-link a:active,
.dig-sub-fp-link a:hover {

    background: #045ba8;
    color: #ffffff;
    text-decoration: none;
    float: right;
    margin: 0px 20px 0px 0;
    padding: 0px 3px;
}

/****  FOOTER MINI PANEL ****/
#block-panels-mini-footer-menu-panel {
    background-color: #ffffff;
    border-top: 2px solid #B2D235;
}

#block-panels-mini-footer-menu-panel a,
#block-panels-mini-footer-menu-panel a:link,
#block-panels-mini-footer-menu-panel a:visited,
#block-panels-mini-footer-menu-panel a:active,
#block-panels-mini-footer-menu-panel a:hover {
    color: #000000;
    text-decoration: none;
}

#block-panels-mini-footer-menu-panel ul li.leaf {
        list-style-image: none!important;
        list-style-type: none!important;
}

.pane-block-6 {
    margin: -1px 0 0 -10px!important;
    float: left;
    max-width: 242px;

}

/****  HEADER MENU  *****/
#block-menu-menu-header-menu {
    max-width: 150px;
    margin: -100px 0 -20px 0!important;
    float: right;
}

#block-menu-menu-header-menu a,
#block-menu-menu-header-menu a:link,
#block-menu-menu-header-menu a:visited,
#block-menu-menu-header-menu a:active,
#block-menu-menu-header-menu a:hover {
    color: #000000;
    text-decoration: none;
}

#block-menu-menu-header-menu ul li.leaf {
        list-style-image: none!important;
        list-style-type: none!important;
}

.view-mortgage-association-listings,
.view-mortgage-association-listings table, 
.view-mortgage-association-listings tbody tr {
    border: solid 1px #ffffff!important
}

#block-block-9 {
  max-width: 300px;
  margin: -150px 0 0 450px;
}

.pane-block-3 {
  //margin: 0px 0 0 -10px;
}

.fp-top-banner-ad {
    float: left;
}

.fp-top-member-ad {
    float: left;

}
/******  REGISTRATION PAGE  *****/


#user-register-form .form-submit {
      float: right!important;
      margin: -0px 345px 0 0;
}


#edit-nmp-registration-emails {
    margin: 0px 10px 0 0!important;
    border: none!important;
}

#edit-profile-digital-subscriber {
    border: none;
}

.daily-email-img {
  float: left;
  clear: left;
  margin: 0 15px 15px 0;
}

.daily-email-text {
}

.form-item-mnn-checkbox {

}

@media only screen and (min-width : 928px) {

#user-register-form   {
      max-width: 470px;
      margin: 0 20px 0 400px;
}

body.not-logged-in.page-user .region-content-aside {
  max-width: 370px;
  float: left;
  margin-top: -1128px;
}
}

@media only screen and (max-width : 928px) {
.state-specific-img img {
  max-width: 75%;
}
}

/*
#block-block-10 {
  max-width: 370px;
  float: left;
  margin-top: -1128px;
}

#block-block-21 {
	max-width: 370px;
	margin: -420px 0 0 0;
	float: left;
}

#block-block-11 {
  max-width: 370px;
  margin-top: -900px;
  float: left;
}

#block-block-12 {
  max-width: 370px;
  margin-top: -710px;
  float: left;
}
*/


.nmp-ticker-img {
  float: left;
  clear: left;
  margin: 0 15px 15px 0;
}

.nmp-ticker-text {
}

#block-block-12 .block-title{
  padding-bottom: 10px;
}


.state-specific-img {
    float: left;
    clear: left;
    max-width: 200px;
    margin: 0 15px 15px 0 ;
}

.state-specific-text {
  }

.fp-top-block-categories .row-first {
  height: 180px;
   margin: 0 0!important;
}

.fp-top-block-categories td {
    vertical-align: middle;
    height: 40px;
    float: left;
}

.fp-secondary-block-categories-attach td {
      vertical-align: top;
      min-height: 50px;
      float: left;
}

.fp-top-block-categories a,
.fp-top-block-categories a:link, 
.fp-top-block-categories a:visited, 
.fp-top-block-categories a:hover, 
.fp-top-block-categories a:active {
    color: #555;
    font-size: 1em;
    font-weight: bold;
}

.fp-top-block-categories-attach a,
.fp-top-block-categories-attach a:link, 
.fp-top-block-categories-attach a:visited, 
.fp-top-block-categories-attach a:hover, 
.fp-top-block-categories-attach a:active {
    color: #000;
    font-size: .85em;
    font-weight: bold;
}

.fp-top-block-categories-attach .row-first {
    height: 40px;
    max-width: 210px;
     margin: 0 0!important;
     padding: 0 4px 10px 4px;
}    

.fp-top-block-categories {
      max-width: 210px;
      margin: 0 0!important;
      padding: 0 4px 15px 4px;
}    

.fp-top-block-categories .block-title{
      max-width: 210px;
      margin: 30px 0 0 0!important;
}    
.view-taxonomy-name h2,
.pane-bottom-content-grid .pane-title{
      margin: 0 0 0px 0 !important;
}


.fp-secondary-block-categories {
        max-width: 240px;
        margin: 0 0 0 0!important;
        float: left;
}    

.fp-secondary-block-categories .pane-title {
        max-width: 210px;
        margin: 0 0 20px 0!important;
}  


.fp-secondary-block-categories .views-field-title {
    float: left;
    max-width: 130px;
}
.fp-secondary-block-categories .attachment .views-field-title {
    max-width: 100%;
}

.fp-secondary-block-categories .image-style-thumbnail{
      float: left;
      max-width: 100px;
}

.fp-secondary-block-categories a,
.fp-secondary-block-categories a:link, 
.fp-secondary-block-categories a:visited, 
.fp-secondary-block-categories a:hover, 
.fp-secondary-block-categories a:active {
      color: #000!important;
      font-size: 1em!important;
      font-weight: bold!important;
}

.fp-secondary-block-categories-attach a,
.fp-secondary-block-categories-attach a:link, 
.fp-secondary-block-categories-attach a:visited, 
.fp-secondary-block-categories-attach a:hover, 
.fp-secondary-block-categories-attach a:active {
      color: #555555!important;
      font-size: .9em!important;
      font-weight: bold!important;
}

#block-block-13 {
    margin: -105px 0 20px 445px;
    max-width: 360px;
    text-align: center;
    height: 80px;
    font-size: 1.3em;
    background-color: #e5fac8;
}

.view-display-id-block_4 tr {
    margin: 10px 0;
}

.view-display-id-block_4 .field-type-taxonomy-term-reference {
    margin: -15px 0 -20px -15px;
    font-size: 1.3em;
}

.view-display-id-block_4 .field-type-taxonomy-term-reference li{
    list-style-image: none;
    list-style-type: none;
}

.view-display-id-block_4 a,
.view-display-id-block_4 a:link,
.view-display-id-block_4 a:visited,
.view-display-id-block_4 a:active,
.view-display-id-block_4 a:hover {
      font-size: 1.2em;
      color: #000000;
      font-style: italic;
      line-height: 1em;
}

.top-2nd-image  {
    float: left;
}

.top-2nd-text  {
      float: left;
}

#panels-ipe-paneid-6 {
    margin: -40px 0 -60px 0!important;
}

#mini-panel-top_right_articles .article-banner {

}


#panels-ipe-paneid-45 {
    margin: -20px 0 -60px 0!important;
}
.middle-four-block-fp,
.pane-top-news-articles-fp {
  margin-bottom: 40px!important;
}

.liScroll-container {
  width: 660px;
}

.liScroll-container .mask {
  width: 660px;
}

.subject-page-top-article a,
.subject-page-top-article a:link,
.subject-page-top-article a:visited,
.subject-page-top-article a:active,
.subject-page-top-article a:hover  {
      color: #0b47ee;
      font-size: 1.3em;
      font-weight: bold;
}


.subject-page-top-article{
    max-width: 330px!important;
    float: left!important;
}

.subject-page-top-article, table, thead, tbody, tr, th, td {
      border: 0px none #ffffff!important;
      border-top: 0px none #ffffff!important;
      margin: 0px!important;
      padding: 0px!important;
}

.subject-page-top-article-list{
    max-width: 280px!important;
    float: left!important;
}

.subject-page-top-article-list .views-row {
      padding: 12px 0;
}

.subject-page-top-article-list a,
.subject-page-top-article-list a:link,
.subject-page-top-article-list a:visited,
.subject-page-top-article-list a:active,
.subject-page-top-article-list a:hover  {
          color: #0b47ee;
          font-size: 1.2em;
          font-weight: bold;
}

.panels-flexible-region-12-bottom .block-title{
    margin: 0 0 0 0!important;
}

.main-recent-articles-list a,
.main-recent-articles-list a:link,
.main-recent-articles-list a:visited,
.main-recent-articles-list a:active,
.main-recent-articles-list a:hover  {
        color: #0b47ee;
        font-size: 1.1em;
        font-weight: bold;
}

.view-nmp-search .field-name-title-field  a,
.view-nmp-search .field-name-title-field  a:link,
.view-nmp-search .field-name-title-field  a:visited,
.view-nmp-search .field-name-title-field  a:active,
.view-nmp-search .field-name-title-field  a:hover  {
            color: #0b47ee;
            font-size: 1.4em;
            font-weight: bold;
}

.view-id-blog .node-title  a,
.view-id-blog .field-name-title-field  a:link,
.view-id-blog .field-name-title-field  a:visited,
.view-id-blog .field-name-title-field  a:active,
.view-id-blog .field-name-title-field  a:hover  {
            color: #0b47ee;
            font-size: .8em;
            font-weight: bold;
}


.view-id-blog .field-name-field-image {
    float: left;
    padding: 10px 10px 0 0;
}

.view-id-blog .field-type-text-with-summary {
    margin: -5px 0 -20px 0!important;
}

.industry-insights {

}

.industry-insights-row .field-type-image {
        padding: 0.3em;
    }

div.pane-bottom-subject-area .pane-bottom-content-grid {
    margin: 0 0 0px 0!important;
    float: left;
    max-width: 235px;*/
}

.fp-secondary-block-categories .field-type-image {
    max-width: 100px;
    padding-right: 5px;
}

.sec-title {
    float: left;
}

.sec-image {
    float: left;
}

#block-search-api-page-node-search {
    max-width: 300px;
    float: right;
    margin: -60px 5px 0 0;
}

#block-search-api-page-node-search .form-submit {
    height: 20px!important;
    margin: -35px 0 0 140px!important;
    float: left;
}

/***** CALENDAR PAGE *****/

#nmp-calendar-page .region-two-66-33-second {
      background-color: #045ba8 !important;
      padding: 10px 0 0 0;
}

.#nmp-calendar-page .region-two-66-33-second {
      background-color: #045ba8 !important;
      padding: 10px 0 0 0;
}

.events-page-listing .views-field-title a,
.events-page-listing .views-field-title a:link,
.events-page-listing .views-field-title a:visited,
.events-page-listing .views-field-title a:active,
.events-page-listing .views-field-title a:hover {
    color: #000000;
    text-decoration: none;
}

.events-page-listing .views-field-title {
      background-color: transparent!important;
}

.events-page-listing {
    max-width: 540px!important;
    //background-color: #e5e5e5!important;
    border: none!important;
    font-size: .95em!important;
}

.pane-events,
.pane-blog,
.pane-mortgage-jobs {
    max-width: 300px;
    margin: 10px  auto;
    background-color: #ffffff;
}

.pane-aggregator-feed-1 .pane-title{
	margin: 0 0 10px 0!important;
}

.pane-blog .block-title,
.pane-mortgage-jobs .pane-title {
    padding-bottom: 20px;
	margin: 0 0 20px 0;
}

.pane-blog .views-field-title a,
.pane-blog .views-field-title a:link,
.pane-blog .views-field-title a:visited,
.pane-blog .views-field-title a:active,
.pane-blog .views-field-title a:hover {
      color: #000000;
      text-decoration: none;
      font-size: 1em!important;
      font-style: normal!important;
}

.pane-blog .views-field-title {
        font-style: normal!important;
        background-color: transparent!important;
}

.pane-mortgage-jobs .views-field-title a,
.pane-mortgage-jobs .views-field-title a:link,
.pane-mortgage-jobs .views-field-title a:visited,
.pane-mortgage-jobs .views-field-title a:active,
.pane-mortgage-jobs .views-field-title a:hover {
        color: #000000;
        text-decoration: none;
        font-style: none!important;
}

.pane-mortgage-jobs .views-field-title {
        margin: 0 0 10px 0;
}

.pane-events .views-field-title a,
.pane-events .views-field-title a:link,
.pane-events .views-field-title a:visited,
.pane-events .views-field-title a:active,
.pane-events .views-field-title a:hover {
        color: #000000;
        text-decoration: none;
        font-style: none!important;
}


.pane-nmp-calendar {
    max-width: 480px;
    margin: 40px auto;
}

#mini-panel-bottom_list_blocks  {
  max-width: 940px;
  margin: 0 auto!important;
  padding: 0px 0;
  //border-top: 2px #045ba8 solid;
  //border-bottom: 2px #045ba8 solid;
}

.pane-blog {
  border-left: 2px #045ba8 solid;
  border-right: 2px #045ba8 solid;
}
/* Superfish overrides */
.sf-menu.sf-style-spring li:hover, .sf-menu.sf-style-spring li.sfHover, .sf-menu.sf-style-spring li.active a, .sf-menu.sf-style-spring a:focus, .sf-menu.sf-style-spring a:hover, .sf-menu.sf-style-spring a:active, .sf-menu.sf-style-spring.sf-navbar li li { background: none;}
.sf-menu.sf-style-spring li, .sf-menu.sf-style-spring.sf-navbar { background: none; }
ul.sf-menu a {
  line-height: 1em;
  margin-top: 4px;
  margin-bottom: 5px;
  height: auto;
}

.pane-e-edition-national a,
.pane-e-edition-national a:link,
.pane-e-edition-national a:visited,
.pane-e-edition-national a:active,
.pane-e-edition-national a:hover {
        font-size: 1.5em;
        font-weight: bold;
}

.pane-e-edition-user a,
.pane-e-edition-user a:link,
.pane-e-edition-user a:visited,
.pane-e-edition-user a:active,
.pane-e-edition-user a:hover {
      font-size: 1.5em;
      font-weight: bold;
}

.pane-e-edition-user,
.pane-e-edition-national{
  background-color: #ffffff;
  //padding: 20px 0;
  border: 4px #045ba8 solid;
  margin: 15px 0 15px 0!important;
}

.pane-e-edition-national .block-title,
.pane-e-edition-user .block-title   {
    //max-width: 240px;
    margin: 0 -14px 30px -14px;
    background-color: #045ba8;
    color: #ffffff;
    text-align: center;
}


.view-e-edition-national .field-name-field-pdf-thumb,
.view-e-edition-user .field-name-field-pdf-thumb {
    float: left;
    margin: 20px 0 10px 5px;
}

.view-e-edition-national .views-field-title,
.view-e-edition-user .views-field-title {
  //float: right;
  max-width: 220px;
  margin: 20px auto 10px auto;
  text-align: center;
}

.kaltura-subject-most-viewed .block-title {
    margin: 0 0 25px 0!important;
}

.kaltura-subject-most-viewed{
  background-color: #e7e7e7;
  //border: 2px #999999 solid;
  margin: -40px  0 0 20px;
  vertical-align: top;
}

#view-id-kaltura_most_popular_videos .table .col-1 {
    vertical-align: top;
    text-align: center;
    margin: 0px 15px 0 0;
}

.view-feature-of-the-week .view-header{
    margin: 0 auto!important;
    //max-width: 237px;
}

.featured-ad-header {ckground-color: #045ba8;
    color: #ffffff;
    background-color: #045ba8;
    float: right;
    font-weight: bold;
    max-width: 333px;
    padding: 0 33px;
    text-align: center;
    margin: -40px -10px 114px 0px;
  }


.pane-feature-of-the-week {
    //background-color: #045ba8;
    //color: #ffffff;
    //font-weight: bold;
    margin: -50px 0 0 0;
    //text-align: center;
    //padding: 0 32px;
}                    

/***********  ARTICLE PAGE STYLES ***********/

.portal-article-page-layout .views-field-title a,
.portal-article-page-layout .views-field-title a:link,
.portal-article-page-layout .views-field-title a:visited,
.portal-article-page-layout .views-field-title a:active,
.portal-article-page-layout .views-field-title a:hover  {
      font-size: 1.4em;
      color: #045ba8;
      //float: left;
      font-weight: bold;
      max-width: 620px;
}

.portal-article-page-layout .views-field-title {
    max-width: 660px;
}

.portal-article-page-layout .field-name-field-image {
    float: left;
    margin: 0 0 10px 0;
}

.portal-article-body-text  {
    float: left;
    max-width: 600px;
    margin: 0 0 20px 10px;
}

.portal-article-page-layout .more-link {
}

.page-directory-list .expanded {
    float: left;
}
.page-directory-list .expanded.menu-depth-2 {
    margin: 10px 6px 24px 10px;
    width: 47%;
} 
.page-directory-list .expanded.menu-depth-1 {
    padding-right: 20px;
}

.pane-menu-menu-resource-registry .expanded.menu-depth-1 {
      //float: left;
}

.pane-menu-menu-resource-registry ul.menu li:last-of-type {
        float: none;
}

.pane-menu-menu-resource-registry {
      max-width: 920px;
      margin: 0 auto;
}

.pane-menu-menu-resource-registry a,
.pane-menu-menu-resource-registry a:link,
.pane-menu-menu-resource-registry a:visited,
.pane-menu-menu-resource-registry a:active,
.pane-menu-menu-resource-registry a:hover {
      font-weight: bold;
      color: #045ba8;
}

.pane-menu-menu-resource-registry .menu-depth-1 li a,
.pane-menu-menu-resource-registry .menu-depth-1 li a:link,
.pane-menu-menu-resource-registry .menu-depth-1 li a:visited,
.pane-menu-menu-resource-registry .menu-depth-1 li a:active,
.pane-menu-menu-resource-registry .menu-depth-1 li a:hover {
        font-weight: bold;
              color: #328b38;
}

.pane-menu-menu-resource-registry .menu-depth-2 li a,
.pane-menu-menu-resource-registry .menu-depth-2 li a:link,
.pane-menu-menu-resource-registry .menu-depth-2 li a:visited,
.pane-menu-menu-resource-registry .menu-depth-2 li a:active,
.pane-menu-menu-resource-registry .menu-depth-2 li a:hover {
          font-weight: bold;
          color: #000000;
}

.pane-block-16 {
    margin: 20px 20px -20px 20px
}

.view-dom-id-867b38e7b0cc1022d6b73cc85a6052f2 .views-row {
      max-width: 320px;
}

.view-dom-id-867b38e7b0cc1022d6b73cc85a6052f2 .views-field-title {
    float: left;
}

.pane-dfp-a5cf23ff7fa1005867f4d45daa7010bf{
    margin: 0 0px 20px -9px;
}

.pane-block-17 {
    margin: 15px 0 0 0;
}

.pane-dfp-front-page-top-benner {
    margin: 0 0px 0 -10px!important;
}

#nmp-front-panel .pane-dfp-article-page-300x250-block-1 {
   margin: -10px 0 0 0px;
}

.panelizer-view-mode h2 a,
.panelizer-view-mode h2 a:link,
.panelizer-view-mode h2 a:visited,
.panelizer-view-mode h2 a:active,
.panelizer-view-mode h2 a:hover {
	color: #000000;
	text-decoration: none;
}

#block-views-user-posts-block {
	//max-width: 320px;
	margin: -20px 0 0 0;
}

#contact-personal-form .form-submit {
	margin: -40px 0 0 0;
}



.pane-block-18 {
	margin:-10px 0 0 0;
}

.e-edition-cover {
	margin: 10px 0 0 0;
}

.pane-block-18 .pane-title{
	color: #ffffff;
	text-align: center;
	margin: -10px 0 10px 20px !important;
}

.pane-dfp-nmp-large {
    margin: 0 0 20px 0px;
}

.category-right-first-ad {
    margin: 10px 0 0 10px;
}

.category-right-second-ad {
    margin: 0 0 0 10px;
}

.mortgage-jobs-block {
  margin: 0 0 0 10px;
}

.story-dfp-block-1 {
  margin: 5px 0px 0 0px;
}

.story-dfp-block-2 {
  margin: 0 0 0 0px;
}

.story-job-posting-block {
  margin: 0 0 0 0px;
}

.pane-front-page-mnn-video {
	margin: 10px 0 30px -10px;
}

.pane-node-field-ad-block-image {
        float: left;
        margin: -20px -242px 0 0;
}

.field-name-field-ad-block-image {
	float: right;
	margin: -20px -242px 0 0;
}

.pane-dfp-front-page-top-benner {
	max-width: 770px;
}
.field-name-field-type-of-feature {
  display: none;
}
.view-feature-of-the-week .view-content {
  float: right;
  max-width: 333px;
  margin: -115px -10px 0 0;
  clear: right;
}
.page-user-register #edit-field-state {
  display: none;
}
.node-type-story .pane-node-created {
  line-height: 1em;
  margin-bottom: 0;
  font-size: 92%;
}
.node-type-story .pane-node-author.no-title.block {
  margin-left: 27px;  
  margin-top: -28px;
  font-size: 92%;
}
.panel-pane.pane-node-author.no-title .block-content:before {
  content: "By ";
}

.view-taxonomy-name {
	font-size: 2em;
	font-style: italic;
	color: #045ba8;
}

.categories-recent-articles {
	margin: 80px 0 0 0;
}
.node-type-story #page-title {
  width: 70%;
  font-size: 1.6em;
  margin-top: 20px;
  float: left;
}
.pane-print-ui-print-links {
  float: left;
}
.node-type-story .pane-node-field-image {
  //float: right;
  text-align: center;
}
.node-type-story .pane-node-field-image img {
  max-width: 600px;
}
.panel-pane.pane-entity-field.pane-node-body.no-title.block {
  clear: left;
}
.node-type-story .pane-node-created .block-inner {
  margin: 0;
}
.node-type-story .print_html, .print_mail, .print_pdf, .print_epub {
  margin-left: 0;
}

.pane-block-19 {
	margin: 5px 0px 29px 0px;
}

.clearfix {
	clear: none!important;
}

.americas-top-jobs iframe {
	max-width: 620px!important;
}

.blog-author,
.blog-date {
	float: left;
}

.pane-node-body .field-name-body {
	//font-size: 18px!important;
}
.view-blog .views-field-picture img {
  height: 40px;
}
.view-blog .views-field-picture {
  float: left;
  padding-right: 5px;
}
.view-blog .views-row {
  clear: both;
  padding-top: 20px;
}
.view-blog .field-name-body {
  padding: 0 10px;
}
.view-blog .views-field-created {
  padding: 6px;
}
.view-blog span {
  font-size: 14px !important;
}

#block-block-20,
#block-system-main-menu {
	display: none;

}
#block-search-api-page-node-search .block-title,
.page-user #main-content-header {
  display: none;
}
.view-user-posts .views-row {
  padding: 1em 1em;
}
.view-user-profile {
  padding-left: 1em;
  padding-right: 1em;
}

.pane-user-picture {
	float: left;
}

.pane-user-picture .block-title {
	visibility: hidden;
}
/
.user-picture {
	float: left;
}

.profile2-imported-general-profile {
	float: left;
}

ol.inline.commerce-checkout-progress li {
  float: left;
  width: 70%!important;
}
.node-type-plain-blank-page .print_html {
  display: none;
}

.imported-public-profile {
  margin: -56px 0 0 0;
}

.imported-public-profile h3{
	visibility: hidden;
}

.pane-user-picture {
	max-width: 166px;
	float: left;
	height: 170px;
	clear: both;
}



.user-picture {
	float:left;
	max-width: 161px;
}

.field-name-field-about-me .field-item {
	float: left;
}

.pane-user-profile-imported-general-profile {
}

.profile2-imported-general-profile {
	//margin: -65px 0 0 0;
	float: left!important;
	clear: right;
}
.panel-pane.pane-entity-field-extra.pane-user-profile-imported-general-profile {
  float: left;
  padding-left: 10px;
  max-width: 270px;
}
.panel-pane.pane-views.pane-user-posts.block {
  clear: both;
}

.pane-block-22 {
	  max-width: 575px;
          margin: -20px 0 0 30px;
          border: #666666 solid 2px;
	  padding: 10px 0 0 0;
}

.pane-block-22 a,
.pane-block-22 a:link,
.pane-block-22 a:visited,
.pane-block-22 a:active,
.pane-block-22 a:hover {
	color: #000000;
}

