/* Drupal 6 Framework - Created by Andre Griffin
------------------------------------------------
[Table of contents]

 0.Reset
 1.Global
 2.Layout
 3.Main
 4.Sidebars
 5.Header
 6.Navigation
 7.Nodes
 8.Comments
 9.Blocks
10.Footer
11.CSS Support

Font sizes: 16px base font with 24px line-height
------------------------------------------------
       font-size / line-height / margin-top
------------------------------------------------
40px = 2.5em     / 1.2         / 0.6em
32px = 2em       / 1.5         / 0.75em
24px = 1.5em     / 1           / 1em
20px = 1.25em    / 1.2         / 1.2em
16px = 1em       / 1..5        / 1.5em
14px = 0.875em   / 1.7143      / 1.7143em
13px = 0.8125em  / 1.8462      / 1.8462em
12px = 0.75em    / 2           / 2em
10px = 0.625em   / 2.4         / 2.4em

Equation for font sizing: 
  Desired px ÷ Default (or parent) px = em size
------------------------------------------------*/

/**
 * 0.RESET 
 */

@import "reset.css";

/**
 * 1.GLOBAL
 */
html {
}

body {
  color: #fff;
  font-family: 'Exo', sans-serif;
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  background: #270139 url(i/bg2.jpg) no-repeat top center;
  
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Exo', sans-serif;
  font-style: normal;
  font-weight: normal;
}

h1, .h1 {
  font-size: 2em;
  line-height: 1.5;
}

h2, .h2 {
  font-size: 1.5em;
  line-height: 1;
}

h3, .h3 {
  font-size: 1.25em; 
  line-height: 1.2;
  margin-top: 1.2em;
}

h4, h5, h6, .h4, .h5, .h6 {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 1.5em;
}

p {
  font-size: 16px;
  margin: 0 0 5px 0;
}

a { color: #fff; text-decoration: none; }

a:visited { color: #fff; }

a:hover, a:active, li a.active  { color: #fff; }

a:focus { outline: thin dotted; }

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

/* apply common styling after reset.css */

li ul, li ol {  margin: 0; }
ul, ol {  margin: 0 1.5em 1.5em 0;  padding-left: 1.5em; }
ul {  list-style-type: disc; }
ol {  list-style-type: decimal; }
dl {  margin: 0 0 1.5em 0; }
dl dt {  font-weight: bold; }
dd {  margin-left: 1.5em; }
hr {  background: #666;  border: none;  clear: both;  float: none;  height: 1px;  margin: 0 0 1.4375em;  width: 100%; }
fieldset {  border: 1px solid #ccc;  margin: 0 0 1.4375em;  padding: 1.5em; }
table {  margin-bottom: 1.5em;  width: 100%; }
th, tr, td {  vertical-align: middle; }
th { padding-right: 1em; }
.sticky-header th, .sticky-table th {  border-bottom: 3px solid #ccc;  padding-right: 1em;  text-align: left; }

/**
 * 2.LAYOUT
 */

#container {
  margin: 0 auto;
  padding: 0px;
  width: 980px;
}

#container-inner {
}

#container-close {
	margin: 0 auto;
	padding: 0px;
  width: 980px;
  height: 25px;
}

/**
 * 3.MAIN
 */

/* 1 column: global values*/

#main {
  margin: 0;
  margin-bottom:5px;
  padding: 0px;
  margin-top: 10px;
  background: url(i/body_bg.png) repeat;
  width: 980px;
}

/* 3 columns */

body.two-sidebars #main {
  float: left;
  margin: 0 0 0 240px;
  padding: 0;
  width: 460px;
}

/* 2 columns: sidebar-left */

body.sidebar-left #main {
  float: right;
  width: 700px;
}

/* 2 columns: sidebar-right */

body.sidebar-right #main {
  float: left;
  width: 655px;
  min-height: 500px;
  margin-top: 10px;
}

body #main .inner2 {width:98%;}
body.not-front #main .inner2 {padding-left:15px;}
body #main .inner2 .messages {padding-top:10px;}

h1.title {color:#fff;padding-top:15px;padding-bottom:20px;font-family: 'Exo';font-size: 24px;font-weight: bold;text-transform: uppercase;}

.not-front #main .content {color:#fff;}

.not-front #main .content p {line-height:22px;margin-bottom:15px;}

/**
 * 4.SIDEBARS
 */

/* 3 columns: sidebar-left */

body.two-sidebars #sidebar-left {
  float: left;
  margin: 0 0 0 -700px;
  padding: 0;
  width: 220px;
}

/* 3 columns: sidebar-right */

body.two-sidebars #sidebar-right {
  float: right;
  margin: 0;
  padding: 0;
  width: 220px;
}

/* 2 columns: sidebar-left */

body.sidebar-left #sidebar-left {
  float: left;
  margin: 0;
  padding: 0;
  width: 220px;
}

/* 2 columns: sidebar-right */

body.sidebar-right #sidebar-right {
  float: left;
  margin: 0;
  padding: 0;
  width: 240px;
  margin-top:10px;
  margin-left:7px;
}

.front #main {background: none;border:none;content: none;margin:0px;margin-top:6px;}
.front .tabs-wrapper.clearfix:after {content:".";}

/**
 * 5.HEADER
 */

#header {
  margin: 0;
  padding-top: 0px;
  position: relative;
  height: 87px;
}

#header #headlogocont {
	padding-top: 25px;
	padding-left: 1px;
	width: 430px;
	float: left;
}

#header #headsectioncont {
	float: right;
	width: 500px;
}

#header #logo {
  margin:0;
}

#header section {position: relative;margin:0;padding:0;}
#header section.block-locale h2 {display:none;}
#header section.block-locale ul {padding:0;margin-right:5px;margin-top:9px;}
#header section.block-locale ul li {float:left;background: none; list-style-type: none;list-style-image: none;margin: 0px 3px;border-right: 2px solid #83ba33;display:block;height:13px;}
#header section.block-locale ul li.last {border:none;}
#header section.block-locale ul li a {padding-right:4px;line-height: 10px;display:block;}
#header section.block-locale ul li a:hover {color:#000;}
#header section.block-locale ul li.active a {font-weight: bold;color:#000;}

#header #site-name-slogan {
  float: left;
  margin: 0 0 1.5em;
}

#header #site-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

#header #site-name a:hover {
  text-decoration: none;
}

#header #site-slogan {
  margin: 0;
}


#headimg .imgcont {width:980px;height:291px;margin-bottom:0px;}

#search-theme-form {
  float: right;
  margin: .7em 0 0;
}

/* hides "Search this site:" label from search forms */

div#edit-search-theme-form-1-wrapper label, 
div#edit-search-block-form-1-wrapper label {
  
}

.block.block-search {float:right;background: #eaeaea;height: 27px;}
.block.block-search label {text-transform: uppercase; font-family: 'Exo'; font-size: 13px;padding-left: 15px;padding-right:10px; color: #807d7d;font-weight: normal;}
.block.block-search .container-inline {margin-top:4px;padding-right: 5px;}
.block.block-search .container-inline #edit-search-block-form-1-wrapper {margin:0px;}
.block.block-search .container-inline input {border: none;}
.block.block-search .container-inline input.form-text {}
.block.block-search .container-inline input.form-submit {text-indent: -1000px; background: #fff;background: url(i/btn_search.jpg) no-repeat; cursor: pointer;}

/**
 * 6.NAVIGATION
 */

#header .block-nice_menus {
	  clear: both;
    content: ".";
    display: block;
     margin: 0;
  padding: 0;
  background: none;
  margin-bottom:4px;
}

#header .block-nice_menus ul.nice-menu {margin-left:0px;margin-top:50px;float:right;}
#header .block-nice_menus ul.nice-menu li {background: none; border: none;}

#header .block-nice_menus ul.nice-menu li a {padding-bottom:20px; line-height:16px; color:#fff;margin-top:0px;display:block;text-transform: uppercase;font-family: 'Exo';font-size:15px;padding-top:1px;padding-left:14px;padding-right:14px;}
#header .block-nice_menus ul.nice-menu li a span {font-size: 10px;}
#header .block-nice_menus ul.nice-menu li a:hover,
#header .block-nice_menus ul.nice-menu li.active-trail a {margin:0px;color:#e8dcea;}

#header .block-nice_menus ul.nice-menu li.menuparent {}
#header .block-nice_menus ul.nice-menu li.menuparent ul {background: #19516f url(i/bg_submenu.html) no-repeat top left; opacity: 0.8;margin-top: -5px;padding-top: 20px;padding-bottom:5px;border:none;}
#header .block-nice_menus ul.nice-menu .menuparent.last ul {background: #19516f url(i/bg_submenu_last.html) no-repeat top right; margin-left: -72px;}
#header .block-nice_menus ul.nice-menu li.menuparent ul li a {color: #fff;text-indent: 5px;padding-bottom:10px;}
#header .block-nice_menus ul.nice-menu li.menuparent ul li a:hover,
#header .block-nice_menus ul.nice-menu li.menuparent ul li.active-trail a {margin:0px;color:#f3766f; background: url(i/arrow_submenu.png) no-repeat 5px 3px;}

#navigation {
  clear: both;
  margin: 0;
  padding: 0;
}

#navigation ul#main-menu {
  clear: both;
  list-style: none;
  margin: 0;
  padding: 0;
}

#navigation ul#main-menu li {
  float: left;
  margin: 0;
  padding: 0;
}

#navigation ul#main-menu li a {
  display: block;
  padding: 0 2em 0 0;
}

#navigation ul#secondary-menu {
  clear: both;
  list-style: none;
  margin: 0;
  padding: 0;
}

#navigation ul#secondary-menu li {
  float: left;
  margin: 0;
  padding: 0;
}

#navigation ul#secondary-menu li a {
  display: block;
  padding: 0 2em 0 0;
}

.breadcrumb {
  clear: both;
  padding: 12px 0px;
  color: #0a557d;
  font-size: 11px;
  font-weight: bold;
}

.breadcrumb a {color:#c6c6c6;}


#skip-link {
  position: absolute;
}

/* menus and item lists */

.item-list ul {
  margin: 0;
  padding: 0 0 0 1.5em;
}

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

ul.links li {
  margin: 0;
  padding: 0;
}

ul.inline {
  clear: both;
}

ul.inline li {
  margin: 0;
  padding: 0 1em 0 0;
}

/* admin tabs */

.tabs-wrapper {
  border-bottom: 1px solid #333;
  margin: 0 0 1.4375em;
}

ul.primary {
  border: none;
  margin: 0;
  padding: 0;
}

ul.primary li a {
  background: none;
  border: none;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0;
  padding: 0 1em;
}

ul.primary li a:hover, ul.primary li a.active {
  background: #666;
  border: none;
  color: #fff;
}

ul.primary li a:hover {
  background: #888;
  text-decoration: none;
}

ul.secondary {
  background: #666;
  border-bottom: none;
  clear: both;
  margin: 0;
  padding: 0;
}

ul.secondary li {
  border-right: none;
}

ul.secondary li a, ul.secondary li a:link {
  border: none;
  color: #ccc;
  display: block;
  float: left;
  line-height: 1.5em;
  padding: 0 1em;
}

ul.secondary li a:hover, ul.secondary li a.active {
  background: #888;
  color: #fff;
  text-decoration: none;
}

ul.secondary a.active {
  border-bottom: none;
}

/**
 * 7.NODES
 */

.node {
  margin-bottom: 1.5em;
}

/* tags */

.terms {
  margin: 0 0 1.5em;
}

.terms span {
  font-weight: bold;
}

/* profile */

.profile {
  margin: 1.5em 0;
}

.profile h3 {
  border: none;
}

.profile dt {
  margin-bottom: 0;
}

.profile dd {
  margin-bottom: 1.5em;
}

/**
 * 8.COMMENTS
 */

#comments {
  clear: both;
  margin-top: 1.5em;
}

.comment {
  margin-bottom: 1.5em;
}

.comment .new {
  color: red;
  text-transform: capitalize;
  margin-left: 1em;
}

/**
 * 9.BLOCKS
 */

.block {
  margin-bottom: -7px;
  position: relative;
}

.block p {
  margin-bottom: 0px;
}

/* login block */
#user-login-form {
  padding: 0;
  text-align: left;
}

#user-login-form .form-item {
  margin: 1em 0;
}

#user-login-form .item-list ul li {
  background: none;
  margin: 1em 0;
  padding: 0;
}

/* block configuration links */

section.block div.edit {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  display: none;
  font-size: 9px;
  margin: 0;
  overflow: hidden;
  padding: 2px 0 2px 10px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 40;
}

section.block:hover div.edit {
  display:block;
}

#header section.block:hover div.edit {display:none;}

section.block div.edit a {
  color: #999;
  margin-right: 10px;
}

section.block div.edit:hover a {
  color: #000;
}

/* views configuration links */

div.view {
  position: relative;
}

div.view div.views-hide-hover,
div.view:hover div.views-hide,
div.view div.views-admin-links,
div.view div.views-admin-links-hover,
div.view div.views-admin-links:hover {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  font-size: 9px;
  margin-right: 0;
  margin-top: 0;
  padding: 0;
  padding-left: 10px;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

div.view div.views-admin-links li a {
  color: #999;
}

/**
 * 10.FOOTER
 */

.front #footer {
  height:50px;
  padding-top: 0px;
}

#footer a.feed-icon {
  position: absolute;
  right: 0;
  top: 1.6667em;
}

#footer section {padding-top:0px;margin:0;}
#footer #block-menu-secondary-links {text-align: center;}
#footer #block-menu-secondary-links h2 {display:none;}
#footer #block-menu-secondary-links ul {text-align: center;padding: 5px 10px;}
#footer #block-menu-secondary-links ul li {text-align: center;display: inline; background: none; list-style-type: none; list-style-image: none;margin:0;}
#footer #block-menu-secondary-links ul li a {color:#fecc00;font-size: 11px;padding-right: 10px; border-right: 1px solid #fecc00;}
#footer #block-menu-secondary-links ul li.last a {border:none;}

#footer section {padding-top:0px;margin:0;float:left;width:50%;margin-top:5px;}
#footer section#block-block-9 {text-align: left;}
#footer section#block-block-9 .content {padding: 6px 0px;color:#858282;font-size: 13px;}
#footer #block-menu-menu-footerlinks {text-align: right;}
#footer #block-menu-menu-footerlinks h2 {display:none;}
#footer #block-menu-menu-footerlinks ul {text-align: right;padding: 5px 0px;}
#footer #block-menu-menu-footerlinks ul li {text-align: center;display: inline; background: none; list-style-type: none; list-style-image: none;margin:0;}
#footer #block-menu-menu-footerlinks ul li a {color:#858282;font-size: 13px;padding: 0px 6px;}


/* support drupal */
#footer #block-system-0 {
  position: absolute;
  right: 25px;
  top: 1.6667em;
}

/**
 * 11.CSS SUPPORT
 */

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user.
 */

.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 * "!important" is used to prevent unintentional overrides.
 */

.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

/**
 * The .element-focusable class extends the .element-invisible class to allow
 * the element to be focusable when navigated to via the keyboard.
 */

.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus {
  position: static !important;
  clip: auto;
}

/**
 * Markup free clearing.
 *
 * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
 */

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

/* IE6 */

* html .clearfix {
  height: 1%;
}

/* IE7 */

*:first-child + html .clearfix {
  min-height: 1%;
}

/* clear floats */
.clear { clear: both; }

/* display block */
.display-block { display: block; }

.panel-2col-stacked .panel-col-first {width: 735px;}
.panel-2col-stacked .panel-col-last {width: 240px;}
.panel-2col-stacked .panel-col-last .inside {margin:0px;}

body.node-type-webform .content p {margin-left:100px;}

.webform-client-form {width:765px;margin-left:100px;}
.webform-client-form .webform-component,.webform-client-form .form-actions {float:left;width:100%;margin-bottom:5px;}
.webform-client-form .form-item label {font-weight:normal;font-size:17px;}
.webform-client-form .form-item div label {font-weight:normal;font-size:15px;}

.webform-client-form .webform-container-inline label {display:block;float:left;width:200px;}
.webform-client-form .webform-container-inline select,
.webform-client-form .webform-container-inline .form-text
{display:block;float:left;width:540px;margin-left:0px;border:1px solid #370840;background:#dacdde;padding:2px;color:#5b5b5b;}

.webform-client-form textarea {border:1px solid #370840;background:#dacdde;padding:2px;color:#5b5b5b;}

.webform-client-form #webform-component-milyen-zenei-stilusokra-lenne-igeny .form-item{float:left;margin-right:20px;}
.webform-client-form #webform-component-kert-hang-es-latvanyelemek .form-item{float:left;margin-right:40px;}

.webform-client-form  .form-checkboxes {margin:0px;}

.webform-client-form #webform-component-rendezveny-datuma select {width:178px;margin-right:3px;}

.webform-client-form #webform-component-amire-meg-szuksegem-van .form-item{float:left;margin-right:70px;}

.webform-client-form .form-actions {text-align:center;}
.webform-client-form .form-actions input.form-submit {text-align:center;border:1px solid #370840;background:#dacdde;padding:10px 200px;color:#521e5a;font-size:21px;font-weight:bold;font-family:'exo';}

.view.view-gallery .views-row {float:left;width:130px;margin-right:10px;}
.view.view-gallery .views-row span{line-height: 14px;}
.view.view-gallery .views-row img{margin-left: 0px;}


.webform-client-form .marker,.webform-client-form .form-required {color:#864390;}

body footer {margin-top:0px;}
