/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */

/* HTML element (SMACSS base) rules 
@import "normalize.css";*/

#page,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer {
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  *behavior: url("/path/to/boxsizing.htc");
  _display: inline;
  _overflow: hidden;
  _overflow-y: visible;
}

/* Containers for grid items and flow items. */
#header,
#main,
#footer {
  *position: relative;
  *zoom: 1;
}
#header:before,
#header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
#header:after,
#main:after,
#footer:after {
  clear: both;
}

/* Navigation bar */
@media all and (min-width: 480px) {
  #main {
    /* Move all the children of #main down to make room. */
    padding-top: 3em;
    position: relative;
  }
  #navigation {
    /* Move the navbar up inside #main's padding. */
    position: absolute;
    top: 0;
    height: 3em;
    width: 100%;
  }
}

/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (min-width: 480px) and (max-width: 959px) {

  /**
   * The layout when there is only one sidebar, the left one.
   */

  /* Span 2 columns, starting in 2nd column from left. */
  .sidebar-first #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }

  /* Span 1 column, starting in 1st column from left. */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */

  /* Span 2 columns, starting in 1st column from left. */
  .sidebar-second #content {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: -66.66667%;
  }

  /* Span 1 column, starting in 3rd column from left. */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */

  /* Span 2 columns, starting in 2nd column from left. */
  .two-sidebars #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }

  /* Span 1 column, starting in 1st column from left. */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }

  /* Start a new row and span all 3 columns. */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 0;
    padding-right: 0;
    clear: left;
  }

  /* Apply the shared properties of grid items in a single, efficient ruleset. */
  .two-sidebars .region-sidebar-second .block {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    *behavior: url("/path/to/boxsizing.htc");
    _display: inline;
    _overflow: hidden;
    _overflow-y: visible;
  }

  /* Span 1 column, starting in the 1st column from left. */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    clear: left;
  }

  /* Span 1 column, starting in the 2nd column from left. */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
  }

  /* Span 1 column, starting in the 3rd column from left. */
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }
}

/**
 * Use 5 grid columns for larger screens.
 */
@media all and (min-width: 960px) {

  /**
   * The layout when there is only one sidebar, the left one.
   */

  /* Span 4 columns, starting in 2nd column from left. */
  .sidebar-first #content {
    float: left;
    width: 80%;
    margin-left: 20%;
    margin-right: -100%;
  }

  /* Span 1 column, starting in 1st column from left. */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */

  /* Span 4 columns, starting in 1st column from left. */
  .sidebar-second #content {
    float: left;
    width: 80%;
    margin-left: 0%;
    margin-right: -80%;
  }

  /* Span 1 column, starting in 5th column from left. */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */

  /* Span 3 columns, starting in 2nd column from left. */
  .two-sidebars #content {
    float: left;
    width: 60%;
    margin-left: 20%;
    margin-right: -80%;
  }

  /* Span 1 column, starting in 1st column from left. */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }

  /* Span 1 column, starting in 5th column from left. */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }
}


/* Layout rules 
@import "layouts/responsive.css";*/

/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */

/**
 * HTML5 display definitions
 */

/* Correct `block` display not defined in IE 8/9. */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 */

/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
html {
  font-family: Verdana, Tahoma, "Arial", sans-serif; /* 1 */

  /* Delete all but one of the following font-size declarations: */

  /* Use a 12px base font size. 16px x 75% = 12px */
  font-size: 75%; /* 3 */
  /* Use a 14px base font size. 16px x .875 = 14px */
  font-size: 87.5%; /* 3 */
  /* Use a 16px base font size. */
  font-size: 100%; /* 3 */

  -ms-text-size-adjust: 100%;     /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */

  /* Establish a vertical rhythm. */
  line-height: 1.5em;
}

/* Address `font-family` inconsistency between `textarea` and other form elements. */
button,
input,
select,
textarea {
  /**
   * The following font family declarations are available on most computers.
   *
   * A user's web browser will look at the comma-separated list and will
   * attempt to use each font in turn until it finds one that is available
   * on the user's computer. The final "generic" font (sans-serif, serif or
   * monospace) hints at what type of font to use if the web browser doesn't
   * find any of the fonts in the list.
   *
   * font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;
   * font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
   * font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;
   *
   * font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
   * font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
   * font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
   * font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;
   *
   * font-family: "Courier New", "DejaVu Sans Mono", monospace;
   */
  font-family: Verdana, Tahoma, "Arial", sans-serif;
}

/* Remove default margin. */

body {
  margin: 0;
  padding: 0;
  color:#fff;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
a:link {
}
a:visited {
}
a:hover,
a:focus {
}
a:active {
}

/* Address `outline` inconsistency between Chrome and other browsers. */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */

/* Set 1 unit of vertical rhythm on the top and bottom margin. */
p,
pre {
  margin: 1.5em 0;
}
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em; /* 3rem / 2em = 1.5em */
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em; /* 1.5rem / 2em = .75em */
  margin-bottom: 0.75em;
}
h2 {
  font-size: 1.5em;
  line-height: 2em; /* 3rem / 1.5em = 2em */
  margin-top: 1em; /* 1.5rem / 1.5em = 1em */
  margin-bottom: 1em;
}
h3 {
  font-size: 1.17em;
  line-height: 1.28205em; /* 1.5rem / 1.17em = 1.28205em */
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}
h4 {
  font-size: 1em;
  line-height: 1.5em; /* 1.5rem / 1em = 1.5em */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
h5 {
  font-size: 0.83em;
  line-height: 1.80723em; /* 1.5rem / 0.83em = 1.80723em */
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}
h6 {
  font-size: 0.67em;
  line-height: 2.23881em; /* 1.5rem / 0.67em = 2.23881em */
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

/* Address styling not present in IE 8/9. */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
  line-height: 1.5em;
}

/* Improve readability of pre-formatted text in all browsers. */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Set consistent quote types. */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}
dd {
  margin: 0 0 0 30px; /* LTR */
}

/* Address paddings set differently in IE 6/7. */
menu,
ol,
ul {
  padding: 0 0 0 30px; /* LTR */
}

/* Correct list images handled incorrectly in IE 7. */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Improve image quality when scaled in IE 7. */
  -ms-interpolation-mode: bicubic;

  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */

  /* Responsive images */
  max-width: 597px;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* Correct overflow displayed oddly in IE 9. */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
figure {
  margin: 0;
}

/**
 * Forms
 */

/* Correct margin displayed oddly in IE 6/7. */
form {
  margin: 0;
}

/* Define consistent border, margin, and padding. */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.5em 0.625em 1em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
  *margin-left: -7px; /* 3 */ /* LTR */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 2 */
  margin: 0; /* 3 */
  vertical-align: baseline; /* 4 */
  *vertical-align: middle; /* 4 */
  max-width: 100%; /* 5 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
  *overflow: visible; /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
  *height: 13px; /* 3 */
  *width: 13px; /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/* Drupal-style form labels. */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}


/* Component (SMACSS module) rules */
@import "components/misc.css";
/* Optionally, add your own components here. */
@import "print.css";

/* SMACSS theme rules */
/* @import "theme-A.css"; */
/* @import "theme-B.css"; */

@font-face {
  font-family: 'myr_b';
  src: url('fonts/MyriadPro-Bold.eot');
  src: local('☺'), url('fonts/MyriadPro-Bold.woff') format('woff'), 
                  url('fonts/MyriadPro-Bold.ttf') format('truetype'), 
                  url('fonts/MyriadPro-Bold.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'myr_it';
  src: url('fonts/MyriadPro-It.eot');
  src: local('☺'), url('fonts/MyriadPro-It.woff') format('woff'), 
                  url('fonts/MyriadPro-It.ttf') format('truetype'), 
                  url('fonts/MyriadPro-It.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'myr_reg';
  src: url('fonts/MyriadPro-Regular.eot');
  src: local('☺'), url('fonts/MyriadPro-Regular.woff') format('woff'), 
                  url('fonts/MyriadPro-Regular.ttf') format('truetype'), 
                  url('fonts/MyriadPro-Regular.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

p#skip-link {display:none;}

.view-halom-frontpage .view-content {height:100%;}
.view-hirek .view-content {height:100% !important;}

header #block-search-form {margin-bottom:-13px;}
.section-magunkrol #block-search-form {margin-bottom:-13px;}
.page-eform  #block-search-form {margin-bottom:7px;}
.page-contact  #block-search-form {margin-bottom:7px;}

body {background:#fff;}
body.html {background:url(images/tile.png);}

a {text-decoration:none;}

#navigation {display:none;}
#main {padding-top:0 !important;}

h1 {font-size:31px; font-family:"myr_b"; color:#fab400; line-height:33px; text-transform:uppercase; font-style:italic;}
h2.block__title {font-size:18px; font-family:"myr_b"; color:#030303; line-height:20px; text-transform:uppercase;}
h2.node__title a {float:none; font-size:18px; color:#fff; line-height:20px; font-weight:bold; text-decoration:none;}  

.sarga-kifuto {width:100%; height:auto; padding-top:63px; background:url(images/top_tile.png) repeat-x;}

article {padding-bottom:30px;}
article p {margin:7px 0 !important; font-size:14px; color:#fff; line-height:16px;}
article .field-label {font-size:14px; color:#fab400; line-height:16px; font-weight:bold;}
article .date-display-single {display:block; font-size:14px; color:#fab400; line-height:16px; font-weight:bold;}

article ul {width:100%; list-style:disc;}
article ul li {font-size:14px; color:#fff; line-height:16px;}

.tilt-message {font-size:14px; color:#fff; line-height:18px;}

#page {width:960px; background:#004387; -webkit-box-shadow:  1px 0px 15px 0px rgba(0, 0, 0, 0.3); box-shadow:  1px 0px 15px 0px rgba(0, 0, 0, 0.3);}

.header {background:url(images/shade.png) no-repeat center 54px transparent;}
.header:after {clear:both;}

.header__site-name {float:left; margin:0 !important;}
.header__logo {float:left; padding:0; margin:-53px 20px 0 0;}
.header__site-name span {float:left; display:block; padding-top:8px; font-size:44px; font-family:"myr_reg"; color:#fff; line-height:45px; font-weight:bold; text-transform:uppercase;}

#block-block-7 p {display:none;}

.page__title {padding-bottom:8px; border-bottom:1px solid #1674b5;}

.header__name-and-slogan {float:right; margin-top:-63px; width:620px;}
.header__site-slogan-image {float:right; height:32px; margin-top:-48px; padding-top:0px; background:url(images/slogan_bgr.png) no-repeat; font-size:30px; font-family:"myr_it"; color:#fff; line-height:39px; text-transform:uppercase;}

#flashContent {float:left; width:635px; height:300px; background:#00274f; margin-top:5px; margin-left:9px; margin-bottom:10px; font-size:12px; color:#fff; line-height:18px;}
#flashContent a {font-size:14px; color:#fab400; line-height:16px; font-style:italic; font-weight:bold;}

.block-search {float:right; width:277px; margin-top:6px; margin-bottom:10px; margin-right:9px;}
.block-search .form-text {width:224px; height:33px; padding:0 4px; margin-left:2px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4);}
.block-search .form-submit {float:right; width:40px; height:32px; border:0; margin-right:0 !important; margin-top:1px; background:url(images/ok_bgr.png) no-repeat; font-size:16px; font-family:"myr_b"; color:#fff; line-height:18px; text-transform:uppercase; text-align:center;}

.header__region .view-content {float:right; width:275px; height:72px !important; margin-right:9px; margin-bottom:0; background:url(images/header_right_bgr.png) no-repeat;}
.view-content .views-label {padding-left:15px; margin-top:7px; font-size:14px; color:#010101; line-height:16px; font-style:italic;}
.view-content strong {display:block; padding-left:15px; font-size:18px; color:#010101; line-height:20px; font-style:italic; font-weight:bold; text-align:left;}
.online-header {float:right; width:275px; height:95px; margin-right:9px; margin-bottom:0; background:url(images/header_right_bgr.png) no-repeat left -72px;}
.elo-musor-link {padding-top:8px;}
.elo-musor-link a {padding-left:105px; font-size:22px; color:#fbb600; line-height:24px; text-transform:uppercase; font-weight:bold; font-style:italic; text-decoration:none;}
.elo-musor-description {padding-left:105px; margin-top:8px; font-size:15px; color:#fff; line-height:18px; font-style:italic;}

p strong {color:#FAB400 !important;}

.archivum-header {float:right; width:275px; height:96px; margin-bottom:0; margin-right:9px; background:url(images/header_right_bgr.png) no-repeat left -169px;}
.archivum-link {padding-top:8px;}
.archivum-link a {padding-left:105px; font-size:22px; color:#fbb600; line-height:24px; text-transform:uppercase; font-weight:bold; font-style:italic; text-decoration:none;}
.archivum-description {padding-left:105px; margin-top:8px; font-size:15px; color:#fff; line-height:18px; font-style:italic;}

.block-nice-menus {float:left; width:960px; height:80px; margin-left:-10px; background:url(images/navigation_bgr.png) no-repeat center top;}
ul.nice-menu {width:925px; margin:0 auto; height:55px; margin-left:15px; margin-top:7px; list-style:none;}
ul.nice-menu li {background:transparent; height:55px; border:0; border-right:1px solid #0e0e0e; border-left:1px solid #fff;}
ul.nice-menu li.first {border-left:0; padding-left:4px;}
ul.nice-menu li.last {border-right:0;}

#search-block-form #edit-actions {float:right !important; width:auto !important;}


ul.nice-menu li a {padding:0px 6px !important; margin-top:20px; font-size:14px; font-family:"myr_b"; color:#282828; line-height:16px; text-transform:uppercase; text-align:center;}
ul.nice-menu li a:hover {color:#fff;}
ul.nice-menu li a.active {color:#fff;}

ul.nice-menu-down li.menuparent {background:transparent;}
ul.nice-menu-down li.menuparent:hover {background:transparent;}
ul.nice-menu-down li.menuparent a {padding:0; text-align:center;}
ul.nice-menu-down li.menuparent a:hover {background:transparent;}
ul.nice-menu-down li.menuparent ul {width:110px; padding-bottom:; background:#c16700; padding-top:5px; margin-top:26px;}
ul.nice-menu-down li.menuparent ul li {width:110px;}
ul.nice-menu-down li.menuparent ul li a {font-size:11px; color:#fff; line-height:13px; padding-left:12px !important; padding-top:4px !important; padding-bottom:3px !important; border-bottom:1px solid #eca000; text-align:left;}
ul.nice-menu li.last a {padding-right:0 !important;}

.menuparent ul li {height:auto; border:0; padding-left:0 !important;} 
.menuparent ul li a {margin-top:0 !important; margin-left:0 !important; padding-right:0 !important;}

/*
ul.nice-menu .menu-path-node-2 {width:109px;}
ul.nice-menu .menu-path-musoraink {width:95px;}
ul.nice-menu .menu-path-node-8 {width:81px;}
ul.nice-menu .menu-path-hirek {width:109px;}
ul.nice-menu .menu-path-contact {width:86px;}
ul.nice-menu .menu-path-node-12 {width:138px;}
ul.nice-menu .menu-path-node-add-hirdetes {width:131px;}
ul.nice-menu .menu-path-akciok {width:62px;}
ul.nice-menu .menu-path-partnereink {width:112px;}
*/

.view-content {height:100%;}

section.sidebar {float:left !important; width:300px !important; margin:0 25px 0 0 !important; padding:0 0 0 20px !important;}

#content {float:right !important; width:617px !important; margin:0 !important; margin-right:10px !important;}
.view-halom-frontpage  .view-content {position:relative; width:617px !important; height:100% !important;  margin:0 !important;}

section.region-sidebar-first {width:316px !important; margin:-7px 0 0 0 !important;}
section.sidebar #block-block-3 {width:285px; padding-left:15px; height:176px; background:url(images/kepujsag_bgr.png) no-repeat;}
section.sidebar #block-user-login {width:285px; padding-left:15px; height:265px; background:url(images/bejelentkezes_bgr.png) no-repeat;}
section.sidebar #block-yr-verdata-yr-verdata-block {width:285px; padding-left:15px; height:586px; background:url(images/ido_bgr.png) no-repeat;}
section.sidebar #block-block-4 {width:300px; height:329px; margin:120px 0 0 -15px !important; background:url(images/facebook_bgr.png) no-repeat;}

section.sidebar .block-title {padding-left:73px; padding-top:25px; font-size:18px; font-family:"myr_b"; color:#030303; line-height:20px; text-transform:uppercase;}
section.sidebar #block-block-4 .block-title {padding-left:88px;}
section.sidebar p {font-size:16px; color:#fff; line-height:18px;}
section.sidebar a {font-size:14px; color:#fab400; line-height:16px; font-style:italic; font-weight:bold;}

section.sidebar label {margin-bottom:4px; font-size:12px; color:#fff; line-height:14px; font-weight:bold;}
#user-login-form {padding-top:20px;}
#user-login-form input {width:252px; height:33px; padding:0 4px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4);}
#user-login-form .item-list {margin-top:-17px;}
#user-login-form .item-list ul {list-style:none;}
#user-login-form .item-list li {float:left;}
#user-login-form .item-list a {margin-right:10px; font-size:10px; color:#fff; line-height:12px; font-weight:bold; text-decoration:underline;}
#user-login-form .item-list a:hover {text-decoration:none;}
#user-login-form .form-item {margin:7px 0;}

#user-login label {margin-bottom:4px; font-size:12px; color:#fff; line-height:14px; font-weight:bold;}
#user-login {padding-top:20px;}
#user-login input {width:252px; height:33px; padding:0 4px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4);}
#user-login .item-list {margin-top:-10px;}
#user-login .item-list ul {list-style:none;}
#user-login .item-list li {float:left;}
#user-login .item-list a {margin-right:10px; font-size:10px; color:#fff; line-height:12px; font-weight:bold; text-decoration:underline;}
#user-login .item-list a:hover {text-decoration:none;}
#user-login .form-item {margin:7px 0;}
#user-login .description {margin-top:5px; font-size:10px; color:#fff; line-height:12px;}


#user-register-form label {margin-bottom:4px; font-size:12px; color:#fff; line-height:14px; font-weight:bold;}
#user-register-form {padding-top:20px;}
#user-register-form input {width:252px; height:33px; padding:0 4px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4);}
#user-register-form .item-list {margin-top:-10px;}
#user-register-form .item-list ul {list-style:none;}
#user-register-form .item-list li {float:left;}
#user-register-form .item-list a {margin-right:10px; font-size:10px; color:#fff; line-height:12px; font-weight:bold; text-decoration:underline;}
#user-register-form .item-list a:hover {text-decoration:none;}
#user-register-form .form-item {margin:7px 0;}
#user-register-form .description {margin-top:5px; font-size:10px; color:#fff; line-height:12px;}
#user-register-form .form-submit {height:26px; width:auto; padding:3px 23px 0 23px; margin-top:5px; border:0; background:#fab400; font-size:18px; font-family:"myr_reg"; color:#030303; line-height:20px; text-transform:uppercase; box-shadow:none; -webkit-box-shadow:none;}

#contact-personal-form label {margin-bottom:4px; font-size:12px; color:#fff; line-height:14px; font-weight:bold;}
#contact-personal-form {padding-top:20px;}
#contact-personal-form input {width:252px; height:33px; padding:0 4px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4);}
#contact-personal-form .item-list {margin-top:-10px;}
#contact-personal-form .item-list ul {list-style:none;}
#contact-personal-form .item-list li {float:left;}
#contact-personal-form .item-list a {margin-right:10px; font-size:10px; color:#fff; line-height:12px; font-weight:bold; text-decoration:underline;}
#contact-personal-form .item-list a:hover {text-decoration:none;}
#contact-personal-form .form-item {margin:7px 0;}
#contact-personal-form .description {margin-top:5px; font-size:10px; color:#fff; line-height:12px;}
#contact-personal-form textarea {width:443px; height:140px; padding:0 4px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); overflow:hidden; resize:none;}
#contact-personal-form .form-submit {height:26px; width:auto; padding:3px 23px 0 23px; margin-left:50px; margin-top:5px; border:0; background:#fab400; font-size:18px; font-family:"myr_reg"; color:#030303; line-height:20px; text-transform:uppercase; box-shadow:none; -webkit-box-shadow:none;}
#contact-personal-form .grippie {width:443px !important;}
#contact-personal-form .form-checkbox {float:left; width:20px; height:20px; margin-top:5px; margin-right:10px;}

#views-exposed-form-archivum-page label {margin-bottom:4px; font-size:12px; color:#fff; line-height:14px; font-weight:bold;}
#views-exposed-form-archivum-page {padding-top:20px;}
#views-exposed-form-archivum-page input {width:290px; height:33px; padding:0 4px; margin-right:0; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4);}
#views-exposed-form-archivum-page .item-list {margin-top:-10px;}
#views-exposed-form-archivum-page .item-list ul {list-style:none;}
#views-exposed-form-archivum-page .item-list li {float:left;}
#views-exposed-form-archivum-page .item-list a {margin-right:10px; font-size:10px; color:#fff; line-height:12px; font-weight:bold; text-decoration:underline;}
#views-exposed-form-archivum-page .item-list a:hover {text-decoration:none;}
#views-exposed-form-archivum-page .form-item {margin:7px 0;}
#views-exposed-form-archivum-page .description {margin-top:5px; font-size:10px; color:#fff; line-height:12px;}
#views-exposed-form-archivum-page textarea {width:443px; height:140px; padding:0 4px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); overflow:hidden; resize:none;}
#views-exposed-form-archivum-page .form-submit {height:26px; width:auto; padding:3px 23px 0 23px; margin-top:104px !important; margin-left:50px; margin-top:5px; border:0; background:#fab400; font-size:18px; font-family:"myr_reg"; color:#030303; line-height:20px; text-transform:uppercase; box-shadow:none; -webkit-box-shadow:none;}
#views-exposed-form-archivum-page .grippie {width:443px !important;}
#views-exposed-form-archivum-page .form-checkbox {float:left; width:20px; height:20px; margin-top:5px; margin-right:10px;}
#views-exposed-form-archivum-page .views-exposed-widget {height:85px; padding:0 10px 0 0 !important;}
#edit-title-wrapper label {margin-bottom:18px;}
#views-exposed-form-archivum-page .form-submit {margin-left:0; margin-top:0; margin-top:34px !important; }
#edit-submit-archivum {margin-left:300px !important; margin-right:10px !important;}

#user-login-form .form-submit {height:26px; width:auto; padding:3px 23px 0 23px; margin-left:50px; margin-top:5px; border:0; background:#fab400; font-size:18px; font-family:"myr_reg"; color:#030303; line-height:20px; text-transform:uppercase; box-shadow:none; -webkit-box-shadow:none;}
#user-login .form-submit {height:26px; width:auto; padding:3px 23px 0 23px; margin-left:50px; margin-top:5px; border:0; background:#fab400; font-size:18px; font-family:"myr_reg"; color:#030303; line-height:20px; text-transform:uppercase; box-shadow:none; -webkit-box-shadow:none;}

section.sidebar #block-yr-verdata-yr-verdata-block h4 {font-size:18px; color:#fff; line-height:20px; font-weight:bold;}
section.sidebar #block-yr-verdata-yr-verdata-block span {font-size:14px; color:#fff; line-height:16px; }

table.views-view-grid {width:617px !important; margin-left:0px; margin-top:0 !important;}

.view-halom-frontpage {float:left;}

.view-halom-frontpage .view-content {background:transparent; }
.view-halom-frontpage .view-content article {position:relative; padding-top:165px; margin-bottom:15px; padding-bottom:0 !important; width:290px; background:url(images/teaser_bgr.png) no-repeat;}
.view-halom-frontpage .view-content article h2 {height:auto; margin:0; margin-top:5px; font-size:18px; color:#fff; line-height:20px; text-transform:uppercase; font-weight:bold;}
.view-halom-frontpage .view-content article p {height:88px; overflow:hidden; margin:7px 0 !important; font-size:14px; color:#fff; line-height:16px;}
.view-halom-frontpage .view-content .field-item {margin:5px 0 !important; font-size:14px; color:#fff; line-height:16px;}
.view-halom-frontpage .view-content article span {font-size:14px; color:#fff; line-height:16px;}
.view-halom-frontpage .view-content article a {display:block;}
.view-halom-frontpage .view-content article img {width:277px; height:144px; max-height:;}
.view-halom-frontpage .view-content article .field-type-text-with-summary {height:88px; overflow:hidden;}
.views-view-grid td {height:300px; overflow:hidden; vertical-align:top;}

body.front .field-name-field-video {position:absolute; top:2px; left:7px; margin:0 !important;}

footer {padding:0 20px !important;}
footer #block-block-2 {border-top:1px solid #1674b5; padding-top:15px;}
footer #block-block-2 p {font-size:14px; color:#fff; line-height:16px; margin:0 0 4px 0 !important;}
footer #block-block-5 p {font-size:14px; color:#fff; line-height:16px; margin:0 0 4px 0 !important;}

.view-hirek {float:left; width:600px;}
.view-hirek .view-content {float:left; width:600px; background:transparent;}
.view-hirek .view-content .views-row {float:left; width:600px; padding-bottom:25px; margin-bottom:25px; border-bottom:1px solid #1674b5;}
.view-hirek .view-content .views-row h2 {float:left; width:100%; font-size:20px; color:#fab400; line-height:22px; margin-bottom:10px; margin-top:0 !important;}
.view-hirek .field-name-field-subtitle {float:left; width:100%; font-size:16px; color:#fff; line-height:18px; font-weight:bold; margin-bottom:10px;}

.view-hirek .field-name-field-image {float:left; width:211px; height:160px; padding:6px 0 0 6px; background:url(images/hirek_kep_bgr.png) no-repeat center top;}
.view-hirek .field-name-field-image img {width:205px; height:auto; max-height:135px; margin:0 !important; border-radius:5px;}

.view-hirek .field-name-body {float:right; width:365px !important;}
.view-hirek .field-name-body p {float:left; width:100%; font-size:14px; color:#fff; line-height:17px; margin:0 !important;}
.view-hirek .node-article a {float:right; width:365px !important; margin-top:15px; font-size:12px; color:#89c7fe; line-height:14px; font-weight:bold;}
.view-hirek .node-article a:hover {text-decoration:underline;}

.view-partnereink {float:left; width:600px;}
.view-partnereink .view-content {float:left; width:600px; background:transparent;}
.view-partnereink .view-content .views-row {float:left; width:600px; padding-bottom:25px; margin-bottom:25px; border-bottom:1px solid #1674b5;}
.view-partnereink .view-content .views-field-title span {font-size:20px; color:#fab400; line-height:22px; margin-bottom:10px; margin-top:0 !important;}
.view-partnereink .views-field-field-subtitle {font-size:16px; color:#fff; line-height:18px; font-weight:bold; margin-bottom:10px;}

.view-partnereink .views-field-field-image {float:left; width:211px; height:160px; padding:6px 0 0 6px; background:url(images/hirek_kep_bgr.png) no-repeat center top;}
.view-partnereink .views-field-field-image img {width:205px; height:auto; max-height:135px; margin:0 !important; border-radius:5px;}

.view-partnereink .views-field-body {float:right; width:365px !important;}
.view-partnereink .views-field-body p {font-size:14px; color:#fff; line-height:17px; margin:0 !important;}
.view-partnereink .views-field-field-partner-url a {float:right; width:365px !important; margin-top:15px; font-size:12px; color:#89c7fe; line-height:14px; font-weight:bold;}
.view-partnereink .views-field-field-partner-url a:hover {text-decoration:underline;}

.node-article  h2 {font-size:20px; color:#fab400; line-height:22px; margin-bottom:10px; margin-top:0 !important;}
.node-article .field-name-field-subtitle {font-size:16px; color:#fff; line-height:18px; font-weight:bold; margin-bottom:10px;}
.node-article .field-name-body {float:right; width:100%;}
.node-article .field-name-body p {font-size:14px; color:#fff; line-height:17px; margin:0 !important;}
.node-article .field-name-field-image img {max-width:600px; margin:15px 0;}

.node-article a {float:right; width:365px; margin-top:15px; font-size:12px; color:#89c7fe; line-height:14px; font-weight:bold;}
.node-article a:hover {text-decoration:underline;}

.view-mode-full a {float:right; width:auto; margin-top:0; font-size:12px; color:#89c7fe; line-height:18px; font-weight:bold;}
.view-mode-full a:hover {text-decoration:underline;}

.view-mode-full a#player {float:none; margin:0 auto;}

.field-type-text-with-summary a {display:inline; float:none; margin:0; line-height:16px;}

.field-name-field-video {float:left; margin:0 15px;}
.comment_forbidden {float:left; font-size:14px; color:#fff; line-height:16px;}
.comment_forbidden span {float:left; }

.page-contact #block-block-1 p {font-size:20px; color:#fab400; line-height:22px; margin-bottom:10px; margin-top:20px !important;}
.page-contact .block-block {font-size:14px; color:#fff; line-height:16px;}


#contact-site-form  label {margin-bottom:4px; font-size:12px; color:#fff; line-height:14px; font-weight:bold;}
#contact-site-form  input {height:33px; padding:0 4px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4);}
#contact-site-form  textarea {width:443px; height:140px; padding:0 4px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); overflow:hidden; resize:none;}
#contact-site-form .grippie {width:443px !important;}
#contact-site-form .form-submit {height:26px; width:auto; padding:3px 23px 0 23px; margin-left:0px; margin-top:5px; border:0; background:#fab400; font-size:18px; font-family:"myr_reg"; color:#030303; line-height:20px; text-transform:uppercase; box-shadow:none; -webkit-box-shadow:none;}
#contact-site-form .form-type-textfield {margin-bottom:15px;}

#search-form  label {margin-bottom:4px; font-size:12px; color:#fff; line-height:14px; font-weight:bold;}
#search-form  input {height:33px; padding:0 4px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4);}
#search-form  textarea {width:443px; height:140px; padding:0 4px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); overflow:hidden; resize:none;}
#search-form .grippie {width:443px !important;}
#search-form .form-submit {height:26px; width:auto; padding:3px 23px 0 23px; margin-left:0px; margin-top:5px; border:0; background:#fab400; font-size:18px; font-family:"myr_reg"; color:#030303; line-height:20px; text-transform:uppercase; box-shadow:none; -webkit-box-shadow:none;}

#edit-advanced {float:left; width:100%; padding-right:0; margin-top:20px;}

#hirdetes-node-form  label {margin-bottom:4px; font-size:12px; color:#fff; line-height:14px; font-weight:bold;}
#hirdetes-node-form  {padding-bottom:25px;}
#hirdetes-node-form  input {height:33px; padding:0 4px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4);}
#hirdetes-node-form  textarea {width:443px; height:140px; padding:0 4px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); overflow:hidden; resize:none;}
#hirdetes-node-form .grippie {width:443px !important;}
#hirdetes-node-form .form-submit {height:26px; width:auto; padding:3px 23px 0 23px; margin-left:0px; margin-top:5px; border:0; background:#fab400; font-size:18px; font-family:"myr_reg"; color:#030303; line-height:20px; text-transform:uppercase; box-shadow:none; -webkit-box-shadow:none;}
#hirdetes-node-form .description {margin-top:10px; font-size:14px; color:#fff; line-height:17px;}
#hirdetes-node-form .description strong {font-size:14px; color:#fff; line-height:17px; font-weight:bold;}
#hirdetes-node-form legend {font-size:12px; color:#fff; line-height:14px; font-weight:bold;}
#hirdetes-node-form fieldset {border:0 !important;}
#hirdetes-node-form .wysiwyg-toggle-wrapper a {margin-top:15px; font-size:12px; color:#89c7fe; line-height:14px; font-weight:bold;}
#hirdetes-node-form .filter-help a {margin-top:15px; font-size:12px; color:#89c7fe; line-height:14px; font-weight:bold;}
#hirdetes-node-form .cke_skin_kama {border:0 !important; background:#fff;}
#hirdetes-node-form select option {font-size:12px; color:#010101; line-height:14px;}
.image-widget-data .form-submit {margin-left:15px !important;}
#edit-field-file-upload a {width:100%; font-size:12px; color:#89c7fe; line-height:14px; text-align:left !important;}
#edit-field-file-upload-und-0-remove-button {margin-left:20px !important;}
#edit-field-file-upload-und-1-upload-button {margin-left:20px !important;}

#advertisment-publicing-entityform-edit-form  label {margin-bottom:4px; font-size:12px; color:#fff; line-height:14px; font-weight:bold;}
#advertisment-publicing-entityform-edit-form {padding-bottom:20px; height:1310px;}
#advertisment-publicing-entityform-edit-form  label a {color:#FAB400;}
#advertisment-publicing-entityform-edit-form  {padding-bottom:25px;}
#advertisment-publicing-entityform-edit-form input {height:33px; padding:0 4px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4);}
#advertisment-publicing-entityform-edit-form  textarea {width:443px; height:140px; padding:0 4px; background:#fff; border-radius:5px; border:0; font-size:12px; color:#010101; line-height:14px; -webkit-box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); box-shadow: inset 2px 2px 3px 1px rgba(0, 0, 0, 0.4); overflow:hidden; resize:none;}
#advertisment-publicing-entityform-edit-form .grippie {width:443px !important;}
#advertisment-publicing-entityform-edit-form .form-submit {height:26px; width:auto; vertical-align:top; margin-top:6px !important; padding:3px 23px 0 23px; margin-left:0px; border:0; background:#fab400; font-size:18px; font-family:"myr_reg"; color:#030303; line-height:20px; text-transform:uppercase; box-shadow:none; -webkit-box-shadow:none;}
#advertisment-publicing-entityform-edit-form .description {margin-top:10px; font-size:14px; color:#fff; line-height:17px;}
#advertisment-publicing-entityform-edit-form .description strong {font-size:14px; color:#fff; line-height:17px; font-weight:bold;}
#advertisment-publicing-entityform-edit-form legend {font-size:12px; color:#fff; line-height:14px; font-weight:bold;}
#advertisment-publicing-entityform-edit-form fieldset {border:0 !important;}
#advertisment-publicing-entityform-edit-form .wysiwyg-toggle-wrapper a {margin-top:15px; font-size:12px; color:#89c7fe; line-height:14px; font-weight:bold;}
#advertisment-publicing-entityform-edit-form .filter-help a {margin-top:15px; font-size:12px; color:#89c7fe; line-height:14px; font-weight:bold;}
#advertisment-publicing-entityform-edit-form .cke_skin_kama {border:0 !important; background:#fff;}
#advertisment-publicing-entityform-edit-form select option {font-size:12px; color:#010101; line-height:14px;}
.image-widget-data .form-submit {margin-left:15px !important;}
#advertisment-publicing-entityform-edit-form .field-type-text {margin-bottom:15px;}

#field-advertising-text-add-more-wrapper {float:left; margin-bottom:20px;}
#field-more-details-add-more-wrapper {float:left; margin-bottom:20px;}
#edit-field-with-sound {float:left; width:100%; margin-bottom:20px;} 
#field-number-of-page-add-more-wrapper {float:left; margin-bottom:20px;} 

#edit-field-file-upload {float:left; width:100%; margin:20px 0;}

#edit-field-payment-method {margin-top:20px;}
#edit-field-payment-method input {float:left; height:16px; margin-right:8px;}
#edit-field-payment-method label {float:left; margin-right:15px;}

#edit-field-with-sound input {float:left; height:16px; margin-right:8px;}
#edit-field-with-sound label {float:left; margin-right:15px;}

.form-item-field-number-of-page-und-0-value input {float:left; margin-right:10px;}
.form-item-field-number-of-page-und-0-value label {float:left; margin-right:10px; margin-top:8px;}
.form-item-field-number-of-page-und-0-value span {color:#FAB400;}

#edit-field-file-upload-und-0-upload-button {margin:0 0 0 15px !important;}

/*
#edit-field-term-of-use {width:100%; margin-top:15px;}
*/
#edit-field-term-of-use .form-type-checkbox {float:left; margin-top:15px;}
#edit-field-term-of-use input {float:left; height:16px; margin-right:8px;}
#edit-field-term-of-use label {float:left; margin-right:15px;}

#edit-actions {float:left; margin-bottom:20px;}

.pre-intructions p {font-size:14px; color:#fff; line-height:17px; margin:0 !important; margin-bottom:25px !important;}

#hirdetes-node-form .tips {list-style:none;}
#hirdetes-node-form .tips li {font-size:12px; color:#89c7fe; line-height:14px; font-weight:bold;}

#edit-actions #edit-submit {margin-right:15px;}


ul.days {float:left; width:594px; height:90px; padding-left:7px; margin-bottom:20px; background:url(images/het_bgr.png) no-repeat; list-style:none;}
ul.days li {float:left; width:82px; height:49px; margin-top:3px; margin-right:2px;}
ul.days li a {display:block; height:49px; margin-top:-5px; padding-top:15px; font-size:11px; color:#fff; line-height:13px; text-align:center;}
ul.days li a span {display:block; margin-top:2px; font-size:14px; font-family:"Arial"; color:#fff; line-height:16px; font-weight:bold; text-align:center;}
ul.days li a.active {border-radius:8px; background:url(images/kis_shadow.png) no-repeat center bottom #fab400;}

.current-day {font-size:14px; color:#fff; line-height:16px;}
.current-day-name {font-size:18px; color:#fab400; line-height:20px; text-transform:uppercase; font-weight:bold;}

#poll-view-voting {float:left; width:600px; font-size:14px; color:#fff; line-height:17px;}
#poll-view-voting .inside {float:left; width:600px,}

.node-archivumba-video .field-type-text-with-summary {width:100%;}
.field-name-field-musor-kezdes {margin-top:20px;}
.field-name-field-tags {margin:15px 0; font-size:14px; color:#fff; line-height:16px; text-decoration:underline;}
.field-name-field-tags .field-item {display:inline; margin-right:8px;}

.not-front .field-name-field-video {display:block; float:left; width:100%; margin:15px 0; text-align:center;}
.video-js {width:600px !important; height:380px !important; margin:0 auto !important;}

.profile {font-size:14px; color:#fff; line-height:16px; }
.admin-menu form a { margin-top:15px; font-size:12px; color:#89c7fe; line-height:14px; font-weight:bold;}
.admin-menu #content article a {font-size:12px !important; color:#89c7fe !important; line-height:14px !important; font-weight:bold !important;}
.admin-menu a {font-size:12px; color:#89c7fe; line-height:14px; font-weight:bold;}

.panel-panel {width:100% !important;}
.panel-panel a {margin-top:15px; font-size:12px; color:#89c7fe; line-height:14px; font-weight:bold;}
.panel-panel ul {list-style:none;}
.panel-panel .form-submit {height:26px; width:auto; padding:3px 23px 0 23px; margin-bottom:20px; margin-top:5px; border:0; background:#fab400; font-size:18px; font-family:"myr_reg"; color:#030303; line-height:20px; text-transform:uppercase; box-shadow:none; -webkit-box-shadow:none;}


.view-musoraink > .view-content {float:right; width:579px; margin-top:-40px; padding-left:20px; padding-top:116px; height:693px !important; margin-left:25px; background:url(images/tv_full.png) no-repeat;}
.view-musoraink table {width:565px; margin:0 !important; padding:40px 0 60px 0; }
.view-musoraink table thead {height:30px; margin-top:-20px;}
.view-musoraink table tr {padding:0 15px;}
.view-musoraink table thead .views-field-field-program-time {font-size:14px; color:#fab400; line-height:16px;}
.view-musoraink table thead .views-field-title {background:#fab400; font-size:14px; color:#00274f; line-height:16px;}
.view-musoraink table tbody .views-field-field-program-time {margin-left:15px; background:#fab400; text-align:center;}

.view-musoraink table tbody {padding-bottom:50px;}
.view-musoraink table tbody .views-field-title a {padding-left:38px; font-size:14px; color:#fff; line-height:16px;}
.view-musoraink table tr {height:34px; background:transparent; border-bottom:1px solid #00264e;}
.view-musoraink table tr.timebreak {/*height:72px; background:url(images/timebreak.jpg) no-repeat;*/ border-top:12px solid #00264e;}

.no-sidebars #content {float:left !important; width:100% !important;}
.no-sidebars #main {width:925px; margin-left:20px;}

.view-archivum .table.views-view-grid {float:left; width:100%;}

.pager li a {font-size:14px; color:#fff; line-height:16px;}
.pager li.pager-current {color:#FAB400; font-size:14px; line-height:16px;}

.page-archivum #content {float:left;}
.page-archivum .view-archivum {float:left; width:100%;}

#content:after {clear:both;}
.view-archivum .view-content {float:left !important; width:100% !important; height:auto !important; margin-top:0px; background:transparent;}


.view-archivum .view-content table.views-view-grid {float:left; width:100% !important; margin-left:0 !important;}
.view-archivum .view-content table td {width:300px !important; height:310px !important; color:#fff;}
.view-archivum .view-content table td img {width:277px !important; height:144px; margin-left:7px;}
.view-archivum .view-content {background:transparent; }
.view-archivum .view-content .views-field-title {width:300px !important;}
.view-archivum .view-content .views-field-field-musor-kezdes {width:300px !important;}

.view-archivum .view-content table td .views-field-field-video {padding-top:6px; margin-bottom:14px; height:152px; background:url(images/teaser_bgr.png) no-repeat;}
.view-archivum .view-content table td a {height:45px; font-size:18px; color:#fff; line-height:20px; text-transform:uppercase; font-weight:bold;}
.view-archivum .view-content table td p {height:67px; overflow:hidden; margin:7px 0 !important; font-size:14px; color:#fff; line-height:16px;}
.view-archivum .view-content .field-item {margin:7px 0 !important; font-size:14px; color:#fff; line-height:16px;}
.view-archivum .view-content table td span {font-size:14px; color:#fff; line-height:16px;}
.view-archivum .view-content table td a {display:block;}
.view-archivum .view-content table td .field-type-text-with-summary {height:67px; overflow:hidden;}


#views-exposed-form-archivum-page .views-widget-filter-field_tags_tid {width:300px !important;}
#views-exposed-form-archivum-page .views-widget-filter-field_tags_tid select {width:293px !important;}

.yr-forecast-block-box {float:left; width:100%; height:40px;}
.yr-forecast-block-box h4 {float:left; }
.yr-symbols {float:right; width:auto; margin:18px 10px 0 0 !important;}

.views-exposed-form label {margin-bottom:4px; font-size:12px; color:#fff; line-height:14px; font-weight:bold;}
.view-teletext .view-content {float:left; width:100%; margin-top:30px; background:transparent;}
.views-slideshow-cycle-main-frame-row {text-align:center; background:transparent !important;}
.view-teletext .view-content img {width:600px; height:auto; margin:0 auto 20px auto;}

.views-slideshow-controls-bottom {text-align:center;}
.views-slideshow-controls-bottom a {font-size:14px; color:#fff; line-height:16px;}
.views-slideshow-controls-bottom a:hover {color:#FAB400; text-decoration:none;}
.views-slideshow-controls-text-pause {color:#FAB400; font-size:14px; line-height:16px;}

.view-partnereink .view-content {height:auto; margin-top:30px;}
.view-partnereink .view-content table {float:left; }
.view-partnereink .view-content table td {height:170px;}

.pager {float:left; width:100%; padding-left:0 !important; list-style:none; text-align:center;}
.pager li {display:inline;}

.tabs-primary {float:left; width:100%; padding-left:0; list-style:none;}
.tabs-primary li a {font-size:14px; color:#fff; line-height:16px;}
.tabs-primary li a.is-active {color:#FAB400; font-size:14px; line-height:16px;}

.search-results {font-size:14px; color:#fff; line-height:16px;}
.search-results a {font-size:12px !important; color:#89c7fe !important; line-height:14px !important; font-weight:bold !important;}
.page-search h2 {color: #FAB400; font-family: "myr_b"; font-size: 31px; font-style: italic; line-height: 33px;}

.views-exposed-form {float:left; height:260px;}
#views-exposed-form-archivum-page .views-exposed-form {float:left; height:200px;}

.node-article {float:left; display:block;}

.page-akciok .inside {margin-left:0 !important; text-align:left;}
.poll .vote-form .choices {float:left; display:block; width:100%;}
#edit-vote {margin-top:25px;}
.poll .vote-form input {float:left;}
.poll .vote-form label {float:left; margin-left:8px;}

.poll .vote-form .title {margin-bottom:20px;}
.page-akciok .links {float:left; padding-left:0;}

.poll .vote-form .form-item {float:left; width:100%; margin-bottom:8px;}


.more-link a, .view-footer a {color: #FAB400; font-size: 14px; font-style: italic; font-weight: bold; line-height: 16px;}

.section-kepujsag .views-exposed-form {height:70px;}


.view-musoraink .view-footer p {text-align:center; margin-top:10px; font-size:12px; color:#fff; line-height:14px;}
article.view-mode-full table {border-color:#fff; color:#fff; border-collapse:separate;}

#block-block-4 iframe {
  margin-top: -5px;
}

.poll input {margin-top:5px;}
.poll label {font-size:14px;}

.page__title {margin-bottom:0.75em;}

.comment_forbidden a {float:none !important;}

div.service-links .service-label {
  float: left;
  margin-right: 1em;
}

div.service-links li {
  float: left;
  list-style-type: none;
}

article.node-archivumba-video ul.links.inline {
  clear: both;
  margin-top: 5em;
}