﻿@charset "UTF-8";

/**
 * euforia studio css
 *
 * @file		style.css
 * @name		euforia studio
 * @version		1.0
 * @type		transitional
 * @browsers	Windows: IE6+, Opera9+, Firefox3+
 *
 * @link		http://www.euforiastudio.pl/
 * @copyright	2009 euforiastudio.pl All Rights Reserved.
 *
 */

/* Reset - zerowanie wartości
---------------------------------------------------------------------------------------------------- */

@import "reset.css";

/* Ustawienia globalne
---------------------------------------------------------------------------------------------------- */

body {
    height: 100%;
    background-color: #ffffff;
    margin: 0px;
    padding: 0px;
    color: #000000;
    font-family: Verdana, sans;
    font-size: 11px;
}

* {
   outline: 0px;
}

/* Globalne klasy
---------------------------------------------------------------------------------------------------- */

.hide		   { display: none; }
.clear         { clear: both; }
.float-left    { float: left; }
.float-right   { float: right; }
.inline		   { display: inline; }
.block		   { display: block; }

.text-left     { text-align: left; }
.text-right    { text-align: right; }
.text-center   { text-align: center; }
.text-justify  { text-align: justify; }

.valign-top  { vertical-align: top; }
.valign-middle  { vertical-align: middle; }
.valign-bottom  { vertical-align: bottom; }

.bold          { font-weight: bold; }
.italic        { font-style: italic; }
.underline     { border-bottom: 1px solid; }
.highlight     { background: #FDFF0F; }

.img-left      { float: left; margin: 4px 10px 4px 0; }
.img-right     { float: right; margin: 4px 0 4px 10px; }

.nopadding     { padding: 0; }
.nomargin      { margin: 0; }
.noindent      { margin-left: 0; padding-left: 0; }
.nobullet      { list-style: none; list-style-image: none; }

table          { margin-bottom: 1.4em; }
th             { font-weight: bold; }
thead th 	   { background: #c3d9ff; }
th,td,caption  { padding: 4px 10px 4px 5px; }
tr.even td     { background: #e5ecf9; }
tfoot          { font-style: italic; }
caption        { background: #eee; }

/* Struktura strony
---------------------------------------------------------------------------------------------------- */

#kontener {
	background-image: url("../grafika/tlo-body.gif");
	background-repeat: no-repeat;
    line-height: 17px;
}

ul {
    margin-left: 20px;
    font-size: 11px;
    line-height: 17px;
    text-align: justify;
}

hr {
    height: 1px;
    border: 0px dotted #FFFFFF;
    border-top: 1px solid #BABABA;
    clear: both;
}

/* Nagłówki
---------------------------------------------------------------------------------------------------- */

h1 {
	color: #000000;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 0px;
}

h2 {
	color: #65AF23;
    font-size: 16px;
    font-weight: bold;
	margin-top: 8px;
    margin-bottom: 8px;
    padding: 0px;
}

/* Linki
---------------------------------------------------------------------------------------------------- */

a {
    text-decoration: none;
    color: #518c1c;
}

a:hover{
    color: #518c1c;
    text-decoration: underline;
}

/* Komunikaty
---------------------------------------------------------------------------------------------------- */

.komunikat_info {
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    padding: 10px;
    border: 1px solid #00aeef;
    background-color: #e9f9ff;
    margin-top: 5px;
    margin-bottom: 5px;
}

.komunikat_ok {
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    padding: 10px;
    border: 1px solid #62aa00;
    background-color: #72c600;
    margin-top: 5px;
    margin-bottom: 5px;
}

.komunikat_uwaga {
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    padding: 10px;
    border: 1px solid #f24922;
    background-color: #f26522;
    margin-top: 5px;
    margin-bottom: 5px;
}

.komunikat_blad {
    color: #ffffff;
    text-align: center;
    font-weight: normal;
    font-size: 11px;
    padding: 10px;
    border:1px solid #df1c24;
    background-color: #ed1c24;
    margin-top: 5px;
    margin-bottom: 5px;
}

