/*=================================*/
/* Pico Default Theme
/* By: Gilbert Pellegrom
/* http: //dev7studios.com
/*=================================*/

@font-face {
	font-family: 'OpenSansBold';
	src: url('../css/OpenSans-Bold.ttf');
}

@font-face {
	font-family: 'OpenSansLight';
	src: url('../css/OpenSans-Light.ttf');
}

h1, h2, h3, h4, h5, h6 {
    color: #000;
    line-height: 1.2em;
    margin-bottom: 0.6em;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.7em;
}

h3 {
    font-size: 1.5em;
    margin-top: 2em;
}

p, table {
    margin-bottom: 1em;
}

/* pridano formatovani odkazu */
a {
    color: #2EAE9B;
    text-decoration: none;
    -webkit-transition: color .2s ease-in;
            transition: color .2s ease-in;
}

a:hover {
    color: blue;
}

ol, ul {
    padding-left: 30px;
    margin-bottom: 1em;
}

b, strong {
    font-weight: bold;
}

i, em {
    font-style: italic;
}

u {
    text-decoration: underline;
}

abbr, acronym {
    cursor: help;
    border-bottom: 0.1em dotted;
}

td, td img {
    vertical-align: top;
}

td, th {
    border: solid 1px #999;
    padding: 0.25em 0.5em;
}

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

sub {
    vertical-align: sub;
    font-size: smaller;
}

sup {
    vertical-align: super;
    font-size: smaller;
}

/* puvodni CODE formatovani
code {
    font-family: Courier;
    font-size: 1em;
    background: #eee;
    color: #333;
    padding: 0px 2px;
}

pre {
    font-family: Courier;
    font-size: 1em;
    background: #eee;
    padding: 20px;
    margin-bottom: 1em;
    overflow: auto;
}
*/

/* nove CODE formatovani */

code {
    margin: 0 0.1em;
    padding: 0.1em 0.2em;
    border: 1px solid #ccc;
    border-radius: 0.3em;
    background: #f5f5f5;
    font-family: 'Droid Sans Mono', 'Courier New', 'Courier', monospace;
    font-size: 0.85rem;
    line-height: 1.9824;
}

pre {
    padding: 0 1em;
    border: 1px solid #ccc;
    border-radius: 0.3em;
    background: #f5f5f5;
}

pre code {
    display: block;
    margin: 0;
    padding: 1.1111em 0;
    border: 0 none;
    background: transparent;
    overflow-x: auto;
    line-height: 1.4;
}

blockquote {
    font-style: italic;
    margin: 0 0 1em 15px;
    padding-left: 10px;
    border-left: 5px solid #dddddd;
}

#header {
        background: #333333;
	font-family: "OpenSansBold";
	font-size: 3em;
        color: #2EAE9B;
	padding: 2% 2% 2% 24%;
        border: 2px solid #ffffff;
        border-radius: 0.3em;
}

#header a {
	text-decoration:none;
        color: #2EAE9B;
	font-weight: bold;
}

#content {
        background: #f0f0f0;
	font-family: "OpenSansLight";
	padding: 2% 2% 2% 24%;
	height:auto;
	min-height:300px;
	float: left;
	width: 74%;
}

.inner {
        width: 85%;
    }
   
.inner img {
        width:100%;
    }

#navbar {
        background: #333333;
	font-family: "OpenSansLight";
	float: left;
	width: 20%;
	line-height:2em;
	border-right: 2px solid #d8d8d8;
        border: 2px solid #ffffff;
        border-radius: 0.8em;
	height:auto;
	min-height:300px;
	text-align:right;
	padding-right: 15px;
	padding-top: 30px;
	position: fixed;
}

#navbar ul {
	list-style-type:none;
}

#navbar a {
       	font-weight : bold;
        text-decoration:none;
        color: #2EAE9B;
}

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

#footer {
        background: #FFFFFF;
	font-family: "OpenSansLight";
	font-size: smaller;
       	text-align:right;
	padding-left: 3%;
	clear: both;
	color: #555555;
}

img {
        width: 100%;
}

img.xlarge {
        width: 80%;
}

img.large {
        width: 60%;
}

img.small {
        width: 40%;
}

img.xsmall {
        width: 20%;
}

img.mini {
        width: 10%;
}

img.micro {
        width: 5%;
}