 
@charset "utf-8";
/*==============================================================================
HSTECHNIK.sk CSS

# CONTENT OF CSS
-------------------------
01. LIBRARIES IMPORT
02. GLOBAL
03. TYPOGRAPHY AND COLORS
04. LINKS
05. HEADERS
06. TABLES
07. FORMS
08. NAVIGATION
09. STRUCTURE
10. LOGIN
11. OTHER
==============================================================================*/

/* LIBRARIES IMPORT
==============================================================================*/
/*@import url("reset.css");*/

/* GLOBAL
==============================================================================*/
.noscreen {
	display: none;
}

.screen {
	display: block;
}

.invisible {
	visibility: hidden;
}

.visible {
	visibility: visible!important;
}

.cleaner {
	clear: both;
	line-height: 0px;
	font-size: 0px;
}

.floatleft {
	float: left;
}

.floatright {
	float: right;
}

.nofloat {
	float: none;
}

.textleft {
	text-align: left;
}

.textright {
	text-align: right;
}

.textcenter {
	text-align: center;
}

.textjustify {
	text-align: justify;
}

.marginT10 {
	margin-top: 10px;
}
 
.marginT20 {
	margin-top: 20px;
}
 
.marginB10 {
	margin-bottom: 10px;
} 

.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.underline {
	border-bottom: 1px solid;
}

.imgleft {
	float: left;
	margin: 4px 10px 4px 0;
}

.imgright {
	float:right;
	margin: 4px 0 4px 10px;
}

.imgborder {
	border: 2px solid #36464e;
	background: #2c3a42;
}

.imgwhiteborder {
	border: 2px solid #FFF;
}

.offsetborder {
	border: 1px solid #CFCFCF;
	padding: 2px;
}
 
.nopadding {
	padding: 0;
}

.noindent {
	margin-left: 0;
	padding-left: 0;
}

.nobullet {
	list-style: none;
	list-style-image: none;
	list-style-type: none;
}

.nobackground {
	background: transparent;
}

.half {
	width: 47%;
}

.third {
	width: 30%;
}

.fourth {
	width: 24%;
}

.three-fourths {
	width: 72%;
}

.hand {
	cursor: pointer;
}

.orange {
	color: #EF7E2A/*rgb(247, 139, 65)*/;
}

.red {
	color: rgb(255, 58, 58);
}

.green {
	color: green;
}

.blue {
	color: #43A5D5;
}

.gray {
	color: #5C5C5C;
}

p.divider {
	width: 100%;
	height: 5px;
	line-height: 5px;
	background: url(./design/line-horizontal-dotted.gif) left top repeat-x;
	margin: 3px 0 0 3px;
	padding: 0 0 0 0;
	clear: both;
}

/* TYPOGRAPHY AND COLORS
==============================================================================*/
html, body {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

body {
	font-size: small;
	font-family: Arial, Verdana, Geneva, sans-serif;
	background: #fff;
	/*background-attachment: fixed;*/
	text-align: center;
	color: #353535;
}

p {
	line-height: 1.2em;
}

ul, ol {
	padding: 0 0 1em 0;
}
 
ul, ol {
	padding: 0 0 1.25em 2.5em;
	line-height: 1.4em;
}

ul {
	list-style-type: disc;
}

ol {
	list-style-type: decimal;
}

ol li {
	padding-bottom: 10px;
}

small {
	font-size: 0.85em;
}

blockquote, q {
	background: url(./design/quotation-mark.gif) left top no-repeat;
	margin-left: 0;
	padding-left: 3em;
}

.highlight {
	background: #ffc;
}

.pipes {
	list-style-image: url(./design/list-pipe.gif);
}

/* LINKS
==============================================================================*/
a {
	color: #353535;
	text-decoration: none;
	outline: none;
}

a.undeline {
	text-decoration: underline;
}

a.more {
	display: block;
	text-align: right;
}

a:hover {
	color: #353535;
	text-decoration: none;
}

a img {
	border: 0px;
}

/* HEADERS
==============================================================================*/
h1, h2, h3, h4, h5, h6 {
	color: #353535;
	font-weight: normal;
	margin: 0;
	clear: both;
}
 
h1 {
	margin: 0 0 0.7em 0;
	padding: 0;
	font-size: 1.2em;
	font-weight: bold;
}

h1 a {
	color: #353535;
	text-decoration: none;
}

h1 a:hover {
	color: #353535;
	text-decoration: none;
}

h2 {
	font-size: 1.3em;
	font-weight: bold;
	padding: 0;
	margin: 0 0 0.6em 0;
	letter-spacing: 0;
}
 
h3 {
	font-size: 1.1em;
	font-weight: bold;
	padding: 0;
	margin: 0 0 0.2em 0;
}

h4 {
	font-size: 1em;
	padding: 0.1em 0;
}

h5 {
	font-size: 1em;
	font-weight: bold;
	padding: 0.1em 0;
}

h6 {
	font-size: 0.8em;
	font-weight: bold;
	padding: 1em 0;
}

/* TABLES
==============================================================================*/

table {
	border-collapse: collapse;
}

table.full {
	width: 100%;
}

td, th {
	padding: 5px;
}

th {
	text-align: center;
	font-weight: bold;
}

/* FORMS
==============================================================================*/
form {
  width: 100%; 
}

form label, form .textbox, select, textarea, form .container {
  display: block;
  float: left;
  width: 200px;
  margin: 3px 0;
  padding: 2px 5px;
}

.instructions {
	padding: 0.5em;
	margin: 10px 0;
	border: 1px solid #ededb3;
	background: #ffffcc;
}

form p {
	margin: 10px 0;
}

form .container {
	width: 70%;
	margin: 0;
}

form .textbox, select, textarea, checkbox {
	border: 1px solid #cccccc;	
}

form span {
	padding: 5px; 
}

form select {
  width: 214px;
}

form textarea {
  height: 200px;
}

form label {
  width: 120px;
  padding: 0.3em 20px 0.3em 0;
  text-align: right;
}

form label.require {
	background: url(./design/require-star.png) right top no-repeat;
}

form .container label {
  float: left;
  display: block;
  width: 80%;
  padding: 0 1em 0 0;
  margin-left: 10px; 
  text-align: left;
}

form#contactForm label {
	/*float: right;*/
	width: 130px;
	font-size: 0.85em;
}

form#contactForm .textbox.wider {
	width: 434px;
}

form#contactForm input.textbox {
	background-color: #DCE6EB;
	color: #353535;
}

form#contactForm input.formbutton {
	padding: 5px 10px;
	background: #dc822a url(./design/button-bg.png) left top no-repeat;
	border: none;
	color: #fff;
	font-size: 0.85em;
}

form#contactForm textarea.textbox {
	background-color: #DCE6EB;
	color: #353535;
}

form#contactForm textarea.textbox.wider {
	width: 432px;
}

form#contactForm div.sendcopy {
	width: 280px;
	float: left;
	padding-top: 5px;
	margin-left: 150px;
}

form#contactForm div.sendcopy input.checkbox {
	float: left;
	vertical-align: sub;
	margin: 5px 10px 0 0;
}

form#contactForm div.sendcopy label {
	width: 200px;
	float: left;
	text-align: left;
}

form#contactForm div.button {
	float: right;
	width: 127px;
}

form .container input {
  float: left;
  padding: 0.3em;
  margin-top: 2px;
}

form br {
  clear: left;
}

form input.submit {
  padding: 1em;
}

form fieldset {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #cccccc;
}

form fieldset.collapsed {
	height: 30px;
	overflow: hidden;
	padding: 0 0 0 10px;
	border-width:  1px 0 0 0;
	margin-bottom: 5px;
}

form fieldset.collapsed .inside {
	display: none;
}

form legend {
  padding: 0.5em;
  color: gray;
  font-weight: bold;
  background: #E8E8E8;
}

fieldset.collapsed legend {
	padding-left: 1.8em;
	cursor: pointer;
	background: #E8E8E8 url(../images/collapse-expand-arrows.gif) 9px 9px no-repeat;
}

fieldset legend, fieldset.expanded legend {
	padding-left: 1.8em;
	cursor: pointer;
	background: #E8E8E8 url(../images/collapse-expand-arrows.gif) 9px -10px no-repeat;
}

form fieldset.noframe {
  padding: 0;
  margin-bottom: 0;
  border: none;
}

form input.radio {
  width: 15px;
  margin-left: 160px;
}

form .formbutton {
	padding: 0.5em 1em;
	margin-bottom: 10px;
	background-position: 5px center;
	background-repeat: no-repeat;
}

form .formbutton.center {
	float: none;
	margin: 5px auto;
	padding: 0.5em 1em;
}

form .readonly{
	color: #6e6e6e;
	background: #f0f0f0;
}

form .instructions {
	padding: 0.5em;
	margin: 10px 0;
	border: 1px solid #ededb3;
	background: #ffffcc;
}

/* widths and heights inputs */
form .wider {
	width: 610px;
}

form .wide {
	width: 300px;
}

form select.wide {
	width: 460px;
}

form .narrow {
	width: 110px;
}

form select.narrow {
	width: 120px;
}

form .narrower {
	width: 50px;
}

form textarea.short {
	height: 75px;
}

form textarea.long {
	height: 400px;
}
/*
form .require {
	color: #ff0000;
}
*/
form small {
	color: #818C9F;
	padding: 0.3em;
	margin-top: 2px;
}

form .container {
	padding: 0 0 0 0;
	/*line-height: 2em;*/
}

form small.error_message {
	background: transparent url(../images/marker-arrow.png) left top no-repeat;
	padding-left: 15px;
	margin-bottom: 2px;
	color: #EF7E2A;
}

/* NAVIGATION
==============================================================================*/

/* top menu */
#topmenu {
	float: left;
	width: 560px;
	height: 22px;
	font-size: 0.87em;
	text-align: center;
	/*overflow: hidden;*/
	padding: 0;
	margin: 25px 0 0 0;
}

#topmenu ul {
	display: inline;
	list-style-type: none;
	text-align: center;
	margin: 0 auto;
	padding: 0;
}

#topmenu ul ul {
	width: 850px;
	height: 21px;
	overflow: hidden;
	position: absolute;
	top: 47px;
	left: 24px;
	z-index: 999;
	text-align: center;
	background: #282828;
	margin: 0;
	padding: 4px 0 0 0!important;
}

#topmenu ul ul ul {
	top: 0;
	left: 100%;
	padding-left: 1px;
}

#topmenu ul li {
	/*float: left;*/
	display: inline;
	background: transparent url(./design/topmenu-list-divider.gif) left center no-repeat;
	padding: 0px 0 0 1px!important;
	margin: 0px;
}

#topmenu ul li.first {
	background: none;
}

#topmenu ul li {
	behavior: url(/csshover.htc);
}

#topmenu ul li a {
	color: #353535;
	border-bottom: 5px solid #fff;
	text-decoration: none;
	text-align: center;
	padding: 5px 20px 2px 20px;
	margin: 0 -3px 0 0;
}

#topmenu ul li:hover a,
#topmenu ul li a:hover,
#topmenu ul li a.selected {
	border-color: #ffe600;
}
 
#topmenu ul li a.selected {
	color: #353535;
}

#topmenu ul ul li {
	display: inline;
	color: white;
	line-height: 20px;
	background: #282828 url(./design/topmenu-sublist-divider.gif) left center no-repeat;
	padding: 0;
	margin: 0!important;
	border: none;
}

#topmenu ul li:hover li a,
#topmenu ul ul li a {
	text-align: left;
	color: white;
	border: none;
	line-height: 20px;
	padding: 0 15px 0 15px;
}

#topmenu ul ul li:hover a,
#topmenu ul ul li a:hover, 
#topmenu ul ul li a.selected {
	color: #ffe600;
	line-height: 20px;
}

div#topmenu ul ul,
div#topmenu ul li:hover ul ul,
div#topmenu ul ul li:hover ul ul {
	display: none;
}

div#topmenu ul ul.active {
	display: inline;
}

div#topmenu ul li:hover ul,
div#topmenu ul ul li:hover ul,
div#topmenu ul ul ul li:hover ul {
	display: inline;
	z-index: 9999;
}

/* guide-post menu */
#guidepostmenu {
	width: 100%;
	height: 84px;
	padding: 0;
	margin: 0;
}

#guidepostmenu ul {
	list-style-type: none;
	text-align: center;
	margin: 0 auto;
	padding: 0;
}

#guidepostmenu ul li {
	float: left;
	width: 314px;
	height: 75px;
	margin: 0 0 0 2px;
}

#guidepostmenu ul li.first {
	width: 313px;
	margin-left: 0;
}

#guidepostmenu ul li a {
	display: block;
	height: 75px;
	line-height: 75px;
	background: transparent url(./design/guidepostmenu-bg.png) left top repeat-x;
	padding: 0;
	margin: 0;
}

#guidepostmenu ul li a:hover,
#guidepostmenu ul li a.selected {
	background-position: left -75px;
}

/* side menu */
#sidemenu {
	
}

#sidemenu ul {
	list-style-type: none;
	padding: 0!important;
	margin: 0 0 0px 0!important;
}

#sidemenu ul li {
	position: relative;
	font-family: Arial, Verdana, Geneva, sans-serif;
	text-align: left;
	background: none!important;
	padding: 0!important;
	margin: 0 0 3px 0!important;
   	behavior: url(/csshover.htc);
}

#sidemenu ul li.first {
	border: none;
}

#sidemenu ul li a {
	display: block;
	line-height: 16px;
	color: #353535;
	font-size: 1.07em!important;
	background: url(./design/list-arrow.png) 17px 8px no-repeat;
	padding: 0 0 2px 24px;
	margin: 0;
	text-decoration: none;
	border-bottom: 3px solid transparent;
}

#sidemenu ul li:hover,
#sidemenu ul li.selected {
	
}

#sidemenu ul li a:hover,
#sidemenu ul li a.selected {
	border-bottom: 3px solid #FFE600;
}

#sidemenu ul li a.selected {
	font-weight: bold;
}

#sidemenu ul ul {
	width: 100px;
	position: absolute;
	top: 0;
	left: 100%;
	z-index: 999;
	background: #013049;
	text-align: left;
	margin: 0;
	padding: 0;
	padding-left: 5px;
}

#sidemenu ul ul li {
	border: none;
	background: none;
	text-align: left;
	padding: 0 3px 1px 3px;
}

#sidemenu ul ul li:hover {
	background: none;
}

#sidemenu ul ul li a {
	background: none;
}

div#sidemenu ul ul,
div#sidemenu ul li:hover ul ul,
div#sidemenu ul ul li:hover ul ul {
	display: none;
}

div#sidemenu ul li:hover ul,
div#sidemenu ul ul li:hover ul,
div#sidemenu ul ul ul li:hover ul {
	display: block;
}

/* footer menu */
#footmenu {
	margin: 5px 0 10px 0;
	padding: 0;
	text-align: center;
}

#footmenu ul {
	margin: 0 auto;
	padding: 0;
}

#footmenu li {
	display: inline;
	height: 14px;
	line-height: 14px;
	text-transform: lowercase;
	font-family: Arial, Verdana, Geneva, Helvetica, sans-serif;
	border-left: 1px solid white;
}

#footmenu li.first {
	border: none;
}

#footmenu a {
	text-decoration: none;
	padding: 0 5px;
}

#footmenu li a:hover, #footmenu li a.selected {
	text-decoration: none;
}

/* breadcrumbs navigation */
div#breadcrumbs {
	width: 100%;
	margin-bottom: 0px;
	font-size: x-small;
}

div#breadcrumbs .navbar img.delimiter {
	background: transparent url(./design/breadcrumbs-delimiter.png) left 2px no-repeat;
}

/* status massages */
.message-good, .message-bad, .message-info  {
	padding: 10px 10px 10px 40px;
	margin-bottom: 10px;
	background-position: 7px 7px;
	background-repeat: no-repeat;
}

.message-good {
	border: 1px solid #cae49c;
	color: #516f1b;
	background-color: #f3ffd0;
	background-image: url(./design/icons/accept-big.png)
}

.message-good a {
	color: #516f1b;
}

.message-bad {
	border: 1px solid #ffdede;
	color: #ce0000;
	background-color: #fff1f1;
	background-image:  url(./design/icons/exclamation-big.png);
}

.message-bad a {
	color: #ce0000;
}

.message-info {
	border: 1px solid #ededb3;
	background-color: #ffffcc;
	background-image:  url(./design/icons/information-big.png);
}

/* STRUCTURE
==============================================================================*/
#main {
	position: relative;
	width: 946px;
	background: white url(./design/main-bg.png) left top repeat-y;
	margin: 0px auto;
	padding: 0 20px;
	text-align: left;
}

#language_flags {
	float: right;
	width: 125px;
	height: 25px;
	line-height: 23px;
	font-size: 0.87em;
	text-align: right;
	padding:  0px;
	color: white;
	margin: 0 15px 0 0;
}

#language_flags a {
	color: #fff;
	text-decoration: none;
	padding: 0;
	margin: 0 5px;
}

#language_flags a:hover,
#language_flags a.active {
	text-decoration: underline;
}

#language_flags a img {
	padding: 0;
}

#header {
	position: relative;
	width: 100%;
	margin: 0 0 5px 0;
}

#header #logo {
	float: left;
	width: 168px;
	height: 21px;
	overflow: hidden;
	color: #353535;
	font-size: 0.8em;
	padding: 0;
	margin: 18px 0 0 0;
}

#header #logo a {
	padding: 0;
	margin: 0;
}

#header #searchbox {
	float: right;
	width: 210px;
	height: 20px;
	margin: 21px 0 0 0;	
}

#header #searchbox form label {
	float: left;
	width: 45px;
	height: 20px;
	line-height: 24px;
	font-size: 0.87em;
	text-align: right;
	padding: 0;
	margin: 0 5px 0 0;
}

#header #searchbox form input.text {
	float: left;
	width: 137px;
	height: 16px;
	border: 1px solid #d7d7d7;
	padding: 1px 3px;
}

#header #searchbox form input.button {
	float: right;
	width: 8px;
	height: 20px;
	background: transparent url(./design/search-button-bg.png) center center no-repeat;
	border: none;
	cursor: pointer;
	outline: none;
}

#header #topmenu-sublist {
	height: 25px;
	background: #282828;
	clear: both;
	position: relative;
}

#page-image {
	/*width: 608px;*/
	width: 715px;
	/*background-color: #ffe600;*/
	/*padding: 0 29px 0 78px;*/
	padding: 0;
	margin: 0 0 10px 0;
}

#page-image .image {
	width: 715px;
	overflow: hidden;
}

#wrapper {
	padding: 0px 0;
}

#wrapper #footer_tools {
	margin: 10px 235px 0px 160px;
}

#wrapper #footer_tools a.back {
	float: left;
	display: block;
	width: 14px;
}

#wrapper #footer_tools a.up {
	float: right;
	display: block;
	width: 16px;
	margin: 0 3px;
}

#wrapper #footer_tools a.print {
	float: right;
	display: block;
	width: 14px;
	margin: 0 0 0 3px;
}

#contentcol {
	width: 715px;
	float: left;
	padding: 0px;
	margin: 0 10px 0 0;
}

#contentcol p {
	line-height: 1.3em;
	font-size: 0.9em;
}

#contentcol h2 {
	font-size: 0.9em;
}

#contentcol ul {
	list-style-type: none;
	margin: 10px 5px 10px 1px;
	padding: 0 0 0 0px;
}

#contentcol ul li {
	line-height: 19px;
	font-size: 0.87em;
	background: transparent url(./design/list-arrow.png) left 9px no-repeat;
	padding-left: 8px;
}

#contentcol ol li {
	line-height: 23px;
	font-size: 0.87em;
}

#contentcol ul li a,
#contentcol ol li a {
	font-size: 1.1em;
}

#contentcol ol ul {
	padding-bottom: 10px; 
	margin: 10px 0 0 0;
}

#contentcol ol ul li {
	padding-bottom: 3px;
}

#contentcol .box {
	margin: 0 16px 12px 0;
}

#contentcol .box.last {
	margin: 0 0 12px 0;
}

#contentcol .box.wide {
	width: 100%;
	margin: 0 0 12px 0;
}

#contentcol .box p {
	margin-top: 5px;
}

#contentcol .box ul,
#contentcol .box ol {
	padding-bottom: 0;
	margin-bottom: 0;
}

#contentcol .widecontent p {
	font-size: 0.85em;
}

#contentcol .widecontent .textcol .images {
	width: 664px;
	overflow: hidden;
	text-align: justify;
	margin-bottom: 30px;
}

#contentcol .widecontent .textcol .images a {
	margin: 0 15px 14px 0;
}

#contentcol .widecontent .textcol .images a img {
	border: 2px solid #36464e!important;
	background: #2c3a42!important;
}

#contentcol span.line {
	display: block;
	width: 100%;
	height: 2px;
	clear: both;
	border-top: 1px solid #BCBBBC;
	padding: 0;
	margin: 50px 0 30px 0;
}

#contentcol #content {
	background: transparent url(./design/content-bg.png) left top repeat-x;
	padding: 10px 0;
	margin: 0;
}

#contentcol #content #textcol {
	float: right;
	width: 535px;
	margin: 0 20px 0 0;
}

#contentcol.wide #content {
	padding: 10px 0 10px 0;
}

#contentcol #content p {
	font-size: 0.85em;	
}

#contentcol #content h1 {
	font-size: 1em;
	padding: 0 0 20px 0;
	margin: 0;
}

#contentcol #content h2,
#contentcol #content h3,
#contentcol #content h4,
#contentcol #content h5,
#contentcol #content h6 {
	font-size: 0.85em;
	clear: none;
	/*display: inline;*/
}

#contentcol #content a img {
	/*border: 1px solid #fff;*/
	padding: 3px;
}

#contentcol #content a:hover img {
	border: 1px solid #353535;
	padding: 2px;	
}

#leftcol {
	width: 140px;
	float: left;
	padding: 0px;
	margin: 0;
}

#rightcol {
	width: 220px;
	float: right;
	padding: 0px;
	margin: -4px 0 0 0;
}

/* CONTACTS */
div.contacts {
	color: #353535;
}

div.contacts h1 {
	padding-bottom: 5px !important;
}

div.person {
	border-bottom: 1px solid #838383;
	color: #353535;
	padding-bottom: 10px;
	margin-bottom: 12px;
}

div.person h1,
div.person h2,
div.person h3 {
	display: block!important;
	color: #353535;	
}

div.person h2 {
	font-size: 0.95em !important;
	padding-bottom: 5px;	
}

div.person .person_data {
	float: left;
	width: 425px;
}

div.person .person_data .label {
	float: left;
	width: 46px;
	font-size: 0.85em;
}

div.person .person_data .value {
	float: left;
	width: 375px;
	font-size: 0.85em;
}

div.person .person_photo {
	float: right;
	width: 100px;
	text-align: center;
}

div.firm {
	color: #353535;
	padding-bottom: 10px;
	margin-bottom: 12px;
}

div.firm h1,
div.firm h2,
div.firm h3 {
	color: #353535;	
}

div.firm h2 {
	font-size: 0.95em !important;
	padding-bottom: 5px;		
}

div.firm .firm_data {
	float: left;
	width: 425px;
}

div.firm .firm_data .label {
	float: left;
	width: 46px;
	font-size: 0.85em;
}

div.firm .firm_data .value {
	float: left;
	width: 375px;
	font-size: 0.85em;
}

div.firm .firm_logo {
	float: right;
	width: 100px;
	text-align: center;
	margin-top: 30px;
}

div.firm_maps .map {
	float: right;
	width: 112px;
	text-align: center;
}

div.firm_maps .map a.provider {
	font-size: 0.85em;
	background: transparent url(/css/design/list-arrow.png) left center no-repeat;
	padding-left: 10px;	
}
/* CONTACTS */

#footer {
	line-height: 20px;
	border-top: 8px solid #B5B4B5;
	padding: 3px 0;
	margin: 5px 0 0 0;
	color: #000;
	font-size: 0.87em;
}

#footer p {
	color: #5F5F5F;
	margin: 0;
	line-height: 20px;
}

#footer a {
	color: #353535;
}

.content-panel {
	width: 180px;
	float: right;
	padding: 5px;
	margin: 0 0 10px 10px;
}

.content-panel p {
	margin: 0;
}

input.error, textarea.error {
	background: white url(../images/error-line.gif) left bottom repeat-x;
}

form img.error {
	display: none;
	color: #aeaeae;
	margin: 0 0 0 5px;
	background: transparent url(../images/icons/fam/error.png) left bottom no-repeat;
	padding: 0 0 0 20px;
	vertical-align: sub;
}

form .formbutton {
	padding: 0.5em 1em 0.5em 24px;
	margin: 5px 0;
	background-position: 5px center;
	background-repeat: no-repeat;
}

form .formbutton.email {
	background-image: url(../images/icons/fam/email_go.png);
}

form .formbutton.loading {
	background-image: url(../images/loading-16.gif);
}

form img#loading {
	background-image: url(../images/loading-16.gif);
	vertical-align: sub;
}

/* ICONS */
.flag-sk {
	background-image:url(../images/icons/flag/png/sk.png) ! important;
	background-position: center center;
	background-repeat: no-repeat;
}
.flag-cz, .flag-cs {
	background-image:url(../images/icons/flag/png/cz.png) ! important;
	background-position: center center;
	background-repeat: no-repeat;
}
.flag-gb,
.flag-en {
	background-image:url(../images/icons/flag/png/gb.png) ! important;
	background-position: center center;
	background-repeat: no-repeat;
}
.flag-de {
	background-image:url(../images/icons/flag/png/de.png) ! important;
	background-position: center center;
	background-repeat: no-repeat;
}
.flag-it {
	background-image:url(../images/icons/flag/png/it.png) ! important;
	background-position: center center;
	background-repeat: no-repeat;
}