/*
    _   ___ _  _     _    _ _           
   /_\ | _ ) || |___| |__| (_)_ _  __ _ 
  / _ \| _ \ __ / _ \ / _` | | ' \/ _` |
 /_/ \_\___/_||_\___/_\__,_|_|_||_\__, |
                                  |___/ 
                                  
Primary color: #5a7b34
Secondary color: #5baaab

*/

* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

a:link, a:visited {
    text-decoration:none;
    font-weight:bold;
    font-family: inherit;
    font-size: inherit;
    line-height:  inherit;
    color: inherit;
}
	
	a:link img , a:visited img {
	    border: 0px;
	}

	a:hover {
	    text-decoration: underline;
	}

	p a:link,
	p a:visited {
		text-decoration: underline;
		font-weight: normal;
		color: #0d3c68;
	}

	p a:hover {
		text-decoration: none;
	}

p {
    margin-top:7px;
    margin-bottom:7px;
    vertical-align: top;
}

ul {
   margin-left: 20px;
   font-size:11px;
}

b, i, u, form, fieldset, label, legend, strong, table, thead, tbody, th, td, tr,
ul, ol, li, center, a:link, a:visited, div, span {
   font-family: inherit;
   font-size: inherit;
   line-height:  inherit;
   color: inherit;
}

b, strong {
    font-weight: bold;
}


/* ================================================================== *\
   Buttons ($buttons)
\* ================================================================== */

.button {
    display: inline-block;
    margin: 0;
    padding: 0.563rem 0.844rem;
    border: 0 none;
    background: #e5e5e5;
    color: #444;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
    cursor: pointer;
}

.button:hover {
    background: #ececec;
    color: #222;
    cursor: pointer;
}

.button:active {
    background: #e7e7e7;
    -webkit-box-shadow: inset 0 0 6px hsla(0, 0%, 0%, 0.20);
    -moz-box-shadow:    inset 0 0 6px hsla(0, 0%, 0%, 0.20);
    box-shadow:         inset 0 0 6px hsla(0, 0%, 0%, 0.20);
}

.button:focus {
    outline: thin dotted #333;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.button.hollow {
    background: transparent;
    -webkit-box-shadow: inset 0 0 0 3px hsla(0, 0%, 92%, 1.0);
    -moz-box-shadow:    inset 0 0 0 3px hsla(0, 0%, 92%, 1.0);
    box-shadow:         inset 0 0 0 3px hsla(0, 0%, 92%, 1.0);
}

.button.hollow:hover {
    background: #ececec;
    -webkit-box-shadow: inset 0 0 0 3px hsla(0, 0%, 93%, 1.0);
    -moz-box-shadow:    inset 0 0 0 3px hsla(0, 0%, 93%, 1.0);
    box-shadow:         inset 0 0 0 3px hsla(0, 0%, 93%, 1.0);
}

.button.hollow:active {
    background: #e7e7e7;
    -webkit-box-shadow: inset 0 0 6px hsla(0, 0%, 0%, 0.20);
    -moz-box-shadow:    inset 0 0 6px hsla(0, 0%, 0%, 0.20);
    box-shadow:         inset 0 0 6px hsla(0, 0%, 0%, 0.20);
}

.button.chunky {
    -webkit-box-shadow: inset 0 -2px 0 hsla(0, 0%, 0%, 0.12);
    -moz-box-shadow:    inset 0 -2px 0 hsla(0, 0%, 0%, 0.12);
    box-shadow:         inset 0 -2px 0 hsla(0, 0%, 0%, 0.12);
}

.button.chunky:active {
    -webkit-box-shadow: inset 0 2px 3px hsla(0, 0%, 0%, 0.2);
    -moz-box-shadow:    inset 0 2px 3px hsla(0, 0%, 0%, 0.2);
    box-shadow:         inset 0 2px 3px hsla(0, 0%, 0%, 0.2);
}

.button.glossy {
    border: 1px solid #c5c5c5;
    background-image: -moz-linear-gradient(
        top,
        hsla(0, 0%, 100%, 1.0) 0%,
        hsla(0, 0%, 95%, 1.0) 50%,
        hsla(0, 0%, 88%, 1.0) 51%,
        hsla(0, 0%, 96%, 1.0) 100%
    ); /* FF 3.6+ */
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%,   hsla(0, 0%, 100%, 1.0)),
        color-stop(50%,  hsla(0, 0%, 95%, 1.0)),
        color-stop(51%,  hsla(0, 0%, 88%, 1.0)),
        color-stop(100%, hsla(0, 0%, 96%, 1.0))
    ); /* Chrome, Safari 4+ */
    background-image: -webkit-linear-gradient(
        top,
        hsla(0, 0%, 100%, 1.0) 0%,
        hsla(0, 0%, 95%, 1.0) 50%,
        hsla(0, 0%, 88%, 1.0) 51%,
        hsla(0, 0%, 96%, 1.0) 100%
    ); /* Chrome 10+, Safari 5.1+ */
    background-image: -o-linear-gradient(
        top,
        hsla(0, 0%, 100%, 1.0) 0%,
        hsla(0, 0%, 95%, 1.0) 50%,
        hsla(0, 0%, 88%, 1.0) 51%,
        hsla(0, 0%, 96%, 1.0) 100%
    ); /* Opera 11.10+ */
    background-image: -ms-linear-gradient(
        top,
        hsla(0, 0%, 100%, 1.0) 0%,
        hsla(0, 0%, 95%, 1.0) 50%,
        hsla(0, 0%, 88%, 1.0) 51%,
        hsla(0, 0%, 96%, 1.0) 100%
    ); /* IE 10+ */
    background-image: linear-gradient(
        to bottom,
        hsla(0, 0%, 100%, 1.0) 0%,
        hsla(0, 0%, 95%, 1.0) 50%,
        hsla(0, 0%, 88%, 1.0) 51%,
        hsla(0, 0%, 96%, 1.0) 100%
    ); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(
        startColorstr='#ffffff',
        endColorstr='#f6f6f6',
        GradientType=0
    ); /* IE 6-9 */
}

.button.glossy:hover {
    background-image: -moz-linear-gradient(
        top,
        hsla(0, 0%, 100%, 1.0) 0%,
        hsla(0, 0%, 98%, 1.0) 50%,
        hsla(0, 0%, 91%, 1.0) 51%,
        hsla(0, 0%, 99%, 1.0) 100%
    ); /* FF3.6+ */
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, hsla(0, 0%, 100%, 1.0)),
        color-stop(50%, hsla(0, 0%, 98%, 1.0)),
        color-stop(51%, hsla(0, 0%, 91%, 1.0)),
        color-stop(100%, hsla(0, 0%, 99%, 1.0))
    ); /* Chrome, Safari4+ */
    background-image: -webkit-linear-gradient(
        top,
        hsla(0, 0%, 100%, 1.0) 0%,
        hsla(0, 0%, 98%, 1.0) 50%,
        hsla(0, 0%, 91%, 1.0) 51%,
        hsla(0, 0%, 99%, 1.0) 100%
    ); /* Chrome10+, Safari5.1+ */
    background-image: -o-linear-gradient(
        top,
        hsla(0, 0%, 100%, 1.0) 0%,
        hsla(0, 0%, 98%, 1.0) 50%,
        hsla(0, 0%, 91%, 1.0) 51%,
        hsla(0, 0%, 99%, 1.0) 100%
    ); /* Opera 11.10+ */
    background-image: -ms-linear-gradient(
        top,
        hsla(0, 0%, 100%, 1.0) 0%,
        hsla(0, 0%, 98%, 1.0) 50%,
        hsla(0, 0%, 91%, 1.0) 51%,
        hsla(0, 0%, 99%, 1.0) 100%
    ); /* IE10+ */
    background-image: linear-gradient(
        to bottom,
        hsla(0, 0%, 100%, 1.0) 0%,
        hsla(0, 0%, 98%, 1.0) 50%,
        hsla(0, 0%, 91%, 1.0) 51%,
        hsla(0, 0%, 99%, 1.0) 100%
    ); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(
        startColorstr='#ffffff',
        endColorstr='#fafafa',
        GradientType=0
    ); /* IE6-9 */
}

.button.mini {
    padding: 0.238rem 0.563rem;
    font-size: 0.8125rem;
}

@media only screen and (min-width: 640px) {
    .button.mini {
        font-size: 0.75rem;
    }
}

.button.small {
    padding: 0.317rem 0.75rem;
    font-size: 0.875rem;
}

.button.large,
.button.block {
    padding: 1rem 1.333rem;
    font-size: 1.125rem;
    line-height: 1.333;
}

.button.block {
    display: block;
}

.button.rounded {
    -webkit-border-radius: 0.356rem;
    -moz-border-radius:    0.356rem;
    border-radius:         0.356rem;
}

.button.pill {
    -webkit-border-radius: 9999rem;
    -moz-border-radius:    9999rem;
    border-radius:         9999rem;
}

.button.disabled,
.button.disabled:hover,
.button.disabled:active,
.button[disabled] {
    background: #e6e6e6 !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow:    none !important;
    box-shadow:         none !important;
    color: #505050 !important;
    text-shadow: none !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
    opacity: 0.65;
    cursor: not-allowed !important;
}

.button.hollow.disabled,
.button.hollow.disabled:hover,
.button.hollow.disabled:active,
.button.hollow[disabled] {
    background: transparent !important;
    -webkit-box-shadow: inset 0 0 0 3px #eaeaea !important;
    -moz-box-shadow:    inset 0 0 0 3px #eaeaea !important;
    box-shadow:         inset 0 0 0 3px #eaeaea !important;
}

.button.primary,
.button.secondary {
    color: #fff;
    text-shadow: 1px 1px 1px hsla(0, 0%, 0%, 0.25);
}

.button.primary {
    background: #1FA3EC;
}

.button.primary:hover {
    background: #4CB3EC;
}

.button.secondary {
    background: #686868;
}

.button.secondary:hover {
    background: #787878;
}

.button.back_to_top {
    position: absolute;
    top: -1.333rem;
    right: 5%;
    padding: 0.75rem;
    -webkit-border-radius: 50%;
    -moz-border-radius:    50%;
    border-radius:         50%;
    background-color: #bb2122;
    text-align: center;
    text-decoration: none;
    line-height: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
    opacity: 0.75;
}

.button.back_to_top:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1.0;
}

.button_orange {
        background: none;
        border: 0px;
        height: 33px;
        padding: 0px 0px;
        cursor: pointer;
}

.button_orange span {
        background: url('../images/btn_left.png') no-repeat left top;
        height: 33px;
        display: block;
        padding: 0px 0px;
        padding-left: 6px;
}

.button_orange span span {
        background: url('../images/btn_right.png') no-repeat right top;
        height: 33px;
        display: block;
        padding: 0px 0px;
        padding-right: 21px;
}

.button_orange span span span {
        background: url('../images/btn_repeat.png') repeat-x left top;
        height: 33px;
        display: block;
        padding: 0px 5px;
        font: bold 13px/33px Arial;
        color: #644413;
        text-shadow: 0px 1px #f9cf7a;
}

.button_contacts {
        background: none;
        border: 0px;
        height: 33px;
        padding: 0px 0px;
        cursor: pointer;
}

.button_contacts span {
        background: url('../images/btn_left.png') no-repeat left top;
        height: 33px;
        display: block;
        padding: 0px 0px;
        padding-left: 6px;
}

.button_contacts span span {
        background: url('../images/btn_right.png') no-repeat right top;
        height: 33px;
        display: block;
        padding: 0px 0px;
        padding-right: 21px;
}

.button_contacts span span span {
        background: url('../images/btn_repeat.png') repeat-x left top;
        height: 33px;
        display: block;
        padding: 0px 5px;
        font: bold 11px/31px Arial;
        color: #644413;
        text-shadow: 0px 1px #f9cf7a;
}
/* ================================================================== *\
   Tables ($tables)
\* ================================================================== */

.table {
    max-width: 100%;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    empty-cells: show;
}

.table th,
.table tfoot td {
    color: #222;
    text-align: left;
    font-weight: bold;
}

.table thead th,
.table tfoot td  {
    background-color: #efefef;
}

.table th,
.table td {
    overflow: visible;
    padding: 0.633rem;
    vertical-align: top;
}

.table.border {
    border: 1px solid #d0d0d0;
}

.table.border_all th,
.table.border_all td {
    border-top: 1px solid #d0d0d0;
    border-left: 1px solid #d0d0d0;
}

.table.border_rows th,
.table.border_rows td {
    border-top: 1px solid #d0d0d0;
}

.table.border.border_all thead:first-child tr:first-child th,
.table.border.border_all thead:first-child tr:first-child td,
.table.border.border_rows thead:first-child tr:first-child th,
.table.border.border_rows thead:first-child tr:first-child td {
    border-top: 0;
}

.table.border_all tr th:first-child,
.table.border_all tr td:first-child {
    border-left: 0;
}

.table.border_all tr:first-child th,
.table.border_all thead:first-child tr:first-child th {
    border-top: 0;
}

.table.border_rows tr:last-child td {
    border-bottom: 1px solid #d0d0d0;
}

.table.stripe tbody > tr:nth-child(odd) > td {
    background-color: #f8f8f8;
}



	
.tal { text-align: left !important; }
.tac { text-align: center !important; }
.tar { text-align: right !important; }
.nom { margin: 0px 0px !important; }
.bold { font-weight: bold !important; }
.bigger { font-size: 120% !important; }
.smaller { font-size: 80% !important; }
.szin1 { color: #689047 !important; }
.szin2 { color: #CC9900 !important; }
.underline { text-decoration: underline !important; }
.linethrough { text-decoration: line-through !important; }
.block { display: block !important; }
.inline { display: inline !important; }
.alignLeft { float: left !important; display: inline !important; margin-right: 10px !important; margin-bottom: 10px !important; }
.alignCenter { text-align: center !important; display: block !important; margin-left:auto !important; margin-right:auto !important; margin-bottom: 10px !important; }
.alignRight { float: right !important; display: inline !important; margin-left: 10px !important; margin-bottom: 10px !important; }

.alignLeft,
.alignCenter,
.alignRight {
	background-color: #FFF;
	padding: 4px 4px;
	box-shadow: 4px 4px 0px #5baaab;
	-webkit-box-shadow: 4px 4px 0px #5baaab;
	-moz-box-shadow: 4px 4px 0px #5baaab;
	margin-top: 4px;
}

.alignLeft + p,
.alignCenter + p,
.alignRight + p {
	padding-top: 0px;
	margin-top: 0px;
}

.month_change {
    text-align: center;
    padding-top: 20px;
}

.month_prev:link, .month_prev:visited {
    background: no-repeat url('../images/month_prev.png') left top;
    width: 52px;
    height: 52px;
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    vertical-align: middle;
}
    .month_prev:hover {
        text-decoration: none;
        transform: scale(1.1,1.1);
        -ms-transform: scale(1.1,1.1);
        -webkit-transform: scale(1.1,1.1);
        -o-transform: scale(1.1,1.1);
        -moz-transform: scale(1.1,1.1);
    }

.month_name {
    font: normal 35px/60px Georgia, Arial;
    color:#3f6c72;
    font-style: italic;
    display: inline;
    vertical-align: middle;
    padding: 0px 30px;
}


.month_next:link, .month_next:visited {
    background: no-repeat url('../images/month_next.png') left top;
    width: 52px;
    height: 52px;
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    vertical-align: middle;
}
    .month_next:hover {
        text-decoration: none;
        transform: scale(1.1,1.1);
        -ms-transform: scale(1.1,1.1);
        -webkit-transform: scale(1.1,1.1);
        -o-transform: scale(1.1,1.1);
        -moz-transform: scale(1.1,1.1);
    }

div#naptar_holder th {
    background: repeat-x url('../images/naptar_th.png') left top;
    text-align: center;
    font: normal 18px/1.3em Georgia, Arial;
    color: #3f6c72;
    font-style: italic;
    padding: 7px 0px;
    width: 14.285%;
}

div#naptar_holder td {
    background-color: #e0efef;
    text-align: center;
    font: normal 25px/1.3em Georgia, Arial;
    color: #3f6c72;
    padding: 7px 0px 0px;
    width: 14.285%;
    height: 133px;
    border-bottom: 1px solid #FFF;
    border-right: 1px solid #FFF;
}

div#naptar_holder td.weekend {
    background-color: #f5e7e7;
}

.contactInfoBox .info {
    background-color: #f6eac0;
    border: 1px solid #f9ba0e;
    border-top: 7px solid #f9ba0e;
    padding: 8px 8px;
    font: 13px/20px Arial;
    color: #333333;
    width:538px;
    margin-top: 2px;
}

.contactInfoBox .info .contactInfoTitle:link,
.contactInfoBox .info .contactInfoTitle:visited {
/*        background: url('../images/icon-alert.png') no-repeat left top;*/
        font: bold 13px/20px Arial;
        color: #333333;
        padding-bottom: 10px;
        margin: 0px 0px 10px;
}

.couponInfoBox .info {
    background-color: #f6eac0;
    border: 1px solid #f9ba0e;
    border-top: 7px solid #f9ba0e;
    padding: 8px 8px;
    font: 13px/20px Arial;
    color: #333333;
    width:538px;
    margin-bottom: 2px;
}

.news .row {
    min-width: 540px !important;
}

.answerItem {
    vertical-align: top;
    padding: 3px;
}

/**************************
* Fizetesi felulet styles *
***************************/

.pay-body {
    background: #FFF repeat url('../images/bgr.jpg') 50% 0%;
    font: normal 14px/1.3em Arial;
    color: #3f6c73;
}

#pay-container-div {
   width: 981px;
   margin: 0 auto;
   background: repeat-y url('../images/bg_content.png') 50% 0px;
}

#pay-container-div legend{
   font-size: 18px;
}

.pay-subject-h1 {
    background: repeat-y url('../images/slider_bg.jpg') left top;
    width: 981px;
    height: 100px;
    font: normal 25px/1.3em Georgia, Arial;
    color: #406d74;
    padding: 0px 0px 30px 2px;
    padding-top: 30px;
    font-size: 40px;
    font-style: italic;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 0px;
}

.pay-content-div {
    padding: 30px;
    
}

.pay-description-div {
    
}

.pay-mode-radio {
    width: 30px;
    height: 30px;
    top: -30px;
    position: relative;
    margin-right: 30px;
}

.pay-type-radio {
    width: 15px;
    height: 13px;
    top: -30px;
}

#imageGallery {
    list-style : none !important;
    cursor: pointer;
}

/**************************
* Fizetesi felulet styles vege *
***************************/