/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */


/*
 * Body
 */
body {
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: #333;
}

#page-wrapper {
}

#page {
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 * See the element-focusable rule in system.base.css.
 */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/*
 * Header
 */
#header {
  margin-bottom: 2px;
}

#header .section {
}

#logo /* Wrapping link for logo */ {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}

#logo img {
  vertical-align: bottom;
}

#name-and-slogan /* Wrapper for website name and slogan */ {
  float: left;
}

h1#site-name,
div#site-name /* The name of the website */ {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}

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

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

#site-slogan /* The slogan (or tagline) of a website */ {
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
}

#main {
}

/*
 * Content
 */
#content {
}

#content .section {
}

.breadcrumb /* The path to the current page in the form of a list of links */ {
  padding-bottom: 0; /* Undo system.css */
}

.breadcrumb h2 {
  margin: 0;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb ol li {
  display: inline;
  font-weight: bold;
}

.breadcrumb ol li span {
  font-weight: normal;
}

h1.title /* The title of the page */ {
  height:32px;
  padding:0px 0px 0px 0px;
  margin-top: 0px;
  margin-bottom: 15px;
}

h2.node-title, /* Title of a piece of content when it is given in a list of content */
h2.block-title, /* Block title */
h2.title, /* Comment section heading */
h2.comment-form, /* Comment form heading */
h3.title /* Comment title */ {
  margin: 0;
}

tr.even /* Some tables have rows marked even or odd. */ {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

tr.odd {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

div.messages /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */ {
  min-height: 5em;
  font-size: 12px;
  box-sizing: content-box;
  background-position: 8px 8px; /* LTR */
  background-repeat: no-repeat;
  border: 1px solid;
  margin: 1.5em 0;
  padding: 10px 10px 10px 100px; /* LTR */
}

.messages__item + .messages__item {
    margin-top: 0;
}

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

div.status /* Normal priority messages */ {
  background-image: url("../images/msg_confirm.gif");
  background-color: #E9ECF4;
  border: none;
  color: #000000;
}

div.warning,
tr.warning /* Medium priority messages */ {
  border: 1px solid #FFFCE5; /* Drupal core uses: 1px solid #f0c020 */
  color: #333333;
}

div.error,
tr.error /* High priority messages. See also the .error declaration below. */ {
}

.error /* Errors that are separate from div.messages status messages. */ {
  /* color: #e55; */ /* Drupal core uses a #e55 background */
}

div.error {
  background-image: url("../images/msg_error.gif");
  background-color: #FFE6E6;
  border: none;
  color: #000000;
}

.warning /* Warnings that are separate from div.messages status messages. */ {
  /* color: #e09010; */ /* Drupal core uses a #e09010 background */
}

div.warning {
  background-image: url("../images/msg_attention.png");
  background-color: #fffce5;
}

div.tabs /* See also the tabs.css file. */ {
  display: none;
}

.region-help /* Help text on a page */ {
}

.more-help-link /* Link to more help */ {
}

.region-content /* Wrapper for the actual page content */ {
}

ul.links /* List of links */ {
}

ul.links.inline {
  display: block; /* Let the links be inline, but the container be a block. */
}

ul.links li {
  padding: 0 1em 0 0; /* LTR */
}

.pager .pager__items /* A list of page numbers when more than 1 page of content is available */ {
  padding: 0;
}

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

@media print {
  .pager {
    display: none;
  }
}

.pager__item,
.pager__current-item,
.pager-current,
.is-active,
.pager-item,
.pager-first,
.pager__item--first,
.pager-previous,
.pager__item--previous,
.pager-next,
.pager__item--next,
.pager-last,
.pager__item--last,
.pager-ellipsis {
  display: inline;
  padding: 0 .5em;
  list-style-type: none;
  background-image: none;
}

.pager__current-item,
.pager-current,
.is-active {
  font-weight: bold;
}

.feed-icon /* The link to the RSS or Atom feed for the current list of content */ {
}

.more-link /* Aggregator, blog, and forum more link */ {
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */
.region-sidebar-first {
}

.region-sidebar-first .section {
}

/*
 * Page Footer
 */
.footer {
  background-color: #A3A3A3;
  line-height: 5.5em;
  width: 100%;
  margin-top: 1.5em;
  color: #E8E8E8;
  text-align: center;
  font-size: 10px;
}

.footer div {
  margin: 0;
}

.footer div p {
  margin: 0;
}

img#dot {
  padding-top: 5px;
  margin-bottom: 5px;
}


#page-title-left {
  width: 8px;
  height: 32px;
  position: absolute;
  margin: 0;
}

#page-title-main {
  height:32px;
  padding:0px 0px 0px 15px;
  font-size: 14px;
  font-weight:bold;
  color: #FFFFFF;
  line-height: 32px;
}

.region-sidebar-first .block-menu ,
.region-sidebar-first .block-koneco-switch-user {
  border: solid 1px #CCC;
  padding: 0 0 0 0;
  margin: 0 10px 0 0;
}

.region-sidebar-first .block-menu ul.menu {
  margin: 0;
  padding-left: 2em;
}

.region-sidebar-first .block-menu ul.menu li {
  list-style-type: none;
  list-style-image: none;
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: normal;
}

.region-sidebar-first .block-menu ul.menu li a {
  text-decoration: none;
  color: #696969;
}

.region-sidebar-first .block-menu h2,
.region-sidebar-first .block-koneco-switch-user h2,
.region-sidebar-first .section .block-koneco-utils h2 {
  line-height: 1.5em;
  background-color: #F0F0F0;
  border-bottom: solid 1px #CCC;
  padding-top: 10px;
  padding-left: 8px;
  margin: 0;
  font-weight: normal;
  font-size: 100%;
}

#block-koneco-theme-menu-user-favorites h2 {
  background-image: url(../images/icon_favorite.png);
  background-repeat: no-repeat;
  background-position: 170px 8px;
}

nav.menu--account ul.menu {
  height: 20px;
}

nav.menu--account ul.menu li {
  vertical-align: top;
  padding-right: 5px;
  display: inline;
  list-style-type: none;
}

nav.menu--account ul.menu li a {
  vertical-align: inherit;
}

nav.menu--account ul.menu li a span {
  vertical-align: inherit;
}

nav.menu--account ul.menu li a span img {
  vertical-align: inherit;
}

nav.menu--account ul.menu li.first span {
  line-height: 20px;
}

.region-sidebar-first .block-koneco-switch-user {
  margin-bottom: 1.5em;
}

.region-sidebar-first .block-koneco-switch-user #masquerade-block-form {
  padding-top: 1.5em;
  padding-left: 8px;
  padding-right: 8px;
}

.region-sidebar-first .block-koneco-switch-user #masquerade-block-form div.form-item ul {
  padding-left: 0px;
}

.region-sidebar-first .block-koneco-switch-user #masquerade-block-form div.form-item div.description {
  font-size: 12px;
}

.region-sidebar-first .block-koneco-switch-user #masquerade-block-form div.form-item div.error {
  font-size: 12px;
  color: #c00;
  background: none;
}

.region-sidebar-first .block-koneco-switch-user .item-list ou li {
  margin: 1em 0.5em 1em 0.5em;
  list-style-type: none;
}

nav#block-koneco-theme-account-menu {
  margin-bottom: 0;
}
