
/* file: style_datepicker_v20100503.css */

/* This is a very basic stylesheet for the date-picker. Feel free to create your own. */

/* The wrapper div */
div.datePicker
        {
        position:absolute;
        min-width:24em;
        width:24em;
        z-index:9999;
        text-align:center;

        /* Change the font-size to suit your design's CSS. The following line is for the demo that has a 12px font-size defined on the body tag */
        font:900 0.8em/0.8em Verdana, Sans-Serif;
        
        /* For Example: If using the YUI font CSS, uncomment the following line to get a 10px font-size within the datePicker */
        /* font:900 77%/77% Verdana; */

        background:transparent;

        /* Mozilla & Webkit extensions to stop text-selection. Remove if you wish to validate the CSS */
        -moz-user-select:none;
        -khtml-user-select:none;
        }
/* Styles for the static datePickers */
div.staticDP
        {
        position:relative;
        top:5px;
        left:0;
        }
/* The iframe hack to cover selectlists in Internet Explorer <= v6 */
iframe.iehack
        {
        position:absolute;
        background:#fff;
        z-index:9998;
        padding:0;
        border:0;
        display:none;
        margin:0;
        }
/* The "button" created beside each input for non-static datePickers */
a.date-picker-control:link,
a.date-picker-control:visited,
a.date-picker-control:hover,
a.date-picker-control:active,
a.date-picker-control:focus
        {
        /*position:relative;*/
        /* Moz & FF */
        display: -moz-inline-stack;
        border:0 none;
        padding:0;
        margin:0 0 0 4px;
        background:transparent url(http://static.fokk.hu/images/datepicker/cal.gif) no-repeat 50% 50%;
        min-width:16px;
        line-height:1;
        cursor:pointer;
        visibility:visible;
        text-decoration:none;
        vertical-align:middle;
        }
/* Feed IE6 the following rule, IE7 should handle the min-width declared above */
* html a.date-picker-control
        {
        width:16px;
        }
a.date-picker-control
        {
        /* IE, Safari & Opera. Seperate CSS rule seems to be required. */
        display:inline-block;
        }
a.date-picker-control span
        {
        display:block;
        width:16px;
        height:16px;
        margin:auto 0;
        }
/* The next & previous buttons */
div.datePicker th span
        {
        display:inline;
        padding:0;
        margin:0;
        color:#000;
        text-align:center;
        line-height:1em;
        border-width:0;
        font-family: georgia, times new roman, palatino, times, bookman, serif;
        background:transparent;
        font-weight:bold;
        cursor:pointer;
        }
div.datePicker th span.month-display,
div.datePicker th span.year-display
        {
        text-transform:uppercase;
        letter-spacing:1px;
        font:normal 1.2em Verdana, Sans-Serif;
        cursor:default;
        }
div.datePicker th span.prev-but,
div.datePicker th span.next-but
        {
        font-size:1.8em;
        cursor:pointer !important;
        }

div.datePicker th span.today-but
        {
        text-align:center;
        margin:0 auto;
        font:normal 1em Verdana, Sans-Serif;
        width:100%;
        text-decoration:none;
        line-height:1.6em;
        text-transform:uppercase;
        cursor:pointer !important
        }
div.datePicker thead th span.fd-disabled
        {
        color:#aaa;
        cursor:default !important;
        }
/* The mon, tue, wed etc day buttons */
div.datePicker th span.fd-day-header
        {
        text-align:center;
        margin:0 auto;
        font:900 1em Verdana, Sans-Serif;
        height:1.4em;
        width:2em;
        text-decoration:none;
        text-transform:lowercase;
        line-height:1.4em;
        }
/* The table */
div.datePicker table
        {
        position:relative;
        margin:0;
        padding:0;
        border:1px solid #ccc;
        background:#fff url(http://static.fokk.hu/images/datepicker/gradient-e5e5e5-ffffff.gif) repeat-x 0 -20px;
        text-align:center;
        width:100%;
        border-spacing:2px;
        table-layout:fixed;
        border-collapse:separate;
        }
/* Common TD & TH styling */
div.datePicker table td
        {
        border:1px solid #ccc;
        padding:0;
        text-align:center;
        vertical-align:middle;
        /* Opera requires a line-height bigger than 1em in order to redraw properly */
        line-height:1.2em;
        cursor:pointer;
        background:#fff url(http://static.fokk.hu/images/datepicker/gradient-e5e5e5-ffffff.gif) repeat-x 0 -40px;
        width:3em;
        height:3em !important;
        height:2.8em;
        outline:none;
        }
div.datePicker table th
        {
        border:0 none;
        padding:0;
        line-height:1em;
        font-weight:bold;
        color:#222;
        text-align:center;
        vertical-align:middle;
        }
div.datePicker table td.date-picker-unused
        {
        background:#fff url(http://static.fokk.hu/images/datepicker/backstripes.gif);
        border-color:#dcdcdc;
        padding:0;
        cursor:default !important;
        }
div.datePicker table thead th.date-picker-title
        {
        width:auto;
        height:auto;
        padding:0.4em 0;
        }
/* The "mon tue wed etc" day header button styles */
div.datePicker table th.date-picker-day-header
        {
        text-transform:lowercase;
        width:3em;
        }
div.datePicker table th.date-picker-day-header span
        {
        display:block;
        }
/* The "todays date" style */
div.datePicker table td.date-picker-today
        {
        background:#fff url(http://static.fokk.hu/images/datepicker/bullet2.gif) no-repeat 0 0;
        color:rgb(100,100,100) !important;
        }
/* The "selected date" style */
div.datePicker table td.date-picker-selected-date
        {
        color:#333 !important;
        border-color:#333 !important;
        }
/* the "highlight days" style */
td.date-picker-highlight
        {
        color:#a86666;
        }
/* The date "out of range" style */
div.datePicker table td.out-of-range
        {
        color:#ccc !important;
        font-style:oblique;
        background:#fcfcfc !important;
        cursor:default !important;
        }
/* The "disabled days" style */
div.datePicker table td.day-disabled
        {
        color:#aaa !important;
        background:transparent !important;
        cursor:default !important;
        }
/* The "active cursor" style */
div.datePicker table tbody td.date-picker-hover
        {
        background:#fff url(http://static.fokk.hu/images/datepicker/bg_header.jpg) no-repeat 0 0;
        cursor:pointer;
        border-color:rgb(100,130,170);
        color:rgb(100,130,170);
        }
/*
   Quirksmode necessity?
   ---------------------

   If your HTML document renders in quirksmode (i.e. has no doctype declaration)
   then uncomment the following CSS rule to set a less drastic font-size in IE

div.datePicker table th,
div.datePicker table td
        {
        font-size:100%;
        }
*/

/* Remove the images for Internet Explorer <= v6 using the "* html" hack */
* html div.datePicker table td
        {
        background-image:none;
        }
* html div.datePicker table td.date-picker-unused
        {
        background:#f2f2f2;
        }




/* file: style_skin1_v20100503.css */

/* general  */

body {
  background-color: black;
  background-image: url(http://static.fokk.hu/images/skin1/background_1.jpg);
  background-repeat: repeat-y;
  background-position: -1px 0;
  font-family: Trebuchet MS, Verdana, Arial, sans-serif;
  font-size: 13px;
  margin:  0;
  padding: 0;
  color: #6a2f00;
}

ul { margin: 0; padding: 0; list-style-type: none; }
li { margin: 0; padding: 0; list-style-type: none; }

.rb      { border: 1px solid red; }
img      { margin: 0; padding: 0; border: 0; }
img.leftalign { margin: 0 10px 10px 0; float: left; }
img.rightalign { margin: 0 0 10px 10px; float: right; }
a        { color: #c92000; }
a:hover  { color: #d93010; }
td       { vertical-align: top; }
th       { text-align: left; }

.clear          { display: block; clear: both; }
.left           { float: left; }
.right          { float: right; }
.center         { text-align: center; }
.bold           { font-weight: bold; }
.leftaligned    { text-align: left; }
.rightaligned   { text-align: right; }
.overflowscroll { overflow: auto; }

.noborder {
  border: 0;
  padding: 0;
  margin: 0;
  _background: none;
}

.tabular {
  clear: right;
  float: left;
}

.tabular td {
  vertical-align: top;
  padding: 2px;
}

.w100p { width: 100%; }
.w770  { width: 770px; }
.w650  { width: 650px; }
.w600  { width: 600px; }
.w580  { width: 580px; }
.w500  { width: 500px; }
.w450  { width: 450px; }
.w400  { width: 400px; }
.w350  { width: 350px; }
.w330  { width: 330px; }
.w300  { width: 300px; }
.w270  { width: 270px; }
.w250  { width: 250px; }
.w220  { width: 220px; }
.w200  { width: 200px; }
.w180  { width: 180px; }
.w150  { width: 150px; }
.w140  { width: 140px; }
.w130  { width: 130px; }
.w120  { width: 120px; }
.w100  { width: 100px; }
.w80   { width: 80px; }
.w70   { width: 70px; }
.w60   { width: 70px; }
.w50   { width: 50px; }
.w30   { width: 30px; }
.w20   { width: 20px; }

.help, .countdays { cursor: help; }

#container { 
  width: 1008px; 
  padding: 0; 
  margin:  0; 
  float: left; 
  clear: both; 
}

#browseralert {
  display: block;
  text-decoration: none;
  width: 100%;
  background: #FFEEDD url(http://static.fokk.hu/images/smallwarning2.gif) 5px 3px no-repeat; 
  padding: 4px 4px 4px 22px; 
  border-bottom: 1px solid #999; 
  font-size: 12px; 
  color:#666; 
  font-family: Verdana;
}

#browseralert span {
  text-decoration: underline;
}

/* header: user header */

#userheader {
  background-color: black;
  height: 40px;
  width: 988px;
  clear: both;
  padding: 10px;
  float: left;
}

#userheader, #userheader a {
  color: white;
}

#userheader #userinfo {
  margin: 0 0 0 5px;
  width: 290px;
  overflow: hidden;
  float: left;
}

#userheader #userinfo a {
  text-decoration: none;
}

img.miniavatar {
  float: left;
  max-height: 40px;
  margin: 3px 10px 0 0;
}

#userheader #userinfo .welcome {
  color: #f5ac2a;
  font-size: 12px;
}

#userheader #userinfo #homeicon {
  padding-top: 2px;
  vertical-align: top;
}

#userheadernonmember {
  background-color: black;
  height: 80px;
  width: 978px;
  clear: both;
  padding: 5px 10px 8px 20px;
  float: left;
  font-size: 12px;
}

#userheadernonmember a {
  color: white;
}

#userheadernonmember .welcome {
  color: #f5ac2a;
}

#userheadernonmember #slogan {
  width: 175px;
  float: left;
  color: white;
}

#userheadernonmember #slogan img {
  margin: 7px 0 3px 20px;
}

#userheadernonmember #sitedescription {
  width: 570px;
  float: left;
  color: #f5ac2a;
  margin-top: 15px;
}

#userheadernonmember #sitedescription .hithere {
  color: white;
  font-size: 25px;
  font-weight: bold;
  float: left;
  margin: 0 15px 0 0;
}

#userheadernonmember #sitedescription div {
  float: right;
  margin-top: 5px;
}

#userheadernonmember #basiclinks {
  margin-top: 13px;
  width: 200px;
  float: right;
}

#footer ul, #userheader ul , #userheadernonmember ul {
  display: block;
  list-style-type: none;
  float: left;
  margin: 0 15px 0 0;
}

#footer li, #userheader li, #userheadernonmember li {
  margin: 0;
  display: block;
  float: left;
  clear: left;
  padding: 0 0 0 15px;
  background-image: url(http://static.fokk.hu/images/skin1/listitem_red.png);
  background-repeat: no-repeat;
  background-position: 5px 8px;
}

#footer li a, #userheader li a {
  text-decoration: none;
  font-size: 12px;
}

#footer li a:HOVER, #userheader li a:HOVER {
  text-decoration: underline;
}

#userheader #userinfo .name {
  color: white;
  font-size: 15px;
}

/* header, footer */

#siteheader {
  height: 285px;
  width: 988px;
  background-image: url(http://static.fokk.hu/images/skin1/header_1.png);
  background-image: url(http://static.fokk.hu/images/headers/01_ul.jpg);
  background-repeat: no-repeat;
  clear: both;
  padding: 7px 0 0 20px;
  margin: 0 0 10px 0;
  cursor: pointer;
}

#siteheader.mediumtop    { height: 205px; }
#siteheader.mediumcenter { height: 205px; background-position: 0 -40px; }
#siteheader.mediumbottom { height: 205px; background-position: 0 -80px; }
#siteheader.smalltop     { height: 130px; }
#siteheader.smallcenter  { height: 130px; background-position: 0 -80px; }
#siteheader.smallbottom  { height: 130px; background-position: 0 -155px; }
#siteheader.hidden       { height: 0px; margin: 0 0 10px 0; }

#siteheader #logo { 
  padding:  0; 
  margin:   0; 
  position: relative; 
  width:    315px; 
  height:   215px; 
  background-image: url(http://static.fokk.hu/images/skin1/logo.png);
  cursor: pointer;
  display: none;
}

#legal {
  padding: 5px;
  font-size: 11px;
  margin-bottom: 10px;
  width: 600px;
} 

#footer {
  clear: both;
  display: block;
  float: left;
  width: 993px;
  margin: 15px 0 -10px 0;
  padding: 43px 0 14px 15px;
  background-image: url(http://static.fokk.hu/images/skin1/footer.png);
}

/*
  abottom: 0;
  aleft: 0;
  aposition: absolute;
*/

#footer a {
  color: white;
  text-decoration: none;
} 

#footer a:hover {
  text-decoration: underline;
}

#footer #copyright { 
  width: 500px; 
  font-size: 12px; 
  font-weight: bold; 
  float: left; 
  color: #f8b531;
  margin: 9px 0 0 20px;
}

#footer #rss {
  width: 180px;
  float: left;
  font-size: 12px;
  color: #f8b531;
  margin-left: 15px;
}

#footer #rss div {
  clear: none;
  float: left;
}

#footer #rss img {
  margin-right: 8px;
}

#footer #rss h2 {
  font-size: 13px;
  color: white;
  margin: 0;
}

/* search box */

#container #menucontainer {
  width: 193px;
  float: left;
}

#container #menucontainer #searchbox {
  background: url(http://static.fokk.hu/images/skin1/searchbox_background.png);
  display: block;
  float: left;
  clear: both;
  width:  180px;
  height: 104px;
  padding: 0px 0 0px 0;
}

#container #menucontainer #searchbox input#query {
  width: 114px;
  border: 0;
  background-color: white;
  font-size: 14px;
  padding: 2px 0 0 0;
  float: left;
  font-family: Arial;
  font-size: 15px;
  font-weight: bold;
  color: black;
  clear: both;
  margin: 24px 0 0 14px;
  margin-bottom: 0px;
}

#container #menucontainer #searchbox #searchboxcombo {
  clear: none;
  position: relative;
  float: left;
  margin: 17px 0 0 9px;
  height: 16px;
  width: 116px;
  padding: 0px;
  border: none;
  color: #d0d0d0;
  background-color: black;
}

#container #menucontainer #searchbox #searchboxsubmit {
  background: none;
  border:     none;
  float: left;
  margin: 8px 0 0 4px;
}

/* alert message box */
div.alertmessage {
  background-image: url(http://static.fokk.hu/images/skin1/content_messagebar_background.png);
  float: left; 
  color: black;
  width: 764px; 
  margin: 0 0 15px 0;
  font-size: 19px;
  font-weight: bold;
  height: 74px;
  padding: 20px 10px 10px 20px;
  position: relative;
}

div.alertmessage img {
  float: left;
  margin: 0 15px 0 0;
}

div.alertmessage div.alertmessagebottom {
  background-image: url(http://static.fokk.hu/images/skin1/content_messagebar_bottom_background.png);
  position: absolute;
  left: 6px;
  text-align: center;
  color: #dfd8cd;
  font-size: 12px;
  top: 52px;
  padding-top: 14px;
  height: 30px;
  width: 784px;
  z-index: 1;
}

div.alertmessage a#setprofile {
  width: 205px;
  height: 37px;
  display: block;
  position: absolute;
  top: 10px;
  left: 285px;
  text-align: center;
  margin: 0 auto 0 auto;
  padding-top: 12px;
  font-size: 15px;
  text-decoration: none;
  background-image: url(http://static.fokk.hu/images/skin1/content_messagebar_centerbutton_background.png);
  background-repeat: no-repeat;
  z-index: 2;
}

div.alertmessage a#setprofile:hover {
  color: black;
  background-position: 0 -49px;
}

div.alertmessage div.alertmessagebottom a {
  color: #c59642;
}

/* main menu */
ul#menu {
  display: block;
  width: 173px;
  background: none;
  clear: both;
  margin: 0;
  padding: 0;
}

ul#menu li {
  display: block;
  float: left;
  list-style-type: none;
  padding: 8px 0 0 45px;
  margin: 0;
  width: 128px;
  height: 31px;
  background-image: url(http://static.fokk.hu/images/skin1/menu_hu_empty.png);
  background-repeat: no-repeat;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  color: white;
}

ul#menu li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  color: white;
}

ul#menu li a.menuitem {
  display: block;
  margin-top: 4px;
}

ul#menu li a:HOVER {
  color: #ffff00;
}

ul#menu li#menugroups    { background-position: 0 0; }
ul#menu li#menublogs     { background-position: 0 -39px; }
ul#menu li#menugalleries { background-position: 0 -78px; }
ul#menu li#menuprograms  { background-position: 0 -117px; }
ul#menu li#menulinks     { background-position: 0 -156px; }
ul#menu li#menuforum     { background-position: 0 -195px; }

ul#menu li.open {
  float: left;
  height: auto;
}

ul#menu li.open div.menubodytop { 
  clear: both;
  float: left;
  margin: 11px 0 0 -45px;
  padding: 0;
  width:  170px; 
  height: 12px; 
  background-image: url(http://static.fokk.hu/images/skin1/menu_bodytop.png); 
  background-repeat: no-repeat;
}

ul#menu div.menubody { 
  clear:   both;
  float:   left;
  margin:  0 0 0 -45px;
  padding: 0 0 0 0;
  width:   170px; 
  background-image: url(http://static.fokk.hu/images/skin1/menu_bodybackground.png); 
  background-repeat: repeat-y;
}

ul#menu ul.submenu {
  margin: 0px 0px 0px 20px;
  padding: 0;
  float: left;
  clear: both;
}

ul#menu ul.submenu li {
  display: block;
  float: left;
  clear: both;
  background: none;
  padding: 0;
  margin:  0;
  height:  15px;
  line-height: 14px;
}

ul#menu ul.submenu li a {
  font-size: 12px;
  text-transform: none;
}

ul#menu h2.menucategorytop { 
  clear: both;
  float: left;
  margin: 0px 0 0 -45px;
  padding: 22px 0 0 20px;
  width:  170px; 
  height: 30px;
  font-size: 16px;
  background-image: url(http://static.fokk.hu/images/skin1/menu_categorytop.png); 
  background-repeat: no-repeat;
}

ul#menu div.menucategory { 
  clear:   both;
  float:   left;
  margin:  0 0 0 -45px;
  padding: 0 0 0 0;
  width:   170px; 
  background-image: url(http://static.fokk.hu/images/skin1/menu_categorybackground.png); 
  background-repeat: repeat-y;
}

ul#menu div.menucategory a {
  font-weight: normal;
}

ul#menu div.menucategory a.active {
  font-weight: bold;
  font-size: 1.2em;
}

ul#menu div.menucategory li {
  height: auto;
  padding: 0 0 0 20px;
  margin:  0;
  font-size: 12px;
  background-image: url(http://static.fokk.hu/images/skin1/listitem_white_tiny.png);
  background-position: 11px 7px;
  background-repeat: no-repeat;
}

ul#menu div.menucategory li a {
  text-transform: none;
  font-size: 12px;
}

ul#menu a.menucategorybottom { 
  clear: both;
  float: left;
  margin: 0px 0 0 -45px;
  padding: 10px 0 0 20px;
  text-transform: none;
  width:  170px; 
  height: 25px;
  font-size: 15px;
  background-image: url(http://static.fokk.hu/images/skin1/menu_categorybottom.png); 
  background-repeat: no-repeat;
}

ul#menu li#menugroups.open    div.menubodytop      { background-position: 0 -1px; }
ul#menu li#menugroups         div.menubody         { background-position: 0 0; }
ul#menu li#menugroups.open    h2.menucategorytop   { background-position: 0 0; }
ul#menu li#menugroups         div.menucategory     { background-position: 0 0; }
ul#menu li#menugroups.open    a.menucategorybottom { background-position: 0 0; }
                                                   
ul#menu li#menugalleries.open div.menubodytop      { background-position: -386px -1px; }
ul#menu li#menugalleries      div.menubody         { background-position: -386px 0; }
ul#menu li#menugalleries.open h2.menucategorytop   { background-position: -386px 0; }
ul#menu li#menugalleries      div.menucategory     { background-position: -386px 0; }
ul#menu li#menugalleries.open a.menucategorybottom { background-position: -386px 0; }

ul#menu li#menuprograms.open div.menubodytop      { background-position: -578px -1px; }
ul#menu li#menuprograms      div.menubody         { background-position: -578px 0; }
ul#menu li#menuprograms.open h2.menucategorytop   { background-position: -578px 0; }
ul#menu li#menuprograms      div.menucategory     { background-position: -578px 0; }
ul#menu li#menuprograms.open a.menucategorybottom { background-position: -578px 0; }

ul#menu li#menulinks.open div.menubodytop      { background-position: -772px -1px; }
ul#menu li#menulinks      div.menubody         { background-position: -772px 0; }
ul#menu li#menulinks.open h2.menucategorytop   { background-position: -772px 0; }
ul#menu li#menulinks      div.menucategory     { background-position: -772px 0; }
ul#menu li#menulinks.open a.menucategorybottom { background-position: -772px 0; }

/* #content */
#content {
  float: left;
  width: 808px; 
  margin: 0;
  padding: 0px;
}

div#contentbody {
  position: relative;
  float: left;
}

div#content.col1.index div#contentbody{
  position: relative;
  float: left;
  background: none;
  padding: 0;
}

div#content.col2 {
  width: 592px;
  margin-right: 12px;
}

div#content div#widesubcontent {
  margin: 0 -10px -10px -10px;
  clear: both;
  float: left;
}

#content h1, #content h2, #content h3 {
  clear:    both;
  display:  block;
  padding:  0;
  margin:   0;
  position: relative;
}

#content h2 {
  font-size: 20px;
}

#content .header {
  background-image: url(http://static.fokk.hu/images/skin1/content_headerbackground_1col.png);
  background-repeat: no-repeat;
  margin:   0;
  padding:  17px 0 0 10px;
  width:    786px;
  height:   64px;
  color:    white;
  position: relative;
}

#content .header.greenheader {
  background-image: url(http://static.fokk.hu/images/skin1/content_headerbackground_1col_green.png);
}

#content.col2 .header {
  width: 582px;
  background-image: url(http://static.fokk.hu/images/skin1/content_headerbackground_1col.png);
  background-repeat: no-repeat;
}

#content .header.greenheader {
  color: white;
  background-image: url(http://static.fokk.hu/images/skin1/content_headerbackground_1col_green.png);
}

#content.col2 .header.form {
  background-image: url(http://static.fokk.hu/images/skin1/content_forms_headerbackground_2col.png);
}

#content.col2 .dividerform {
  width: 592px;
  height: 15px;
  margin: -18px 0 0 0;
  clear: both;
  background: url(http://static.fokk.hu/images/skin1/content_forms_headerdivider_2col.png) repeat-y;
}

#content .header h1 {
  font-family: Impact, Arial Black, Arial, sans-serif;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 -3px 0;
  width: 770px;
  overflow: hidden;
  height: 34px;
}

#content.col2 .header h1 {
  width: 572px;
}

#content .header a {
  color: #ece6db;
  font-family: Trebuchet MS;
  font-size: 11px;
}

#content .header a:HOVER {
  color: #fcf6eb;
}

#content .header a.active {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

#content .dividerheaderwhite {
  width: 795px;
  _width: 780px;
  height: 18px;
  margin: -15px 0 0 0;
  clear: both;
  background: url(http://static.fokk.hu/images/skin1/content_divider_1col_header_white.png) repeat-y;
}

#content.col2 .dividerheaderwhite {
  width: 592px;
}

#content.col1 .largeitemdivider {
  width: 795px;
  height: 12px;
  margin: 0 0 0 -10px;
  clear: both;
  background: url(http://static.fokk.hu/images/skin1/content_items_1col_divider.png) no-repeat;
}

#content.col1 .subheader {
  background: url(http://static.fokk.hu/images/skin1/content_subheaderbackground_1col.png) repeat-y;
  height: 35px;
  width: 785px;
  margin:  -15px 0 0 0;
  _margin:  -15px 0 -6px 0;
  padding: 23px 0 0 10px;
  color: white;
}

#content.col1 .wallpaperheaderfirst {
  background: url(http://static.fokk.hu/images/skin1/content_wallpaperheader_first_1col.png) repeat-y;
  height: 37px;
  display: block;
  width: 769px;
  margin: -25px 0 10px -10px;
  position: relative;
  padding: 18px 0 0 26px;
}

#content.col1 .wallpaperheader {
  background: url(http://static.fokk.hu/images/skin1/content_wallpaperheader_1col.png) repeat-y;
  width: 769px;
  height: 35px;
  margin: 5px 0 10px -10px;
  padding: 20px 0 0 26px;
}

#content.col1 .wallpaperheader h2 a,
#content.col1 .wallpaperheaderfirst h2 a{
  color: #e9e1d1;
  text-decoration: none;
  font-family: Arial, GillSans, Gill Sans, Myriad Pro, Arial, sans-serif;
  font-size: 18px;
  font-weight: normal;
  text-transform: uppercase;
}

#content.col1 .wallpaperheader a,
#content.col1 .wallpaperheaderfirst a{
  color: white;
}

#content #contentbody {
  width: 775px;
  margin: 0;
  background: url(http://static.fokk.hu/images/skin1/content_background_1col.png) repeat-y;
  padding: 10px 10px 10px 10px;
}

#content.col2 #contentbody {
  width: 572px;
}

#content #contentbody.form {
  padding: 0;
  width: 592px;
  margin: 0;
}

#contentbody.textcontent ul {
  margin:  0 0 10px 0;
  padding: 0 0 0 5px;
  list-style-type: none;
}

#contentbody.textcontent ul li {
  padding-left: 20px;
  background-image: url(http://static.fokk.hu/images/skin1/listitem_black.png);
  background-repeat: no-repeat;
  background-position: 2px 6px;
}

/* #content: rightcolumn */
#rightcolumn {
  float: left;
  width: 192px;
}

/* #content: contentboxes */
#contentbody .boxcontent {
  padding: 0 15px 0 15px;  
  overflow: hidden;
  overflow-x: auto;
  overflow-y: hidden;
}

#contentbody ul.boxcontent li {
  clear: both;
}

#contentbody .boxcontent object {
  margin: 0 -15px 0 -15px;
}

#contentbody .boxcontent .smallinfo {
  cursor: help;
}

#contentbody .boxcontent img.miniavatar {
  width: 20px;
  vertical-align: middle;
  margin: 2px 5px 2px 0;
}

#contentbody .boxcontent.galleries img {
  width: 40px;
  float: left;
  vertical-align: bottom;
  margin: 0 5px 2px 0;
}

#contentbody .contentbox_medium {
  margin: 15px 0 0 15px;
  width: 314px;
  background-image: url(http://static.fokk.hu/images/skin1/content_box_medium_background.png);
  padding: 0;
  color: #474336;
  float: left;
}

#contentbody .contentbox_medium .contentdivider {
  width: 314px;
  height: 6px;
  background-image: url(http://static.fokk.hu/images/skin1/content_box_medium_divider.png);
  margin: 10px 0 10px 0;
}

#contentbody .contentbox_medium h2 {
  background-image: url(http://static.fokk.hu/images/skin1/content_box_medium_headerbackground.png);
  background-repeat: no-repeat;
  color: black;
  margin: 0;
  padding: 8px 15px 0 15px;
  font-size: 16px;
  width: 314px;
  height: 42px;
}

#contentbody .contentbox_medium .contentbox_notitle {
  background-image: url(http://static.fokk.hu/images/skin1/content_box_medium_headerbackground.png);
  background-repeat: no-repeat;
  color: black;
  margin: 0;
  padding: 8px 15px 0 15px;
  font-size: 16px;
  width: 314px;
  height: 14px;
}

#contentbody .contentbox_medium_footer {
  background-image: url(http://static.fokk.hu/images/skin1/content_box_medium_footerbackground.png);
  background-repeat: no-repeat;
  margin: 8px 0 0 0;
  width: 314px;
  height: 24px;
}

#contentbody .contentbox_large {
  margin: 15px 0 0 15px;
  width: 424px;
  background-image: url(http://static.fokk.hu/images/skin1/content_box_large_background.png);
  padding: 0;
  color: #474336;
  float: left;
}

#contentbody .contentbox_large .contentdivider {
  width: 424px;
  height: 6px;
  background-image: url(http://static.fokk.hu/images/skin1/content_box_large_divider.png);
  margin: 10px 0 10px 0;
}

#contentbody .contentbox_large h2 {
  background-image: url(http://static.fokk.hu/images/skin1/content_box_large_headerbackground.png);
  background-repeat: no-repeat;
  color: black;
  margin: 0;
  font-size: 16px;
  padding: 8px 15px 0 15px;
  width: 424px;
  height: 42px;
}

#contentbody .contentbox_large .contentbox_notitle {
  background-image: url(http://static.fokk.hu/images/skin1/content_box_large_headerbackground.png);
  background-repeat: no-repeat;
  color: black;
  margin: 0;
  padding: 8px 15px 0 15px;
  font-size: 16px;
  width: 424px;
  height: 14px;
}

#contentbody .contentbox_large_footer {
  background-image: url(http://static.fokk.hu/images/skin1/content_box_large_footerbackground.png);
  background-repeat: no-repeat;
  margin: 8px 0 0 0;
  width: 424px;
  height: 24px;
}

#contentbody .contentbox_full {
  margin: 15px 0 0 15px;
  width: 760px;
  background-image: url(http://static.fokk.hu/images/skin1/content_box_full_background.png);
  padding: 0;
  color: #474336;
  float: left;
}

#contentbody .contentbox_full .contentdivider {
  width: 424px;
  height: 6px;
  background-image: url(http://static.fokk.hu/images/skin1/content_box_full_divider.png);
  margin: 10px 0 10px 0;
}

#contentbody .contentbox_full h2 {
  background-image: url(http://static.fokk.hu/images/skin1/content_box_full_headerbackground.png);
  background-repeat: no-repeat;
  color: black;
  margin: 0;
  padding: 8px 15px 0 15px;
  font-size: 16px;
  width: 424px;
  height: 42px;
}

#contentbody .contentbox_full .contentbox_notitle {
  background-image: url(http://static.fokk.hu/images/skin1/content_box_full_headerbackground.png);
  background-repeat: no-repeat;
  color: black;
  margin: 0;
  padding: 8px 15px 0 15px;
  font-size: 16px;
  width: 424px;
  height: 14px;
}

#contentbody .contentbox_full_footer {
  background-image: url(http://static.fokk.hu/images/skin1/content_box_full_footerbackground.png);
  background-repeat: no-repeat;
  margin: 8px 0 0 0;
  width: 424px;
  height: 24px;
}

#contentbody .contentbox_half {
  margin: 15px 0 0 18px;
  width: 370px;
  background-image: url(http://static.fokk.hu/images/skin1/content_box_half_background.png);
  padding: 0;
  color: #474336;
  float: left;
}

#contentbody .contentbox_half .contentdivider {
  width: 370px;
  height: 6px;
  background-image: url(http://static.fokk.hu/images/skin1/content_box_half_divider.png);
  margin: 10px 0 10px 0;
}

#contentbody .contentbox_half h2 {
  background-image: url(http://static.fokk.hu/images/skin1/content_box_half_headerbackground.png);
  background-repeat: no-repeat;
  color: black;
  margin: 0;
  padding: 8px 15px 0 15px;
  font-size: 16px;
  width: 340px;
  height: 42px;
}

#contentbody .contentbox_half .contentbox_notitle {
  background-image: url(http://static.fokk.hu/images/skin1/content_box_half_headerbackground.png);
  background-repeat: no-repeat;
  color: black;
  margin: 0;
  padding: 8px 15px 0 15px;
  font-size: 16px;
  width: 370px;
  height: 14px;
}

#contentbody .contentbox_half_footer {
  background-image: url(http://static.fokk.hu/images/skin1/content_box_half_footerbackground.png);
  background-repeat: no-repeat;
  margin: 8px 0 0 0;
  width: 370px;
  height: 24px;
}

#contentbody .contentbox_plainhalf_groups,
#contentbody .contentbox_plainhalf {
  margin: 15px 0 0 18px;
  width: 370px;
  background-color: #f0f0f0;
  padding: 0;
  color: #474336;
  float: left;
}

#contentbody .contentbox_plainhalf_groups {
  background-color: #aB815C;
  color: white;
}

#contentbody .contentbox_plainhalf_groups .star {
  top: -60px;
  right: 30px;
  position: relative;
  width: 80px;
  height: 80px;
  height: 50px;
  float: right;
}

#contentbody .contentbox_plainhalf_groups .contentdivider,
#contentbody .contentbox_plainhalf .contentdivider {
  width: 370px;
  height: 6px;
  margin: 10px 0 10px 0;
}

#contentbody .contentbox_plainhalf_groups h2,
#contentbody .contentbox_plainhalf h2 {
  color: black;
  margin: 0;
  padding: 8px 15px 0 15px;
  font-size: 16px;
  width: 340px;
  height: 42px;
}

#contentbody .contentbox_plainhalf_groups h2 {
  color: white;
}

#contentbody .contentbox_plainhalf_groups a {
  color: white;
  font-size: 12px;
}

#contentbody .contentbox_plainhalf_groups .contentbox_notitle,
#contentbody .contentbox_plainhalf .contentbox_notitle {
  color: black;
  margin: 0;
  padding: 8px 15px 0 15px;
  font-size: 16px;
  width: 370px;
  height: 14px;
}

#contentbody .contentbox_plainhalf_groups_footer,
#contentbody .contentbox_plainhalf_footer {
  margin: 8px 0 0 0;
  width: 370px;
  height: 24px;
}

#contentbody .contentbox_plainthird {
  margin: 15px 0 0 15px;
  width: 243px;
  background-color: #f0f0f0;
  padding: 0;
  color: #474336;
  float: left;
}

#contentbody .contentbox_plainthird .featuredgroupitem {
  height: 40px;
  vertical-align: middle;
  margin: 4px 0 4px 0;
}

#contentbody .contentbox_plainthird .boxcontent.featuredgalleryitem {
  height: 317px;
  overflow-y: scroll;
}

#contentbody .contentbox_plainthird .boxcontent .featuredgallerydescription {
  height: 50px;
  width: 103px;
  padding-left: 3px;
  font-size: 11px;
  overflow: hidden;
  float: left;
  clear: none;
}

#contentbody .featuredicons {
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_featured.png);
  background-repeat: no-repeat;
  width: 0px;
  float: left;
  height: 20px;
  display: block;
  overflow: hidden;
  padding: 0 0 0 17px;
  margin: 0 5px 0 0;
}

#contentbody a#iconhome        { background-position: -5px 0; }
#contentbody a#iconlatest      { background-position: -103px 0; }
#contentbody a#icontopviews    { background-position: -28px 0; }
#contentbody a#icontoprating   { background-position: -78px 0; }
#contentbody a#icontopcomments { background-position: -53px 0; }

#contentbody .contentbox_plainthird .contentdivider {
  width: 243px;
  height: 6px;
  margin: 10px 0 10px 0;
}

#contentbody .contentbox_plainthird h2 {
  color: black;
  margin: 0;
  padding: 8px 15px 0 15px;
  font-size: 16px;
  width: 243px;
  height: 42px;
}

#contentbody .contentbox_plainthird h2.featuredgallery {
  height: 24px;
}

#contentbody .contentbox_plainthird .contentbox_notitle {
  color: black;
  margin: 0;
  padding: 8px 15px 0 15px;
  font-size: 16px;
  width: 243px;
  height: 14px;
}

#contentbody .contentbox_plainthird_footer {
  margin: 8px 0 0 0;
  width: 243px;
  height: 24px;
}

#contentbody .contentbox_small {
  margin: 15px 0 0 15px;
  width: 180px;
  padding: 0;
  color: #474336;
  float: left;
  background-image: url(http://static.fokk.hu/images/skin1/content_box_small_background.png);
}

#contentbody .contentbox_small .boxcontent {
  font-size: 12px;
}

#contentbody .contentbox_small .contentdivider {
  width: 180px;
  height: 6px;
  background-image: url(http://static.fokk.hu/images/skin1/content_box_small_divider.png);
  margin: 10px 0 10px 0;
}

#contentbody .contentbox_small h2 {
  background-image: url(http://static.fokk.hu/images/skin1/content_box_small_headerbackground.png);
  background-repeat: no-repeat;
  color: black;
  margin: 0;
  padding: 8px 15px 0 15px;
  font-size: 16px;
  width: 180px;
  height: 42px;
}

#contentbody .contentbox_small_footer {
  background-image: url(http://static.fokk.hu/images/skin1/content_box_small_footerbackground.png);
  background-repeat: no-repeat;
  margin: 8px 0 0 0;
  width: 180px;
  height: 24px;
}

/* elements: forms */
fieldset {
  background-image:  url(http://static.fokk.hu/images/skin1/content_forms_fieldsetbackground_dark_2col.jpg);
  background-position: bottom left;
  background-repeat: repeat-y;
  float: left;
  clear: both;
  padding: 10px 27px 10px 27px; 
  margin: 0px 0 0 0;
  border: 0;
  color: #dbdcdd;
  width: 538px;
}

div.formerrors {
  background-image:  url(http://static.fokk.hu/images/skin1/content_forms_fieldsetbackground_dark_2col.jpg);
  background-position: bottom left;
  background-repeat: no-repeat;
  color: white;
  font-weight: bold;
  padding: 10px 10px 10px 10px;
  font-size: 15px;
}

div.formerrors a {
  color: white;
}

#content.col1 div.formerrors {
  background-image:  url(http://static.fokk.hu/images/skin1/content_forms_fieldsetbackground_dark_2col.jpg);
  background-position: bottom left;
  background-repeat: no-repeat;
  color: white;
  font-weight: bold;
  padding: 10px 10px 10px 10px;
  font-size: 15px;
  width: 572px;
  margin-left: 100px;
}

div.formerrors ul {
  min-height: 50px;
  background-image:  url(http://static.fokk.hu/images/warning.png);
  background-repeat: no-repeat;
  padding: 0 0 0 60px;
}

div.errorsubmessage {
  visibility: hidden;
  font-size: 12px;
  background-color: #CC2200;
  background-image: url(http://static.fokk.hu/images/smallwarning.gif);
  background-repeat: no-repeat;
  background-position: 4px 6px;
  padding: 2px 5px 2px 20px;
  color: white;
}

#content fieldset h2 {
  color: #ebeced;
  padding: 0;
  margin: 0 0 3px 0;
}

#content fieldset p {
  padding: 0;
  margin: 0 0 5px 0;
}

#content form table {
  clear: both;
} 

#content.col2 .form form {
  margin-bottom: -15px;
}

#content div.smallinfo {
  font-size: 11px;
  background-image: url(http://static.fokk.hu/images/info_mini.gif);
  background-repeat: no-repeat;
  background-position: 0 1px;
  padding: 1px 0 0 17px;
}

#content div.smallinfoempty {
  font-size: 11px;
  padding: 1px 0 0 0px;
  font-weight: normal;
}

#content .geocoding_failed {
  background-color: #ff8080;
  background-image: url(http://static.fokk.hu/images/skin1/geocoding_autosuggest_failed.png);
  background-position: top left;
  padding-left: 25px;
  background-repeat: no-repeat;
}

#content .geocoding_processing {
  background-color: #ffff80;
  background-image: url(http://static.fokk.hu/images/loadingdots.gif);
  background-position: -5px -10px;
  padding-left: 25px;
  background-repeat: no-repeat;
}

#content .geocoding_success {
  background-color: #70d070;
  background-image: url(http://static.fokk.hu/images/skin1/geocoding_autosuggest_success.png);
  background-position: top left;
  padding-left: 25px;
  background-repeat: no-repeat;
}

#content .forminfo {
  background-image:  url(http://static.fokk.hu/images/skin1/content_forms_fieldsetbackground_dark_2col.jpg);
  background-position: bottom left;
  background-repeat: no-repeat;
  float: left;
  clear: both;
  padding: 18px 27px 18px 27px; 
  margin: 0px 0 0px 0;
  border: 0;
  color: white;
  width: 538px;
}

#content .forminfo.loginforminfo {
  margin-top: -5px;
  background-image: url(http://static.fokk.hu/images/skin1/content_background_1col_green.png);
  background-repeat: repeat-y;
}

#content .forminfo ul li {
  color: white;
  font-weight: bold;
  background-image: url(http://static.fokk.hu/images/skin1/listitem_white.png);
  background-repeat: no-repeat;
  background-position: 0 8px;
  padding: 0 0 0 10px;
  margin-bottom: 5px;
}

#content .forminfo a {
  color: white; 
  font-weight: bold;
}

#content .forminfo b {
  color: #f0f0f0;
}

label  { cursor: pointer; font-weight: bold; }

button, input, select, textarea {
  padding: 3px;
  border: 1px solid #a0a0a0;
  color: black;
  margin: 0;
  font-family: Verdana;
  font-size: 12px;
}

div#contentbody form div.private {
  position: relative;
  margin: 0 -20px 0 0;
  left: -20px;
  height: 20px;
  width: 20px;
  clear: none;
  cursor: pointer;
  float: left;
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_small.png);
  background-position: -100px 0;
}

div#contentbody form div.tablecontainer {
  background-image: url(http://static.fokk.hu/images/skin1/content_forms_tablebackground.png);
  padding: 20px 0 0 60px;
  margin: 0;
  width: 478px;
  color: #191a23;
  clear: both;
  float: left;
}

div#contentbody form div.tablecontainer table tr {
  width: 100%;
}

div#contentbody form div.tablecontainer.wideform {
  padding: 80px 5px 5px 10px;
  width: 523px;
}

div#contentbody form div.tablefooter {
  background-image: url(http://static.fokk.hu/images/skin1/content_forms_tablefooter.png);
  height: 15px;
  width: 100%;
  clear: both;
  float: left;
  margin-bottom: 15px;
}

div#contentbody form div.public {
  position: relative;
  margin: 0 -20px 0 0;
  left: -20px;
  height: 20px;
  width: 20px;
  clear: none;
  cursor: pointer;
  float: left;
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_small.png);
  background-position: -125px 0;
}

div#contentbody form div.public.date,
div#contentbody form div.private.date {
  left: 0;
  margin: 0;
  float: left;
  width: 15px;
}

/* elements: forms: commentform */
div#contentbody form.commentform fieldset {
  padding: 0;
  display: block;
  margin: 5px 0 0 4px;
  width: 582px;
  background-image: url(http://static.fokk.hu/images/skin1/content_commentform_background.png);
  background-repeat: repeat-y;
}

div#contentbody form.commentform fieldset h2 {
  display:  block;
  float:    left;
  position: relative;
  margin: 0;
  height: 80px;
  width: 582px;
}

div#contentbody form.commentform fieldset h2 span {
  position:   absolute;
  width:      100%;
  height:     100%;
  background-image: url(http://static.fokk.hu/images/skin1/content_commentform_header.png);
}

div#contentbody form.commentform fieldset .tablecontainer {
  margin: 0;
  width: 500px;
  float: left;
  margin: 0 0 0 30px;
  padding: 0 0 0 10px;
  background-color: white;
  background-image: url(http://static.fokk.hu/images/skin1/content_commentform_textareabackground.png);
}

div#contentbody form.commentform fieldset .tablecontainer textarea {
  width: 487px;
  float: left;
  border: none;
}

div#contentbody form.commentform fieldset .tableheader {
  background-image: url(http://static.fokk.hu/images/skin1/content_commentform_textareatop.png);
  width: 510px;
  float: left;
  margin: 0 0 0 -10px;
  padding: 0;
  height: 15px;
  clear: both;
}

div#contentbody form.commentform fieldset .tablefooter {
  background-image: url(http://static.fokk.hu/images/skin1/content_commentform_textareabottom.png);
  width: 510px;
  clear: both;
  float: left;
  margin: 0 0 0 30px;
  padding: 0;
}

#content.col1 form.commentform div.buttonrow {
  left: 0;
  top: 0;
}

div#contentbody form.commentform div.buttonrow {
  width: 537px;
  margin: 0 0 0 4px;
  height: 35px;
  padding: 5px 45px 10px 0;
  background-image: url(http://static.fokk.hu/images/skin1/content_commentform_footer.png);
  background-position: bottom left;
}

div#contentbody form.commentform div.buttonrow table.buttontable {
  margin:  0;
  padding: 0;
}

/* elements: forms: user searchform fieldset */
div#userssearchadvanced {
  margin: -7px 0 0 0;
  position: absolute;
  left: 10px;
} 

div#userssearchadvanced a {
  color: black;
  font-size: 8px;
  text-decoration: none;
}

div#userssearchadvanced a:hover {
  color: white;
}

div.searchinfo {
  max-width: 300px;
  float: left;
  overflow: hidden;
  height: 20px;
  clear: none;
  cursor: help;
}

fieldset.plain {
  background: none;
  padding: 0; 
  margin: 0;
  position: relative;
  color: black;
  font-size: 11px;
  background-color: #a0a0a0;
}

#container #menucontainer #advsearchform {
  float: left;
  margin: 0;
}

#container #menucontainer #advsearchtop {
  background-image: url(http://static.fokk.hu/images/skin1/searchbox_advanced_top.png);
  width: 178px;
  margin-top: -16px;
  height: 40px;
  float: left;
  clear: both;
  display: block;
}

div#accordioncontainer {
  background-image: url(http://static.fokk.hu/images/skin1/searchbox_advanced_background.png);
  background-repeat: repeat-y;
  width: 166px; 
  display: block;
  float: left;
  clear: both;
  padding: 3px 2px 3px 2px;
}

div#accordioncontainer input {
  font-size: 10px;
}

div#accordioncontainer table td {
  padding: 0 0 1px 0;
}

div#accordioncontainer div.accordion_toggle {
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  clear: both;
  float: left;
  display: block;
  width: 100%;
  background-image: url(http://static.fokk.hu/images/skin1/searchbox_advanced_headerbackground.png);
  height: 19px;
  margin-left: -2px;
  padding-left: 2px;
  padding-top: 10px;
}

div#accordioncontainer div.accordion_toggle {
  color: #5c5147;
}

div#accordioncontainer div.accordion_toggle.active {
  color: #5c5147;
}

div#accordioncontainer div.accordion_contentcontainer {
  float: left;
  clear: both;
}

div#accordioncontainer div.accordion_contenttop {
  background-image: url(http://static.fokk.hu/images/skin1/searchbox_advanced_itemtopbottom.png);
  height: 7px;
  width: 159px;
  clear: both;
  float: left;
}

div#accordioncontainer div.accordion_contentbottom {
  background-image: url(http://static.fokk.hu/images/skin1/searchbox_advanced_itemtopbottom.png);
  background-position: 0 -7px;
  height: 7px;
  width: 159px;
  clear: both;
  float: left;
}

div#accordioncontainer div.accordion_content {
  background-image: url(http://static.fokk.hu/images/skin1/searchbox_advanced_itembackground.png);
  width: 152px;
  margin-left: 1px;
  padding-left: 5px;
  clear: both;
  float: left;
}

div#accordioncontainer div.accordion_content {
  color: white;
  font-size: 11px;
}

div#accordioncontainer div.accordion_content label {
  font-size: 12px;
  font-weight: normal;
  color: white;
  padding-left: 10px;
  background-image: url(http://static.fokk.hu/images/skin1/searchbox_advanced_itemarrow.png);
  background-repeat: no-repeat;
  background-position: 0px 5px;
}

div#accordioncontainer div.accordion_content label.schooldetails {
  display: block;
  background: none;
  float: left;
  width: 100%;
  font-style: italic;
}

div#accordioncontainer div.accordion_content div.searchItemContent.schooldetails {
  padding-left: 10px;
}

div#advsearchbuttonrow {
  background-image: url(http://static.fokk.hu/images/skin1/searchbox_advanced_bottombackground.png);
  float: left;
  padding-left: 50px;
  width: 119px;
  clear: both;
  height: 29px;
}

/* elements: forms: new message form */
select#friendcategories {
  width: 240px;
  margin: 0 0 5px 0;
}

ul.messagefriends {
  overflow: hidden;
}
 
ul.messagefriends li {
  width: 230px;
  clear: both;
  display: block;
  padding: 0;
  margin: 0 0 1px 0;
}

ul.messagefriends li label {
  font-weight: normal;
  width: 200px;
  font-size: 12px;
}

ul.messagefriends li.selected,
ul.messagefriends li.selected:hover {
  background-color: #c0c0c0;
}

ul.messagefriends li input {
  border: none;
  padding: 0 0 0 2px;
  margin: 3px 0 0 0;
}

ul.messagefriends li div.input {
  margin: 0;
  padding: 0 0 0 0;
  width: 20px;
  float: left;
}

ul.messagefriends li:hover {
  background-color: #e0e0e0;
}

a.tablink {
  float: left;
  text-decoration: none;
  color: black;
  margin: 0 10px 0 0;
  padding: 2px 10px 2px 10px;
  background-color: #f0f0f0;  
  outline: none;
}

a.tablink.selected {
  background-color: #e0e0e0;  
}

div.tab {
  width: 245px;
  padding: 5px;
  background-color: #e0e0e0;
}

div.tab div.scrollable {
  overflow-y: scroll;
  overflow-x: hidden;
  width: 245px;
  height: 200px;
}

/* elements: icons */

div#contentbody div.replace {
  position: relative;
  margin: 0 0px 0 5px;
  height: 20px;
  width: 20px;
  clear: none;
  cursor: pointer;
  float: left;
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_small.png);
  background-position: -150px 0;
}

div#contentbody div.warning {
  position: relative;
  margin: 0;
  height: 15px;
  width: 15px;
  clear: none;
  cursor: pointer;
  float: left;
  background-image: url(http://static.fokk.hu/images/smallwarning.gif);
  background-repeat: no-repeat;
  background-position: 0 4px;
}

div#contentbody div.remove {
  position: relative;
  margin: 1px 0px 0 0px;
  height: 13px;
  width: 15px;
  clear: none;
  cursor: pointer;
  float: left;
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_small.png);
  background-position: -181px -5px;
}

div#contentbody div.move {
  position: relative;
  margin: 1px 0px 0 0px;
  height: 13px;
  width: 15px;
  clear: none;
  cursor: pointer;
  float: left;
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_small.png);
  background-position: -200px -5px;
}

div#contentbody div.readmessage {
  position: relative;
  margin: 0 5px 0 0px;
  height: 16px;
  width: 16px;
  clear: none;
  cursor: help;
  float: left;
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_small.png);
  background-position: -254px -6px;
}

div#contentbody div.unreadmessage {
  position: relative;
  margin: 0 5px 0 0px;
  height: 16px;
  width: 16px;
  clear: none;
  cursor: help;
  float: left;
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_small.png);
  background-position: -230px -5px;
}

div#contentbody div.repliedmessage {
  position: relative;
  margin: 0 0px 0 0px;
  height: 16px;
  width: 16px;
  clear: none;
  cursor: help;
  float: left;
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_small.png);
  background-position: -282px -5px;
}

div#contentbody a.messagesender {
  font-weight: normal;
}

div.icon.icon-comments {
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_small.png);
  background-position: -300px 5px;
  float: left;
  cursor: default;
  width: 20px;
  margin-left: 5px;
}

a.feedicon {
  margin: 2px 5px 0 0; 
  width: 14px;
  height: 14px;
  display: inline;
  float: left;
  background-image: url(http://static.fokk.hu/images/feed-icon-14x14.png);
  background-repeat: no-repeat;
}

/* elements: buttons */
td.buttonrowcontainer {
  padding: 0;
  margin: 0;
}

div.buttonrow {
  clear: both;
  float: left;
  width: 785px;
  margin: 0 0 -9px 0;
  height: 43px;
  text-align: right;
  padding: 0 10px 0 0;
  background-image: url(http://static.fokk.hu/images/skin1/content_forms_buttonrowbackground_1col.png);
  background-position: top left;
}

#content.col1 div.buttonrow {
  position: relative;
  left: -10px;
  top: 20px;
}

div.buttonrow .buttontable {
  margin-top: -5px;
  float: right;
}

div#content.col2 div.buttonrow {
  width: 582px;
}

button { 
  width: 100%;
}

div#contentbody .button, .button {

  height: 32px;

  color: white;

  margin:  0px;
  border:  0px;
  padding: 0;

  font-family:    Arial, sans-serif;
  font-size:      13px;
  font-weight:    bold;
  vertical-align: middle;
  background: url(http://static.fokk.hu/images/skin1/button_orange_background.png) repeat-x;
  background-position: top right;
}

div#contentbody .button.red, .button.red {
  height: 28px;
  background: url(http://static.fokk.hu/images/skin1/button_red_background.png) repeat-x;
}

.buttonsmall, div#contentbody .buttonsmall { 
  font-size: 11px; 
  font-weight: normal; 
}

div#contentbody .button.smallgrey, .button.smallgrey {
  height: 20px;
  color: #404000;
  font-weight: bold;
  font-size: 12px;
  padding-bottom: 3px;
  background: url(http://static.fokk.hu/images/skin1/button_smallgrey_background.png) repeat-x;
}

.buttontable td, table.styled .buttontable td {
  margin: 0; 
  padding: 0;
}

/* elements: ul w/ bullets */
ul.bullets {
  padding: 0 0 0 10px;
  margin: 10px 0 10px 0;
}

ul.bullets li {
  background-image: url(http://static.fokk.hu/images/skin1/listitem_red.png);
  background-repeat: no-repeat;
  background-position: 5px 9px;
  padding: 2px 0 2px 15px;
}

/* elements: pager */
div.pager {
  clear: both;
  float: left;
  height: 44px;
  width: 795px;
}

div#content.col2 div.pager {
  width: 592px;
}

div.pagertop {
  background-image: url(http://static.fokk.hu/images/skin1/content_pagerbackground_1col.png);
  margin: -15px 0 0 0;
  padding: 9px 0 0 0;
  height: 35px;
}

div.pagerbottom {
  margin: -7px 0 0 0;
  height: 50px;
  background-image: url(http://static.fokk.hu/images/skin1/content_pagerbackground_bottom_1col.png);
}

div.pager .info {
  color: white;
  margin: 7px 0 0 10px;
}

div.pager .info a {
  color: white;
  font-weight: bold;
}

ul.pager {
  font-size: 11px;
  border: 0;
  display: table;
  margin: 0 auto 0 auto;
}

ul.pager li {
  display: block;
  width: 28px;
  float: left;
  clear: none;
  padding: 12px 0 0 0;
}

ul.pager.links li {
  width: auto;
  font-size: 12px;
}

ul.pager.links li a:hover {
  text-decoration: underline;
}

ul.pager li a, ul.pager li.currentpage {
  float: left;
  color: white;
  padding: 0px 7px 0px 7px;
  margin: 0 2px 0 2px;
  text-decoration: none;
}

ul.pager li.currentpage {
  width: 46px;
  font-weight: bold;
  font-size: 13px;
  color: #dd3027;
  margin: 4px 0 0 0;
  text-align: center;
}

div.pagertop li.currentpage {
  padding: 7px 0 0 0;
  height: 24px;
  background: url(http://static.fokk.hu/images/skin1/content_pager_activepage.png) 0 0 no-repeat;
}

div.pagerbottom li.currentpage {
  padding: 7px 0 0 0;
  height: 31px;
  background: url(http://static.fokk.hu/images/skin1/content_pager_activepage_bottom.png) 0 0 no-repeat;
}

/* special: iconset, icon, navigation */

.navicon {
  background-color: #9B815B;
  vertical-align: middle;
  margin: 2px 0 0 0;
}

.navigation a {
  background-color: #b0cc54;
  text-decoration: none;
  margin: 0 5px 0 0;
  padding: 0 3px 0 0;
}

.navigation a.active {
  background-color: white;
  text-decoration: none;
}

.navigation a:hover {
  background-color: #f8f8f8;
  color: black;
}

.navigation a:hover img {
  background-color: #a0df50;
}

/* special: editphotos */

div#contentbody #btnCancel1 {
  color: white;
}

div#contentbody #btnCancel1[disabled] {
  color: #808080;
}

div#contentbody .editphotos {
  margin:          0;
  padding:         2px 0 2px 0;
  float:           left;
  position: relative;
  clear:           none;
  display:         inline;
  list-style-type: none;
}

div#contentbody .editphotos div.photo {
  float:      left;
  width:      130px;
  position: relative;
  height:     150px;
  margin:     4px;
  padding:    0;
  background: #a0a0a0;
  background-image: url(http://static.fokk.hu/images/skin1/editphotos_footbackground.png);
  background-position: bottom left;
  text-align: center;
}

div#contentbody .editphotos div.photo span {
  cursor:   move;
  display:  block;
  overflow: hidden;
  height:   105px;
}

div#contentbody .editphotos div.photo span div.error {
  width:            70px;
  margin-top:       10px;
  margin:           20px auto 0 auto;
  line-height:      70px;
  color:            #808080;
  background-color: #d0d0d0;
  font-size:        50pt;
  font-weight:      bold;
  font-family:      Arial;
}

div#contentbody .editphotos div.photo img.icon {
  margin: 0; padding: 0;
}

div#contentbody .editphotos div.photo div.icons {
  padding: 2px;
  background-color: #606060;
  background-image: url(http://static.fokk.hu/images/skin1/editphotos_headbackground.png);
  margin-bottom: 2px;
}

div#contentbody .editphotos input {
  font-size: 10px;
  padding: 1px;
  margin: 0 0 0 0;
  text-align: center;
  background-color: #d0d0d0;
  border: 1px solid #808080;
  color: black;
}
.converting {
}

div#contentbody .editphotos div.loadinghidden {
  visibility: hidden; display: none;
}

div#contentbody .editphotos div.loadingvisible {
  visibility: visible; 
  display: block;
  background-image: url(http://static.fokk.hu/images/loading.gif);
  background-repeat: no-repeat;
  background-position: 54px 10px;
  height: 40px;
  margin-bottom: -40px;
  width: 100%;
}

div#contentbody .editphotos img.loading {
  margin-top: 5px;
  margin-bottom: -40px;
}

div#contentbody .editphotos .clearcheckbox   { 
  background: transparent; 
  border: 0; margin: 0; padding: 0; top: 0; 
}

/* special: imageticker */

.minigroupphoto img {
  width: 40px;
}

.miniprogramflyer img {
  width: 80px;
}

.imageticker {
  -webkit-transform: rotate(1deg);
  -moz-transform: rotate(1deg);
  float: left;
  clear: both;
  position: relative;
  display: block;
  margin: 5px auto 5px auto;
}

.imageticker_header {
  position: absolute;
  width:  19px;
  height: 22px; 
  left:  -10px; 
  top:   -8px;
  background: url(http://static.fokk.hu/images/skin1/image_ticker_corner_topleft.png) top left no-repeat;
}

.imageticker img {
  float: left;
  clear: both;
  display: block;
  border: 4px solid white; 
  background-color: #c0c0c0; 
  padding: 1px;
}

.imageticker_footer {
  position: absolute; 
  display: block;
  height: 32px;
  width: 22px;
  right:  -10px; 
  bottom: -8px;
  clear:  both; 
  background: url(http://static.fokk.hu/images/skin1/image_ticker_corner_bottomright.png) bottom right no-repeat;
}

.imageticker.white .imageticker_header {
  position: absolute;
  width:  22px;
  height: 25px; 
  left:  -11px; 
  top:   -9px;
  background: url(http://static.fokk.hu/images/skin1/image_white_ticker_corner_topleft.png) top left no-repeat;
}

.imageticker.white img {
  background-color: white; 
  float: left;
  clear: both;
  display: block;
  border: 1px solid #e8e8e8; 
  padding: 4px;
}

.imageticker.white .imageticker_footer {
  background: url(http://static.fokk.hu/images/skin1/image_white_ticker_corner_bottomright.png) bottom right no-repeat;
  width:  100%;
  height: 32px;
  right:  -10px; 
  bottom: -11px;
}

/* special: timepicker */

div.time-holder {
  z-index: 99;
  width: 60px;
}

div.time-holder div.times {
  top: 0;
  height: 120px;
  overflow: auto;
  background: #fff;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}

div.time-holder div.times ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 60px;
}
div.time-holder div.times li {
    background: none;
    padding: 1px;
    width: 60px;
}
div.time-holder div.times li.selected {
    background: #316AC5;
    color: #fff;
}

/* special: fisheyecalendar */
table#fisheyecalendar {
  position: absolute;
  z-index: 1;
  aright: 10px;
  left: 625px;
  top: -110px;
}

table#fisheyecalendar.lower {
  top: -70px;
}

table#fisheyecalendar th {
  text-align: center;
  cursor: move;
  border: 0;
} 

table#fisheyecalendar th div {
  margin: 0;
}

table#fisheyecalendar div#close {
  position: relative;
  width:  20px;
  margin: -20px 0 0 16px;
  float: left;
  font-weight: bold;
}

table#fisheyecalendar div#close a { 
  color: white;
  padding: 0 6px 0 4px;
  display: block;
  text-decoration: none;
}

table#fisheyecalendar td {
  height:         15px;
  width:          22px;
  padding:        0;
  margin:         0;
  vertical-align: top;
  text-align: center;
}

table#fisheyecalendar th.frame {
  background-image: url(http://static.fokk.hu/images/skin1/calendar_border.png);
  width: 3px;
  padding: 0;
  margin: 0;
}

table#fisheyecalendar table.calendarheader {
  width: 100%;
  height: 57px;
}

table#fisheyecalendar table.calendarheader td.prev-month {
  padding: 0;
  text-align: left;
  width: 47px;
  height: 57px;
}

table#fisheyecalendar table.calendarheader td.month {
  background-image: url(http://static.fokk.hu/images/skin1/calendar_head_background.png);
  width: 100%;
  text-align: center;
  cursor: move;
  color: white;
  padding: 5px 0 0 0;
  margin: 0;
  text-transform: uppercase;
}

table#fisheyecalendar table.calendarheader td.month h1 {
  font-size: 20px;
}

table#fisheyecalendar table.calendarheader td.next-month {
  text-align: right;
  width:   48px;
  padding: 0;
  height:  57px;
}

table#fisheyecalendar table.calendarfooter { width:  100%; height: 24px; }
table#fisheyecalendar table.calendarfooter td.bottomleft { width: 12px; }                                                          
table#fisheyecalendar table.calendarfooter td.bottomcenter {
  width: 100%;
  background-image: url(http://static.fokk.hu/images/skin1/calendar_bottom_center.png);
}

table#fisheyecalendar table.calendarfooter td.bottomright { width: 91px; }
table#fisheyecalendar table.calendarfooter td.bottomright img { margin-right: -7px; }

table#fisheyecalendar th.day-of-week { color: #a49896; }
table#fisheyecalendar th.odd         { background-image: url(http://static.fokk.hu/images/skin1/calendar_days_background_dark.png); }
table#fisheyecalendar th.even        { background-image: url(http://static.fokk.hu/images/skin1/calendar_days_background_light.png); }
table#fisheyecalendar td.odd         { background-color: #e6e2de; }
table#fisheyecalendar td.even        { background-color: white; }

table#fisheyecalendar div.program {
  width:      300px;
  height:     150px;
  text-align: left;
  overflow:   scroll;
  background-color: white;
  padding:    3px;
}

table#fisheyecalendar td a.day, a.selected-day {
  text-decoration: none;
  text-align: center;
  display: block;
  height:  20px;
  width:   100%;
}

table#fisheyecalendar td a.notempty {
  text-decoration: underline;
}

/* table#fisheyecalendar td.weekend, */
table#fisheyecalendar td.selected-day {
  text-decoration: none;
  background-image: url(http://static.fokk.hu/images/skin1/content_backgrounds_light.png);
}

table#fisheyecalendar div.program a {
  text-decoration: underline;
}

/* areas: user profile */
div.alertmessage.userprofile {
  color: #606060;
  font-size: 10px;
}
div.alertmessage.userprofile a {
  color: #404040;
}
div.interestinfo {
  margin-left: 18px;
}

table#profiledata {
  width: 470px;
  float: left;
}

table#profiledata h3 a {
  font-size: 12px;
  margin-left: 10px;
  color: #a0a0a0;
}

table#profiledata h3 a img {
  background-color: #e0e0e0;
  vertical-align: middle;
}

blockquote.slogan {
  font-size: 17px;
  text-align: right;
  margin: 5px 0 10px 0;
  display: block;
  float: left;
  position: relative;
  width: 730px;
  padding: 0 40px 0 10px;
  background: transparent;
  clear: both;
}

blockquote.slogan div.quotes {
  font-size: 67px;
  display:   block;
  position: absolute;
  right: 20px;
  width:     25px;
  color:     #e0e0e0;
  line-height: 25px;
  font-family: Times New Roman;
}

span.setschooldetails {
  float: right;
  margin-right: 25px;
  font-weight: normal;
  font-size: 12px;
}

#introgallery { float: left; margin-top: 15px; }
#introgallery div.introgalleryphoto { 
  width: 100px; 
  height: 115px;
  display: block;
  float: left; 
}
  /*
  margin: 0 5px 5px 0; 
  text-align: center;
  background-color: #f0f0f0; 
  padding: 5px 0px 5px 0px; 
  border: 1px solid #d0d0d0; 
  */


/* areas: messaging and smileys */
#postform {
  float: left;
  width: 750px;
}

#messagepanel {
  width: 525px;
  display: block;
  float: left;
}

#content.forummessages #messagepanel,
#commentarea #messagepanel {
  width: 562px;
  background-image:    url(http://static.fokk.hu/images/skin1/content_forum_postmessage_background.png);
  background-position: 0 20px;
  background-repeat:   no-repeat;
}

#smileycontainer {
  float: left;
  width: 205px;
  margin: 19px 0px 0 0;
  position: relative;
  border: 1px solid #808080;
}

#content.forummessages #smileycontainer,
#commentarea #smileycontainer {
  margin: 19px 2px 0 0;
  width: 214px; 
  float: right; 
  border: 0;
  right:  0;
  position: absolute;
  padding: 10px 6px 14px 10px;
  background-image:    url(http://static.fokk.hu/images/skin1/content_forum_postmessage_background.png);
  background-position: -561px 0px;
  background-repeat:   no-repeat;
}

#smileycategories {
  height: 20px;
  padding: 1px;
  width: 204px;
  border-bottom: none;
  border-right: none;
  border-left: none;
  margin-top: 5px;
}

#content.forummessages #smileycategories,
#commentarea #smileycategories {
  border: 1px solid #c0c0c0;
  margin-left: 5px;
}

#smileys { 
  overflow: auto;
  overflow-y: auto;
  overflow-x: hidden;
  width: 195px; 
  height: 165px;
  margin: 6px 0 0 7px;
}

#content.forummessages #smileys,
#commentarea #smileys { 
  height: 180px;
  margin: 0 0 0 7px;
  width:  201px;
}

#smileys img {
  background-color: white;
  border: 1px solid #d0d0d0;
  padding: 3px;
}

#smileys a {
  margin: 6px 6px 6px 0;
  line-height: 35px;
}

/* areas: forum post message */
#content.forummessages div#postform,
#commentarea div#postform {
  margin: 0 -10px 0 -18px;
  float: none;
  width: 795px;
}

div#postform form div.larger {
  font-size: 16px;
  margin-bottom: 5px;
}

#content.forummessages div#postform form,
#commentarea div#postform form {
  padding: 0px 10px 0px 20px;
  margin: 0;
}

div#postform div.forumpostmessagebuttonrow {
  width: 355px;
  background-image: url(http://static.fokk.hu/images/skin1/content_forum_postmessage_buttonrowbackground.png);
  background-position: 0 5px;
  background-repeat: no-repeat;
  margin: 0px -10px 0px -20px;
  position: relative;
  padding: 0 0 10px 440px;
  height: 30px;
  bottom: -7px;
}

/* areas: forum topic sprites */
div.icon {
  width: 25px;
  height: 25px;
  margin: -2px 0 0 0;
  padding: 0 0 0 0;
  cursor: help;
}

div.icon.forumtopic {
  background-image: url(http://static.fokk.hu/images/skin1/content_forum_iconset.png);
  background-position: 100px 0;
}

div.icon.forumtopic-newmessages {
  background-image: url(http://static.fokk.hu/images/skin1/content_forum_iconset.png);
  background-position: 25px 0;
}

div.icon.forumtopic-new {
  background-image: url(http://static.fokk.hu/images/skin1/content_forum_iconset.png);
  background-position: 125px 0;
}

div.icon.icon-image {
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_small.png);
  background-position: 0 5px;
  float: left;
  cursor: default;
  width: 20px;
}

div.icon.icon-friendself {
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_small.png);
  background-position: -75px 5px;
  float: left;
  cursor: default;
}

div.icon.icon-friendunknown {
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_small.png);
  background-position: -25px 5px;
  float: left;
  cursor: default;
}

div.icon.icon-friendpending {
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_small.png);
  background-position: -50px 5px;
  float: left;
  cursor: default;
}

div.icon.icon-friendaccepted {
  background-image: url(http://static.fokk.hu/images/skin1/content_iconset_small.png);
  background-position: -75px 5px;
  float: left;
  cursor: default;
}

/* areas: forum paging customization */
div#content div#forumcustomize {
  display: block;
  height: 29px;
  color: white;
  padding: 18px;
  margin: 0 -10px 20px -18px;
  background-image: url(http://static.fokk.hu/images/skin1/content_forum_customizebackground.png);
}

div#content div#forumcustomize div#rss {
  float: left;
  margin: 0 0 0 60px;
}

div#content div#forumcustomize div#rss a {
  color: white;
  text-decoration: none;
}

div#content div#forumcustomize div#rss a:hover {
  color: white;
  text-decoration: underline;
}

div#content div#forumcustomize select {
  font-size: 11px;
  padding: 1px;
}

/* areas: blog commenting specific */
div#contentbody div#commentmessages {
  margin-top: 30px;
}

div#contentbody div#commentarea {
  margin: 10px 0px 0 8px;
}

div#content div#contentbody.comments div#forumcustomize {
  margin: 10px -10px -2px -10px;
}

div#content div.pagercomments {
  margin: -5px -10px -10px -10px;
}

/* areas: common: forum items page customization, blogs commenting */

div#content div#contentbody.comments {
  padding-bottom: 0px;
}

div#content.forummessages div#contentbody,
div#content div#contentbody.comments div#commentarea {
  padding: 10px 10px 0 18px;
  width: 767px;
  _width: 739px;
  float: left;
  background-image: url(http://static.fokk.hu/images/skin1/content_forum_background.png);
  background-repeat: repeat-y;
}

div#content div#contentbody.comments div#commentarea {
  margin: -10px 0 0 -10px;
  padding-top: 0px;
}

div#content div#contentbody div#commentarea .pagerbottom {
  margin: 0 0 0 -18px;
}

div#content.forummessages .pagertop {
  background-image: url(http://static.fokk.hu/images/skin1/content_pagerbackground_1col_forummessages.png);
}

div#content.forummessages div.forumitem, 
div#contentbody.comments div.forumitem {
  float: left;
  clear: both;
  width: 795px;
  _width: 780px;
}

div#content.forummessages div.userinfo,
div#contentbody.comments div.userinfo {
  width: 133px;
  float: left;
  clear: left;
  height: 170px;
}

div#content.forummessages div.userinfo a.userlink,
div#contentbody.comments div.userinfo a.userlink {
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
  color: #ce2000;
  display: block;
  width: 108px;
  clear: both;
  margin: 0 0 9px 0;
}

div#content.forummessages div.userinfo a.userlink:hover,
div#contentbody.comments div.userinfo a.userlink:hover {
  text-decoration: underline;
  color: #de3010;
}

div#content.forummessages div.date, 
div#contentbody.comments div.date {
  float: left;
  font-weight: bold;
  width: 600px;
  clear: none;
  font-size: 12px;
}

div#content.forummessages div.date div.icon,
div#contentbody.comments div.date div.icon {
  float: left;
}

div#content.forummessages div.messagecontainer,
div#contentbody.comments div.messagecontainer {
  float: left;
  position: relative;
  width: 643px;
}

div#content.forummessages div.messagecontainer div.arrow,
div#contentbody.comments div.messagecontainer div.arrow {
  width: 30px;
  height: 36px;
  position: absolute;
  top: 27px;
  left: -23px;
  background: url(http://static.fokk.hu/images/skin1/content_forum_commentbox_arrow.png);
}

div#content.forummessages div.messagetop,
div#content.forummessages div.messagebottom,
div#contentbody.comments div.messagetop,
div#contentbody.comments div.messagebottom {
  width: 643px;
  height: 14px;
  background-image: url(http://static.fokk.hu/images/skin1/content_forum_commentbox_top.png);
  float:  left;
  clear: both;
  margin: 0;
  _margin: 0 0 -4px 0;
  padding: 0;
}

div#content.forummessages div.messagebottom,
div#contentbody.comments div.messagebottom {
  background-image: url(http://static.fokk.hu/images/skin1/content_forum_commentbox_bottom.png);
  height: 19px;
}

div#content.forummessages div.message,
div#contentbody.comments div.message {
  width: 613px;
  _width: 583px;
  min-height: 50px;
  background: url(http://static.fokk.hu/images/skin1/content_forum_commentbox_background.png) repeat-y;
  padding: 5px 15px 5px 15px;
  float: left;
}

div#content.forummessages div.messagebody,
div#contentbody.comments div.messagebody {
  width: 607px;
  float: left;
  clear: both;
  overflow: auto;
}

div#content.forummessages div.messagebody div.repliedto,
div#content.forummessages div.messagebody div.repliedto a,
div#contentbody.comments div.messagebody div.repliedto,
div#contentbody.comments div.messagebody div.repliedto a {
  color: #80a0a0;
  font-size: 11px;
  margin-bottom: 7px;
}

div#content.forummessages div.signature,
div#contentbody.comments div.signature {
  float: left;
  clear: both;
  padding: 0 0 0 7px;
  font-size: 11px;
  width: 600px;
}

div#content.forummessages div.dividerforummessage,
div#contentbody.comments div.dividerforummessage {
  background-image: url(http://static.fokk.hu/images/skin1/content_forum_divider.png);
  margin: 5px 0 5px -17px;
  float: left;
  width: 795px;
  height: 19px;
  clear: both;
}

/* areas: programs */
div.programsimage {
  width: 100px;
  float: left;
  margin: 0 0 0 15px;
}

div.programsitem {
  float: left;
  margin: 0 0 10px 10px;
  height: 189px;
}

div.programsitem div.programlead {
  height: 89px;
  overflow: hidden;
}

div.programsitem div.programlinks {
  text-align: right;
  margin-right: 10px;
}

div.programsinpast {
  color: #808080;
}

div.programsinpast div.programsitem a {
  color: #808080;
}

#contentbody div.programsitem div.contentbox_half h2 {
  display: block;
  overflow: hidden;
  width: 400px;
  height: 30px;
}

div.programcategories {
  background-color: #e0e0e0;
  padding: 5px;
  width: 80%;
  margin: 10px auto 10px auto;
  text-align: center;
  clear: both;
}

div.programcategories a.active {
  font-weight: bold;
  text-decoration: none;
}

div.programsitem a.programname {
  font-weight: bold;
}

div.programday {
  background-color: #f0f0f0;
  padding: 5px 5px 5px 18px;
  width: 772px;
  margin: 10px 0 10px -10px;
  background-image: url(http://static.fokk.hu/images/skin1/content_forum_postmessage_buttonrowbackground.png);
  color: white;
  float: left;
}

div.programday h3 {
  display: block;
  float: left;
  width: 400px;
  font-size: 16px;
}

div.programday a {
  font-size: 12px;
  float: right;
  margin: 4px 10px 0 0;
  color: white;
}

div#flyers {
  clear: both;
  float: left;
  margin: 20px 0 20px 40px;
  width: 720px;
}

div#flyers .image {
  height: 290px;
  text-align: center;
}

ul#relatedgroups {
}

ul#relatedgroups li {
  float: left;
  width: 190px;
  margin: 10px 0 0 0;
  height: 60px;
  overflow: hidden;
}

ul#relatedgroups li.rightcolumn {
  margin-left: 10px;
}

.relatedgroupselector {
  height: 100px;
  overflow-y: scroll;
}

.relatedgroupselector label {
  font-weight: normal;
}

/* areas: items */

div#contentbody.nomargin {
  padding: 0;
  margin:  0;
  width: 795px;
}

div#contentbody .contentbox_half {
  margin: 0 0 15px 0;
}

div#contentbody .column {
  width: 380px;
  float: left;
  margin: 0 0 0 5px;
}

div#content.galleryitems div#contentbody,
div#content.useritems div#contentbody {
  padding: 0;
  margin:  0;
  width: 795px;
}

div#content.galleryitems div.pagerbottom,
div#content.useritems div.pagerbottom {
  margin-top: -5px;
  float: left;
}

div.useritem.even.firstrow, 
div.useritem.odd.firstrow,
div.galleryitem.even.firstrow, 
div.galleryitem.odd.firstrow {
  background-position: 0px -15px;
}

div.useritem,
div.galleryitem {
  float: left;
  width: 158px;
  margin: 0;
  background-color: white;
  background-image: url(http://static.fokk.hu/images/skin1/item_background.png);
  padding: 15px 20px 0px 20px;
  display: block;
  min-height: 140px;
}

div.useritem.odd,
div.galleryitem.odd {
  width: 159px;
  background-position: 1px 0;
}

div.useritem div.varying,
div.galleryitem div.varying {
  overflow: hidden;
  margin: 0;
  height: 51px;
}

div.useritem p,
div.galleryitem p {
  font-size: 11px;
  margin: 0;
}

div.useritem div.image,
div.galleryitem div.image {
  clear: both;
  height: 120px;
}

div.useritem div.metadata,
div.galleryitem div.metadata {
  background-image: url(http://static.fokk.hu/images/skin1/item_background_dark.png);
  margin: 0 -20px 0 -20px;
  padding: 5px 0 5px 20px;
}

div.useritem div.metadata span,
div.galleryitem div.metadata span {
  font-size: 10px;
  margin-top: 2px;
}

div.galleryitem {
  float: left;
}

div#content.col1 div.itemwide h2 {
  margin: 7px 0 0 15px;
}

div.itemwide div.gallerymetadata {
  margin-top: 17px;
  float: left;
  width: 500px;
}

div.itemwide div.itemimage {
  float: left; 
  text-align: center;
  width: 150px;
  padding: 10px;
  margin: 5px 10px 0 0;
}

div.useritem div.metadata label {
  background-color: #d0aA93;
  margin-right: 10px;
  padding-top: 5px;
}

div.useritem div.access img {
  vertical-align: middle;
  margin-left: 8px;
}

/* areas: groupheader */

.groupheader {
  background-color: white;
}

.groupheader td {
  font-size: 11px;
  padding: 0 0 0 10px; 
  margin: 0;
}

.groupheader td.image {
  padding-right: 15px;
}

.groupheader td h2 {
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.groupheader .description {
  font-style: italic;
}

.groupheader .links {
  padding: 4px;
  background-color: #e0e0e0;
  text-align: center;
}

.groupheader .links a {
  margin-right: 20px;
}

#groupcontents a {
  color: black;
  font-size:    15px;
  text-decoration: none;
  margin-right: 15px;
}

#groupcontents a:hover {
  color: #404040;
}

#groupheaderlinks {
  width: 795px;
  float: left;
  padding: 0;
  margin: 10px 0 0 -10px;
  background-image: url(http://static.fokk.hu/images/skin1/content_groupheader_background.jpg);
  background-repeat: no-repeat;
}

#groupheaderlinks ul#groupheadertitles {
  list-style-type: none;
  display: block;
  float: left;
  width: 795px;
  clear: both;
  margin: 5px 0 0 0;
  overflow: hidden; /* in ff2 the card title partially overlaps card content links */
}

#groupheaderlinks ul#groupheadertitles li {
  background: none;
  float: left;
  display: block;
  height: 43px;
}

#groupheaderlinks ul#groupheadertitles li a {
  font-size: 17px;
  text-decoration: none;
  color: white;
  font-family: Trebuchet MS, Arial, sans-serif;
  letter-spacing: -1px;
  height: 24px;
  width: 100%;
}

#groupheaderlinks ul#groupheadertitles li {
  padding: 16px 0 0 10px;
  display: block;
  height: 24px;
}

#groupheaderlinks ul#groupheadertitles li#groupmembers   { width: 140px; padding: 10px 0 0 20px;}
#groupheaderlinks ul#groupheadertitles li#groupblog      { width: 129px; }
#groupheaderlinks ul#groupheadertitles li#groupgalleries { width: 137px; }
#groupheaderlinks ul#groupheadertitles li#groupprograms  { width: 156px; }
#groupheaderlinks ul#groupheadertitles li#grouplinks     { width: 120px; padding-top: 18px; }

#groupheaderlinks div { margin: 3px 0 0 0; float: left; }
#groupheaderlinks div#groupmemberscontent   { width: 150px; margin: 0 0 0 10px; }
#groupheaderlinks div#groupblogcontent      { width: 140px; }
#groupheaderlinks div#groupgalleriescontent { width: 147px; }
#groupheaderlinks div#groupprogramscontent  { width: 163px; }
#groupheaderlinks div#grouplinkscontent     { width: 173px; }
#groupheaderlinks div ul { width: 100%; clear: both; margin: 0px 0 8px 12px; padding: 0; }
#groupheaderlinks div ul li { background: none !important; margin: 0 0 3px 0; padding: 0; line-height: 13px; }
#groupheaderlinks div ul li a { color: white; text-decoration: none; font-size: 11px; }
#groupheaderlinks div ul li a:hover { text-decoration: underline; }

#groupheaderbottom { 
  clear: both;
  display: block;
  float: left;
  width: 795px;
  background-image: url(http://static.fokk.hu/images/skin1/content_groupheader_bottom.png);
  height: 25px;
  margin: 0 0 0 -10px;
  text-align: center;
  padding-top: 5px;
}

#groupheaderbottom a { 
  color: #707070;
  font-size: 12px;
  text-decoration: none;
}

/* areas: groupmembers */
#content #widesubcontent.pagingGroupsmembers {
  margin: 15px -10px 15px -10px;
}

/* areas: topright navigation */
#content #toprightnavigation {
  float: right;
  display: block;
  text-align: right;
  margin-right: 10px;
}

#content #toprightnavigation a.active {
  font-weight: bold;
  color: white;
}

/* areas: friendlist */
#content #friendlist .metadata {
  position: relative;
}

#content #friendlist input {
  margin-top: 2px;
  position: absolute;
  right: 10px;
  top: 5px;
}

/* areas: messages */

#content #messagenavigation a.active {
  background-color: #e0e0e0;
  color: #808080;
  text-decoration: none;
  padding: 0 3px 0 3px;
}

#content .messagereceived {
  color: green;
  width: 12px;
  clear: none;
  float: left;
  font-weight: bold;
  font-size: 20px;
  cursor: help;
}

#content .messagesent {
  color: blue;
  width: 12px;
  cursor: help;
  clear: none;
  float: left;
  font-weight: bold;
  font-size: 20px;
} 

#content table.styled td a.unreadmessage {
  font-weight: bold;
}

#content table.styled td a.readmessage {
  font-weight: normal;
}

/* areas: links */

#content .linksimage {
  float: left;
  width: 230px;
  padding: 10px 0 0 10px;
}

#content .linksdescription {
  width:   500px;
  float: left;
  overflow: hidden;
  padding: 0px 0 0 10px;
}

/* areas: search */
#content #searchsummary        { float: left; width: 400px; }
#content #searchsummary a      { font-size: 13px; }
#content #searchorder          { font-size: 12px; float: right; margin-right: 20px; }
#content #searchorder a        { font-size: 12px; }
#content #searchorder a.active { color: white; font-weight: bold; }

/* tables, comment rows */
table { 
  border-collapse: collapse;
  border: 0;
}

table td {
  margin: 0;
  padding: 2px;
}

/* areas: usergalleries wide */
div#content.col1 div.dividergallerieswide {
  background-image: url(http://static.fokk.hu/images/skin1/content_forum_divider.png);
  margin: 5px 0 5px -10px;
  float: left;
  width: 795px;
  height: 19px;
  clear: both;
}

/* special: users: external invitations selector page */
#content ul.externalproviders {
  margin: 0 0 0 60px;
  text-align: center;
  width: 660px;
  float: left;
}
#content ul.externalproviders li {
  display: block;
  float: left;
  margin: 20px; 
} 

#content ul.externalproviders li a {
  font-size: 12px;
  text-decoration: none;
  color: #808080;
}

#content ul.externalproviders li a:hover {
  text-decoration: underline;
}

#content ul.externalproviders li a:hover img {
  border: 1px solid #d0d0d0;
}

#content div.showname {
  height: 20px;
  overflow: hidden;
  width: 400px;
  float: left;
  clear: right;
  margin-left: 5px;
}

/* special: reject/comment admin table */
table.styled tr.item, 
table.styled tr.item td.dark {
  cursor: pointer;
}

table.styled tr.comment td.acceptrefuse {
  padding: 0;
  width: 795px;  
}

table.styled div.acceptcontainer {
  background-image: url(http://static.fokk.hu/images/skin1/content_groups_admin_acceptbackground.png);
  margin: -1px 0px 0 0px;
  padding: 4px 0 4px 0;
  width: 795px;
  float: left;
}

table.styled div.acceptcontainer span {
  float: left;
  display: block;
  height: 28px;
  font-size: 15px;
  color: white;
  font-weight: bold;
  padding: 9px 0 0 17px; 
}

table.styled div.acceptcontainer a {
  float: right;
}

table.styled div.acceptcontainer img {
  margin: 2px 10px 0 0;
}

table.styled div.refusecontainer {
  width: 759px;
  float: left;
  background-image: url(http://static.fokk.hu/images/skin1/content_groups_admin_refusebackground.png);
  background-repeat: repeat-y;
  padding: 0px 18px 10px 18px;
}

table.styled div.refusecontainer h3 {
  margin: 0 -18px 0 -18px;
  padding: 10px 18px 10px 18px;
  background-image: url(http://static.fokk.hu/images/skin1/content_groups_admin_refuseheaderbackground.png);
  background-repeat: no-repeat;
  color: white;
}

table.styled div.refusecontainer p {
  margin: 10px 0 3px 0;
  padding: 0;
  color: white;
  font-weight: bold;
}

table.styled div.refusecontainer textarea {
  width: 750px;
  clear: both;
}

table.styled div.refusecontainer select {
  background-color: #701100;
  border: 1px solid #cc211f;
  color: white;
  width: 500px;
}

table.styled div.refusecontainer a {
  background-color: #701100;
  border: 1px solid #cc211f;
  height: 22px;
  margin: 0 0 0 2px;
}

table.styled div.refusecontainer a img {
  margin: 2px 0 0 0;
}

table.styled div.refusecontainer input {
  margin: 0 0 0 0;
}

/* special: styled table and variations */
table.styled {
  margin: -10px -10px 0px -10px;
  width: 795px;
  clear: both;
}

table.styled.forumindex {
  margin: -10px -10px -6px -10px;
  width: 795px;
}

table.styled td.leftmost {
  padding: 0 0 0 10px;
}

table.styled td.icons {
  width: 28px;
}

table.styled th {
  background-image: url(http://static.fokk.hu/images/skin1/content_table_headerbackground.png);
  background-repeat: repeat-x; 
  color: #c3b08c;
  height: 30px;
  background-color: #e4dcb9; 
}

table.styled th, table.styled th a {
  color: #c3b08c;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-family: Verdana;
}

table.styled th a:hover {
  color: #d3c09c;
  text-decoration: underline;
}

table.styled td { 
  margin: 0; 
  padding: 2px; 
  vertical-align: middle;
  color: #541e00;
  font-size: 12px;
  background-image: url(http://static.fokk.hu/images/skin1/content_table_divider.png);
  background-repeat: repeat-x;
  background-position: 0 -4px;
}

table.styled td.dark, table.styled tr.dark td { 
  background-color: #e8e1c4;
  background-image: url(http://static.fokk.hu/images/skin1/content_table_divider_dark.png);
  background-repeat: repeat-x;
  background-position: 0 -5px;
}

table.styled td a {
  color: #ce2000;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  font-family: Verdana;
}

table.styled td a:hover {
  text-decoration: underline;
}

table.styled td.editbuttons {
  padding: 5px 0 5px 0;
}

table.styled td.editbuttons form {
  margin: 0;
}

#contentbody .emptylist {
  font-weight: bold;
}

.maxwidth { 
  width: 100%;
}
 
.activeSortcell { background-color: white; }
.activeSortlink { color: #808080; }

blockquote {
  background-color: #e0e0e0;
  margin: 10px 0 10px 0;
  padding: 10px 0 10px 20px;
  font-style: italic;
} 

#content .checkindescription {
  font-style: italic;
  margin: 0 0 0 20px;
}

#bannerplaceholder {
  margin-bottom: 10px;
}

/* special: rating */

.rating_container a {  
  float:left;  
  display:block;  
  width:25px;  
  height:17px;  
  border:0;  
  background-image:url(http://static.fokk.hu/images/skin1/rating.gif);  
  outline: none;
} 

.rating_container a.rating_off {  
  background-position:0 -5px;  
} 

.rating_container a.rating_half {  
  background-position:0 -30px;  
} 

.rating_container a.rating_on {  
  background-position:0 -55px;  
} 

.rating_container a.rating_selected {  
  background-position:0 -80px;  
}

.ratingstars {
  display: block;
  height: 18px;
  width: 20px;
  background-image:url(http://static.fokk.hu/images/skin1/ratingstar.gif);  
  background-repeat: repeat-x;
}

.star0   { width:  20px; background: none; }
.star0_5 { width:  19px; }
.star1   { width:  20px; }
.star1_5 { width:  29px; }
.star2   { width:  40px; }
.star2_5 { width:  49px; }
.star3   { width:  60px; }
.star3_5 { width:  69px; }
.star4   { width:  80px; }
.star4_5 { width:  89px; }
.star5   { width: 100px; }

/* special: tools/contact suggestions */
#tools_contact_suggestions {
  border: 1px solid #c0c0c0;
  width: 390px;
  margin-top: 5px;
  padding: 5px;
}

#tools_contact_suggestions h3 {
  background-image: url(http://static.fokk.hu/images/info.png);
  background-repeat: no-repeat;
  padding: 0 0 0 60px;
}

#tools_contact_suggestions a {
  color: green;
  font-weight: bold;
}

/* special: beautyselect */
ul.beautyselect {
  border: 1px solid #d0d0d0;
  color: white;
  z-index: 9999;
}

ul.beautyselect li {
  background-color: white;
}

ul.beautyselect li a {
  display: block;
  overflow: hidden;
  height: 18px;
  padding: 0 2px 0 2px;
  vertical-align: middle;
  text-decoration: none;
  color: black;
}

ul.beautyselect li a:hover {
  background-color: #a0a0a0;
  color: white;
}

ul.beautyselect li a.selected {
  background: #8080ff;
  color: white;
}

ul.beautyselect.headline {
  overflow: hidden;
}

ul.beautyselect.headline li,
ul.beautyselect.headline li a:hover {
  color: white;
  background-image: url(http://static.fokk.hu/images/arrow_down.png);
  background-repeat: no-repeat;
  background-position: 95% 50%;
}

ul.beautyselect.headline li a:hover {
  background-color: #f0f0f0;
  color: black;
}

/* special: program module location subheader */
.locationcontainer {
  background-color: #a0a0a0;
  background-image: url(http://static.fokk.hu/images/skin1/content_programs_locationbackground.png);
  color: white;
  clear: both;
  padding: 15px 5px 5px 15px;
  display: block;
  float: left;
  z-index: 9999;
} 

.locationcontainer a:hover {
  color: #f0f0f0;
}

.subheader a {
  color: white;
  font-size: 11px;
}

.subheader a:hover {
  color: #a0a0a0;
} 

.subheader #locationinfo { 
  width: auto;
  float: left;
  display: block;
  margin-right: 15px;
}

.subheader #locationinfo a {
  font-size: 13px;
  color: white;
}

.subheader #locationinfo a#countycity {
  margin-right: 15px;
  text-decoration: none;
  float: left;
}

.subheader #locationinfo a#countycity:hover {
  color: white;
}

.subheader a#cancellink, 
.subheader a#viewallcounties {
  display: block;
  float: left;
  padding: 2px 5px 2px 5px;
  text-decoration: none;
  background-color: #808080;
  color: white;
} 

.subheader a#viewallcounties:hover,
.subheader a#cancellink:hover {
  background-color: white;
  color: #808080;
}

.subheader a#cancellink {
  margin: 0 0 0 10px;
}

/* special: sharing popup */
body.sharing {
  padding: 10px;
  background-image: none;
  background-color: #a0a0a0;  
  color: #404040;
}

body.sharing div.header h1 {
  width: 800px;
  border-bottom: 2px solid #404040;
}

body.sharing #contentbody {
  width: 780px;
  background-color: white;
  padding: 10px;
  margin: 0 0 20px 0;
}

body.sharing .buttonrow {
  background: none;
  padding: 0;
  margin: 0;
}

body.sharing .buttonrow .buttontable {
  float: left;
}

/* special: ads: google banners */
#ads_undermenu_160x600 {
  float: left;
  margin: 15px 0 0 5px;
}




/* file: style_skin1_rightbox_v20100503.css */

/* -init- */

#rightcolumn .rightbox {
  width: 192px;
  padding: 0;
  margin: 0;
  list-style-type: none;
  float: left;
  clear: none;
}

#rightcolumn .rightbox li {
  background: none;
  display: block;
  float: left;
  clear: both;
  list-style-type: none;
  width: 192px;
  padding: 0;
  margin: 0;
}

/* common settings */

#rightcolumn .rightbox h2,
#rightcolumn .rightbox h2 a {
  font-size: 15px;
  font-weight: normal;
  font-family: Arial;
  text-decoration: underline;
  margin: 0;
} 

#rightcolumn .rightbox p {
  margin: 0;
  font-size: 12px;
}

#rightcolumn .rightbox .meta a {
  font-weight: bold; 
  text-decoration: none;
}

#rightcolumn .rightbox h1 {
  padding: 0;
  margin: 0;
  display: block;
  font-size: 20px;
  clear: both;
  float: left;
  text-transform: uppercase;
}

#rightcolumn .rightbox div.more {
  display: block;
  clear: both;
  float: left;
  font-size: 11px;
}

#rightcolumn .rightbox div.more a {
  text-transform: uppercase;
}

#rightcolumn .rightbox div.more img {
  margin: 8px 0 0 0;
}

#rightcolumn .rightbox .items .item h2 {
  color: white;
  text-decoration: none;
}

#rightcolumn .rightbox  a {
  color: white;
  text-decoration: none;
}

#rightcolumn .rightbox a:HOVER {
  text-decoration: underline;
}

/* index:programs */

#rightcolumn .rightbox #rightboxprograms h1#rightboxprogramsh1 {
  width: 154px;
  height: 35px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_programs_headback.png);
  padding: 22px 0 0 35px;
  color: #709478;
  margin: 0 0 0 1px;
}

#rightcolumn .rightbox #rightboxprograms h1#rightboxprogramsh1 a {
  color: #98685b;
}

#rightcolumn .rightbox #rightboxprograms div.more {
  width: 98px;
  height: 37px;
  padding: 0 0 0 85px;
  text-transform: uppercase;
  margin: 0px 0 0 7px;
  background: url(http://static.fokk.hu/images/skin1/rightbox_programs_footerback.png) 0 0 no-repeat;
}

/* index:programs - items */

#rightcolumn .rightbox #rightboxprograms .items {
  display: block;
  float: left;
  width: 171px;
  clear: both;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_programs_itemback.png);
  padding: 5px 0 5px 12px;
  margin: 0 0 0 7px;
}

#rightcolumn .rightbox #rightboxprograms .items .item {
  display: block;
  width:   160px;
  float: left;
  clear: none;
  padding: 0;
  margin: 0;
  color: #fae2dc;
}

#rightcolumn .rightbox #rightboxprograms .items .item h2 {
  width: 160px;
}

#rightcolumn .rightbox #rightboxprograms .items .divider {
  display: block;
  width:   183px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_programs_itemdivider.png);
  height: 10px;
  margin: 0 5px 3px -12px;
  float: left;
  clear: both;
}

#rightcolumn .rightbox #rightboxprograms .items .item p {
  padding: 5px 5px 5px 14px;
} 

#rightcolumn .rightbox #rightboxprograms .items .item p span {
  color: #faaf9e;
}

/* index:news */

#rightcolumn .rightbox #rightboxnews {
  margin-top: 16px;
}

#rightcolumn .rightbox #rightboxnews h1#rightboxnewsh1 {
  width: 149px;
  height: 33px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_news_headback.png);
  padding: 5px 0 0 40px;
  color: #7f7d61;
  margin: 0 0 0 1px;
}

#rightcolumn .rightbox #rightboxnews h1#rightboxnewsh1 a {
  color: #7f7d61;
}

#rightcolumn .rightbox #rightboxnews div.more {
  width: 69px;
  height: 45px;
  padding: 0px 0 0 115px;
  margin: 0px 0 0 6px;
  background: url(http://static.fokk.hu/images/skin1/rightbox_news_footerback.png) 0 0 no-repeat;
}

/* index:news - items */

#rightcolumn .rightbox #rightboxnews .items {
  display: block;
  float: left;
  width: 171px;
  clear: both;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_news_itemback.png);
  padding: 5px 0 0 12px;
  margin: 0 0 0 7px;
}

#rightcolumn .rightbox #rightboxnews .items .item {
  display: block;
  width:   160px;
  float: left;
  clear: none;
  padding: 0;
  margin: 0;
  color: white;
}

#rightcolumn .rightbox #rightboxnews .items .divider {
  display: block;
  width:   378px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_news_itemdivider.png);
  background-position: -13px 0;
  height: 18px;
  margin: 0 5px 0 -10px;
  float: left;
  clear: both;
}

#rightcolumn .rightbox #rightboxnews .items .item h2 {
  color: white;
  text-decoration: none;
  padding: 4px 3px 0px 3px;
}

#rightcolumn .rightbox #rightboxnews a {
  color: white;
  text-decoration: none;
}

#rightcolumn .rightbox #rightboxnews a:HOVER {
  text-decoration: underline;
}

#rightcolumn .rightbox #rightboxnews .items .item p {
  padding: 0px 5px 5px 3px;
} 

#rightcolumn .rightbox #rightboxnews .items .item .date {
  color: #d6cf72;
  padding: 0 5px 5px 3px;
  font-weight: bold;
}

/* index:news - subnews items */

#rightcolumn .rightbox #rightboxnews .dividersmall {
  display: block;
  width:   183px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_news_itemdivider_smallblock.png);
  background-position: 0px 0;
  height: 18px;
  margin: 0 0 0 7px;
  float: left;
  clear: both;
}

#rightcolumn .rightbox #rightboxnews .subnews {
  display: block;
  width:   173px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_news_itemback_smallblock.png);
  float: left;
  clear: none;
  padding: 5px;
  margin: 0 0 0 7px;
  color: #fae2dc;
}

#rightcolumn .rightbox #rightboxnews .subnews li {
  background: url(http://static.fokk.hu/images/skin1/listitem_black.png) 5px 4px no-repeat;
  width:   160px;
  padding: 0 0 0 18px;
  margin: 0 0 4px 0;
  font-size: 12px;
  line-height: 16px;
}

#rightcolumn .rightbox #rightboxnews .subnews li a {
  float: left;
  display: block;
  padding: 0 5px 0 0;
  clear: both;
}

#rightcolumn .rightbox #rightboxnews .subnews li div {
  float: left;
  clear: both;
  font-weight: bold;
  width: 75px;
  overflow: hidden;
}

#rightcolumn .rightbox #rightboxnews .subnews li div span {
  color: #f6cc00;
}

/* index:galleries */

#rightcolumn .rightbox #rightboxgalleries h1#rightboxgalleriesh1 {
  width: 145px;
  height: 37px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_galleries_headback.png);
  padding: 17px 0 0 40px;
  color: #709478;
  margin: 0 0 0 5px;
}

#rightcolumn .rightbox #rightboxgalleries h1#rightboxgalleriesh1 a {
  color: #8a8927;
}

#rightcolumn .rightbox #rightboxgalleries div.more {
  width: 94px;
  height: 37px;
  padding: 1px 0 0 95px;
  margin: 0px 0 0 1px;
  background: url(http://static.fokk.hu/images/skin1/rightbox_galleries_footerback.png) 0 0 no-repeat;
}

/* index:galleries - items */

#rightcolumn .rightbox #rightboxgalleries .items {
  display: block;
  float: left;
  width: 183px;
  clear: both;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_galleries_itemback.png);
  margin: 0px 0 0px 7px;
}

#rightcolumn .rightbox #rightboxgalleries .items .item {
  display: block;
  width:   158px;
  float: left;
  clear: none;
  padding: 10px 10px 5px 15px;
}

#rightcolumn .rightbox #rightboxgalleries .items .item h2,
#rightcolumn .rightbox #rightboxgalleries .items .item h2 a {
  color: white;
}

#rightcolumn .rightbox #rightboxgalleries .items .item div.meta {
  color: #ebea48;
  font-size: 11px;
}

#rightcolumn .rightbox #rightboxgalleries .items .item p {
  color: #cccccc;
  padding: 0 0 0 5px;
} 

/* index:links */

#rightcolumn .rightbox #rightboxlinks h1#rightboxlinksh1 {
  width: 126px;
  height: 40px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_links_headback.png);
  padding: 8px 0 0 58px;
  color: #709478;
  margin: 0 0 0 6px;
}

#rightcolumn .rightbox #rightboxlinks h1#rightboxlinksh1 a {
  color: #657f8b;
}

#rightcolumn .rightbox #rightboxlinks div.more {
  width: 73px;
  height: 47px;
  padding: 0 0 0 110px;
  margin: 0 0 0 7px;
  background: url(http://static.fokk.hu/images/skin1/rightbox_links_footerback.png) 0 0 no-repeat;
}

/* index:links - items */

#rightcolumn .rightbox #rightboxlinks ul {
  display: block;
  float: left;
  width: 190px;
  clear: both;
}

#rightcolumn .rightbox #rightboxlinks ul li {
  display: block;
  width:   163px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_links_itemback.png);
  float: left;
  clear: both;
  margin: 0 0 0 7px;
  padding: 10px 10px 15px 10px;
}
 
#rightcolumn .rightbox #rightboxlinks li h2 {
  color: white;
  padding: 13px 10px 0 10px;
  margin: -20px 0 0 -10px;
  width: 163px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_links_itemdivider.png);
  background-repeat: no-repeat;
}

#rightcolumn .rightbox #rightboxlinks li h2.first {
  background: none;
}

#rightcolumn .rightbox #rightboxlinks li h2 a {
  color: white;
}

#rightcolumn .rightbox #rightboxlinks li a.external {
  clear: both;
  float: left;
  color: #b8e4fb;
  text-decoration: none;
  font-weight: bold;
  font-size: 10px;
  display: block;
  width: 163px;
  padding: 0;
  height: 15px;
  overflow: hidden;
}

#rightcolumn .rightbox #rightboxlinks li a.external:hover {
  color: #10bEFF;
}

/* index:groups */

#rightcolumn .rightbox #rightboxgroups h1#rightboxgroupsh1 {
  width: 120px;
  height: 34px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_groups_headback.png);
  padding: 15px 0 0 70px;
  margin: 0 0 0 1px;
  color: #709478;
}

#rightcolumn .rightbox #rightboxgroups h1#rightboxgroupsh1 a {
  color: #709478;
}

#rightcolumn .rightbox #rightboxgroups div.more {
  width: 98px;
  height: 42px;
  padding: 3px 0 0 85px;
  margin: 0 0 0 7px;
  background: url(http://static.fokk.hu/images/skin1/rightbox_groups_footerback.png) 0 0 no-repeat;
}

/* index:groups - items */

#rightcolumn .rightbox #rightboxgroups ul {
  display: block;
  float: left;
  width: 183px;
  clear: both;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_groups_itemback.png);
  margin: 0 0 0px 7px;
}

#rightcolumn .rightbox #rightboxgroups ul li {
  display: block;
  width:   158px;
  float: left;
  clear: none;
  padding: 15px 10px 5px 15px;
}
 
#rightcolumn .rightbox #rightboxgroups li h2,
#rightcolumn .rightbox #rightboxgroups li h2 a {
  color: white;
}

#rightcolumn .rightbox #rightboxgroups li p {
  color: #aad1b0;
} 

/* index:blogs */

#rightcolumn .rightbox #rightboxblogs h1#rightboxblogsh1 {
  width: 133px;
  height: 34px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_blogs_headback.png);
  padding: 15px 0 0 56px;
  color: #709478;
  margin: 0 0 0 1px;
}

#rightcolumn .rightbox #rightboxblogs h1#rightboxblogsh1 a {
  color: #716185;
}

#rightcolumn .rightbox #rightboxblogs div.more {
  width: 80px;
  height: 40px;
  padding: 0px 0 0 110px;
  margin: 0 0 0 0;
  background: url(http://static.fokk.hu/images/skin1/rightbox_blogs_footerback.png) 0 0 no-repeat;
}

/* index:blogs - items */

#rightcolumn .rightbox #rightboxblogs ul {
  display: block;
  float: left;
  width: 190px;
  clear: both;
}

#rightcolumn .rightbox #rightboxblogs ul li {
  display: block;
  width:   163px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_blogs_itemback.png);
  float: left;
  clear: both;
  margin: 0 0 0 7px;
  padding: 10px 10px 5px 10px;
}
 
#rightcolumn .rightbox #rightboxblogs li h2,
#rightcolumn .rightbox #rightboxblogs li h2 a {
  color: white;
}

#rightcolumn .rightbox #rightboxblogs li .meta,
#rightcolumn .rightbox #rightboxblogs li .meta a {
  color: #CDBEDF;
}

#rightcolumn .rightbox #rightboxblogs li p {
  margin-top: 5px;
  color: #efe0ff;
} 

/* index:forum */

#rightcolumn .rightbox #rightboxforum h1#rightboxforumh1 {
  width: 147px;
  height: 32px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_forum_headback.png);
  padding: 16px 0 0 40px;
  margin: 0 0 0 3px;
  color: #709478;
}

#rightcolumn .rightbox #rightboxforum h1#rightboxforumh1 a {
  color: #bb702b;
}

#rightcolumn .rightbox #rightboxforum div.more {
  width: 92px;
  height: 37px;
  padding: 0px 0 0 102px;
  margin: 0 0 0 1px;
  background: url(http://static.fokk.hu/images/skin1/rightbox_forum_footerback.png) 3px 0 no-repeat;
}

/* index:forum - items */

#rightcolumn .rightbox #rightboxforum ul {
  display: block;
  float: left;
  width: 163px;
  clear: both;
  margin: 0 0 0 7px;
  padding: 0px 10px 5px 10px;
  background-image: url(http://static.fokk.hu/images/skin1/rightbox_forum_itemback.png);
}

#rightcolumn .rightbox #rightboxforum li {
  width: 163px;
}

#rightcolumn .rightbox #rightboxforum li a {
  color: white;
  text-decoration: underline;
}




/* file: lightwindow_v20100503.css */

#lightwindow_overlay {
	/* REQUIRED */
	display: none;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	z-index: 500;
	/* REQUIRED */
}

#lightwindow {
	/* REQUIRED */
	/* Of Note - The height and width of this element are set to 0px */
	display: none;
	visibility: hidden;
	position: absolute;
	z-index: 999;
	line-height: 0px;
	/* REQUIRED */
}

	#lightwindow_container {
		/* REQUIRED */
		display: none;
		visibility: hidden;
		position: absolute;
		/* REQUIRED */
		padding: 0 0 0 0;
		margin: 0 0 0 0;
	}

	/* IE6 needs this or it messes with our positioning */
	* html #lightwindow_container {
		overflow: hidden;
	}

	#lightwindow_contents {
		overflow: hidden;
		z-index: 0;
		position: relative;
		border: 10px solid #ffffff;
		background-color: #ffffff;
	}		

#lightwindow_loading {
	/* REQUIRED */
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	z-index: 9999;
	position: absolute;
	/* REQUIRED */
	background-color: #f0f0f0;
	padding: 10px;
}

	#lightwindow_loading_shim { 
		display: none;
		left: 0px; 
		position: absolute; 
		top: 0px;
		width: 100%; 
		height: 100%;
	}

	#lightwindow_loading span {
    	font-size: 12px;
		line-height: 32px;
		color: #444444;
		float: left;
		padding: 0 10px 0 0;
	}

	#lightwindow_loading span a,
	#lightwindow_loading span a:link, 
	#lightwindow_loading span a:visited {
		color: #09F;
		text-decoration: none;
		cursor: pointer;
	}

	#lightwindow_loading span a:hover,
	#lightwindow_loading span a:active {
		text-decoration: underline;
	}


	#lightwindow_loading img {
   		float: left;
   		margin: 0 10px 0 0;
	}


/*-----------------------------------------------------------------------------------------------
	I liked the Navigation so much from http://www.huddletogether.com/projects/lightbox2/
	I mean let's face it, it works really well and is very easy to figure out.
-----------------------------------------------------------------------------------------------*/

#lightwindow_navigation {
	/* REQUIRED */
	position: absolute;
	top: 0px;
	left: 0px;
	display: none;
	/* REQUIRED */
}
	/* We need to shim the navigation for IE, though its more of a sub-floor */
	#lightwindow_navigation_shim { 
		/* REQUIRED */
		display: none;
		left: 0px; 
		position: absolute; 
		top: 0px;
		width: 100%; 
		height: 100%;
		/* REQUIRED */
	}

	#lightwindow_navigation a,
	#lightwindow_navigation a:link,
	#lightwindow_navigation a:visited,
	#lightwindow_navigation a:hover,
	#lightwindow_navigation a:active { 
		/* REQUIRED */
		outline: none;
		/* REQUIRED */
	}

	#lightwindow_previous, 
	#lightwindow_next {
		width: 49%;
		height: 100%;
		background: transparent url(http://static.fokk.hu/images/lightwindow/blank.gif) no-repeat; /* Trick IE into showing hover */
		display: block;
	}
	
	#lightwindow_previous { 
		float: left;
		left: 0px;
	}

	#lightwindow_next { 
		float: right;
		right: 0px;
	}

	#lightwindow_previous:hover, 
	#lightwindow_previous:active { 
		background: url(http://static.fokk.hu/images/lightwindow/prevlabel.gif) left 15% no-repeat; 
	}

	#lightwindow_next:hover, 
	#lightwindow_next:active { 
		background: url(http://static.fokk.hu/images/lightwindow/nextlabel.gif) right 15% no-repeat; 
	}
	
	#lightwindow_previous_title,
	#lightwindow_next_title {
		display: none;
	}
	 	
#lightwindow_galleries {
	width: 100%;
	position: absolute;
	z-index: 50; 
	display: none;
	overflow: hidden;
	margin: 0 0 0 10px;
	bottom: 0px;
	left: 0px;
}

	#lightwindow_galleries_tab_container {
		width: 100%;
		height: 0px;
		overflow: hidden;
	}

	a#lightwindow_galleries_tab,		
	a:link#lightwindow_galleries_tab,
	a:visited#lightwindow_galleries_tab {
		display: block;
		height: 20px;
		width: 77px;
		float: right;
		line-height: 22px;
		color: #ffffff;
		text-decoration: none;
		font-weight: bold;
		cursor: pointer;
		font-size: 11px;
		color: #ffffbe;
		background: url(http://static.fokk.hu/images/lightwindow/black-70.png) repeat 0 0 transparent;
	}
	
	* html a#lightwindow_galleries_tab,		
	* html a:link#lightwindow_galleries_tab,
	* html a:visited#lightwindow_galleries_tab {	
		background: none;
		background-color: #000000;
		opacity: .70;
		filter: alpha(opacity=70);
	}

	a:hover#lightwindow_galleries_tab,
	a:active#lightwindow_galleries_tab {
		color: #ffffbe;

	}

	#lightwindow_galleries_tab_span {
		display: block;
		height: 20px;
		width: 63px;
		padding: 0 7px 0 7px;
	}
	
	#lightwindow_galleries_tab .up	{
		background: url(http://static.fokk.hu/images/lightwindow/arrow-up.gif) no-repeat 60px 5px transparent;
	}

	#lightwindow_galleries_tab .down {
		background: url(http://static.fokk.hu/images/lightwindow/arrow-down.gif) no-repeat 60px 6px transparent;
	}

	#lightwindow_galleries_list {
		background: url(http://static.fokk.hu/images/lightwindow/black-70.png) repeat 0 0 transparent;
		overflow: hidden;
		height: 0px;
	}

	* html #lightwindow_galleries_list {
		background: none;
		background-color: #000000;
		opacity: .70;
		filter: alpha(opacity=70);
	}	

	.lightwindow_galleries_list {
		width: 200px;
		float: left;
		margin: 0 0 10px 0;
		padding: 10px;
	}

	.lightwindow_galleries_list h1 {	
		color: #09F;
		text-decoration: none;
		font-weight: bold;
		cursor: pointer;
		padding: 10px 0 5px 0;
		font-size: 16px;
	}

	.lightwindow_galleries_list li {
		margin: 5px 0 5px 0;
		list-style-type: none;
	}

	.lightwindow_galleries_list a, 
	.lightwindow_galleries_list a:link, 
	.lightwindow_galleries_list a:visited {
		display: block;
		line-height: 22px;
		color: #ffffff;
		text-decoration: none;
		font-weight: bold;
		cursor: pointer;
		padding: 0 0 0 10px;
		font-size: 11px;
	}

	.lightwindow_galleries_list a:hover, 
	.lightwindow_galleries_list a:active {
		background: #000000;
		color: #ffffbe;
		border-left: 3px solid #ffffbe;
		padding: 0 0 0 7px;
	}
		
#lightwindow_data {
	/* REQUIRED */
	position: absolute;
	/* REQUIRED */
}

	#lightwindow_data_slide {
		/* REQUIRED */
		position: relative;
		/* REQUIRED */
	}

	#lightwindow_data_slide_inner {
		background-color: #ffffff;
		padding: 0 10px 10px 10px;
	}

	#lightwindow_data_caption {
		padding: 10px 0 0 0;
		color: #666666;
		line-height: 25px;
		background-color: #ffffff;
		clear: both;
	}

	#lightwindow_data_details {
		background-color: #f0f0f0;
		padding: 0 10px 0 10px;
		height: 20px;
	}
	
	#lightwindow_data_author_container {
		width: 40%;
		text-align: right;
		color: #666666;
	 	font-style: italic;
		font-size: 10px;
		line-height: 20px;
		float: right;
		overflow: hidden;
	}
	
	#lightwindow_data_gallery_container {
		font-size: 10px;
		width: 40%;
		text-align: left;
		color: #666666;
		line-height: 20px;
		float: left;
		overflow: hidden;
	}
	
#lightwindow_title_bar {
	height: 25px;
	overflow: hidden;		
}

	#lightwindow_title_bar_title {
		color: #ffffbe;
		font-size: 14px;
		line-height: 25px;
		text-align: left;
		float: left;
	}

	a#lightwindow_title_bar_close_link,	
	a:link#lightwindow_title_bar_close_link,
	a:visited#lightwindow_title_bar_close_link {
		float: right;
		text-align: right;		
		cursor: pointer;
		color: #ffffbe;
		line-height: 25px;
		padding: 0;
		margin: 0;
	}
	
	a:hover#lightwindow_title_bar_close_link,
	a:active#lightwindow_title_bar_close_link {
		color: #ffffff;
	}

/*-----------------------------------------------------------------------------------------------
	Theme styling stuff
-----------------------------------------------------------------------------------------------*/	

#lightwindow p {
	color: #000000;
	padding-right: 10px;
}

#lightwindow_title_bar_close_link img {
  vertical-align: middle;
  margin: 0 0 0 5px;
}



/* file: textboxlist_v20100503.css */

/* TextboxList sample CSS */
ul.holder { margin: 0; border: 1px solid #999; overflow: hidden; height: auto !important; height: 1%; padding: 4px 5px 0; }
*:first-child+html ul.holder { padding-bottom: 2px; } * html ul.holder { padding-bottom: 2px; } /* ie7 and below */
ul.holder li { float: left; list-style-type: none; margin: 0 5px 4px 0; }
ul.holder li.bit-box, ul.holder li.bit-input input { font: 11px "Lucida Grande", "Verdana"; }
ul.holder li.bit-box { -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px; border: 1px solid #CAD8F3; background: #DEE7F8; padding: 1px 5px 2px; position: relative; padding-right: 15px; }
ul.holder li.bit-box-focus { border-color: #598BEC; background: #598BEC; color: #fff; }
ul.holder li.bit-input input { width: 150px; margin: 0; border: none; outline: 0; padding: 3px 0 2px; } /* no left/right padding here please */
ul.holder li.bit-input input.smallinput { width: 20px; }
ul.holder li.group { border: 1px solid #c0c080; background: #FFFF80; }

ul.holder li.bit-hover { background: #BBCEF1; border: 1px solid #6D95E0; }
ul.holder li.bit-hover.group { background: #f0f080; border: 1px solid #a0a040; }
ul.holder li.bit-box-focus { border-color: #598BEC; background: #598BEC; color: #fff; }
ul.holder li.bit-box-focus.group { background: #b0b040; border: 1px solid #b0b040; color: #fff; }
ul.holder li.bit-box a.closebutton { position: absolute; right: 4px; top: 5px; display: block; width: 7px; height: 7px; font-size: 1px; background: url(http://static.fokk.hu/images/textboxlist_close.gif); }
ul.holder li.bit-box a.closebutton:hover { background-position: 7px; }
ul.holder li.bit-box-focus a.closebutton, ul.holder li.bit-box-focus a.closebutton:hover { background-position: bottom; }

/* Autocompleter */

#textboxlist-auto { display: none; position: absolute; width: 512px; background: #eee; }
#textboxlist-auto .default { padding: 5px 7px; border: 1px solid #ccc; border-width: 0 1px 1px; }
#textboxlist-auto ul { display: none; margin: 0; padding: 0; overflow: auto; }
#textboxlist-auto ul li { padding: 5px 12px; z-index: 1000; cursor: pointer; margin: 0; list-style-type: none; border: 1px solid #ccc; border-width: 0 1px 1px; font: 11px "Lucida Grande", "Verdana"; }
#textboxlist-auto ul li em { font-weight: bold; font-style: normal; background: #ccc; }
#textboxlist-auto ul li.auto-focus { background: #4173CC; color: #fff; }
#textboxlist-auto ul li.auto-focus em { background: none; }

#demo ul.holder li.bit-input input { padding: 2px 0 1px; border: 1px solid #999; }
#add a { color: #666; }
#add-test { width: 100px; padding: 2px; }
#button_container { margin-left: 70px; margin-bottom: 30px;}


