@charset "utf-8";
body  {
/*	font: 140% Verdana, Arial, Helvetica, sans-serif;  */
/*	font: 160% "Palatino Linotype", "Book Antiqua", Palatino, serif; */
	font: 75% Georgia, 'New York CE', utopia, serif;
/*	background: #F0F2DC; */ /* barva pozad svtle zelen */ 
        background-image: url(../pics/pms_pozadi_14.jpg); 
/*	background-repeat: no-repeat; */ /* obrzek se neopakuje */
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
/*z	color: #5C7C31;  */ /* barva pisma - zelena */
	color: #343124;  /* barva pisma - srazena cern */
/*	background-image: url(../pics/pms_pozadi.jpg); /* obrázek na pozadí */
/*	background-repeat: no-repeat;  */

}

a:link  {
 color: #3D1F00;

}

a  {
 color: #5C7C31;

}


a:visited  {
 color: #000000;
}


/*****************************************************************************************/
/*          rozdeleni obrazovky na DIVy                                                  */
/*****************************************************************************************/

.pms2 #container { 
	width: 70em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
/*z	background: #E5E5BE; */
	background: #F9EEDC;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top: 4em;
/*	border: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
/*        background-image: url(../pics/mucednici/hvezda_bckgrnd.jpg);  */
} 

.pms2 #header_txt { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
/*	background: #5C7C31; */
	background: #AA0000;
	font-weight:bold;
/*z	color: #F5DEB3;*/
	color: #BE1717;

} 
.pms2 #header_txt p {
	margin: 0; /* zeroing the margins of this element will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	align: left; 
}

.pms2 #header_txt img {
	width: 2em;
	height: 1.2em;
	border-color: #3D1F00;
	float: right; 
}

.pms2 #header { 
	background: #F5DEB3; 
	background: #F9EEDC;
/*	padding: 0 10px; */  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to 	remove the padding. */
	background-image: url(../pics/mucednici/14_header.jpg); /* obrázek na pozadí */
	background-repeat: no-repeat;  
	height: 78px;

} 
.pms2 #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.pms2 #sidebar1 {
	float: left;  
	width: 13em; /* since this element is floated, a width must be given */
/*	background: #F9EEDC; */ /* the background color will be displayed for the length of the content in the column, but no further 
	padding: 1px 0; /* top and bottom padding create visual space within this div */
}

.pms2 #sidebar1 h3 {
	margin-left: 1px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 1px;
	text-align: center;
/*	font-family: Arial CE, Arial, Helvetica, sans-serif; */
	font-weight: bold;
	color: #3D1F00;
}

.pms2 #sidebar1 p {
	margin-left: 1px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 1px;
	text-align: center;
/*	font: 80% Verdana, Arial, Helvetica, sans-serif;   */
	font-weight: bold;
	color: #AA0000;
}

.pms2 #sidebar1 div.odkaz {
/*    	width: 12em; */
/*	height: 3em; */
    	width: 13em; 
	height: 2em; 
/*	background: #5C7C31;  */
/*z	background: url(../pics/mucednici/menu14.gif) repeat-x; */
	overflow: hidden; 
/*	padding-bottom: 5px;   */
	border-top: 1px solid  #F9EEDC;  

}

.pms2 #sidebar1 a.primy_odkaz {
/*	font-weight: bold;   */
/*z	color: #F5DEB3; */
	color: #AA0000; 
	display: block;
	text-decoration: none;
	text-align: right;
	padding: 5px 10px;
}

.pms2 #sidebar1 div.testfj {
    	width: 12em; 
	height: 2em; 
/*    	width: 144px; */
/*	height: 23px; */
/*	background: #5C7C31; */
/*	background: url(../pics/mucednici/14menu.gif) repeat-x; */
	overflow: hidden; 
	padding-bottom: 5px;  
	border-top: 1px solid #F5DEB3;  
/*	border: 1px solid #000000;    */
}

.pms2 #sidebar1 a.primy_fj {
	font: 100% Arial, sans-serif;  
/*	font-weight: bold;   */
	color: #000000;
	display: block;
	text-decoration: none;
	text-align: center;
	padding: 7px 15px;
}

.pms2 #sidebar1 a:hover {
/*	font: 90% Verdana, Arial, Helvetica, sans-serif; */
	font-weight:bold;  
	color:#CC0000;  
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.pms2 #mainContent {
	margin: 0 2em 0 14em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
} 
/*****************************************************************************************/
/*          Hlavičky                                                                     */
/*****************************************************************************************/

.pms2 #mainContent h1, h2, h3, h4 {
/*z	color: #5C7C31; */ /* barva hlavicek */
	color: #AA0000;  /* barva hlavicek */
}

.pms2 #mainContent h1 {
	text-align: center;
	font: 160% Georgia, 'New York CE', utopia, serif;
	font-weight: bold;
	margin: 1em;
}

.pms2 #mainContent h2 {
	text-align: left;
	font: 130% Verdana, Arial, Helvetica, sans-serif;  
	font-weight: bold;
	margin-top: 1.5em; 
	margin-bottom: 0.5em
}

.pms2 #mainContent h3 {
	font: 120% Verdana, Arial, Helvetica, sans-serif;  
	font-weight: bold;
	margin-top: 1.5em; 
	margin-bottom: 0.5em
}

.pms2 #mainContent h4 {
	font: 100% Verdana, Arial, Helvetica, sans-serif;  
	font-weight: bold;
	margin-top: 1.5em; 
	margin-bottom: 0.5em
}

/*****************************************************************************************/
/*          Texty                                                                      */
/*****************************************************************************************/

.pms2 #mainContent p.cz {
	text-indent: 30px; 
	margin: 0px 0px 10px 0px;  /* odsazeni textu odstavce, mezera dole */
}

.pms2 #mainContent p.bold {
/*	text-indent: 30px; */
	font-weight: bold;
/*z	color: #5C7C31; */
	color: #AA0000;
	margin: 0px 0px 10px 0px;  /* odsazeni textu odstavce, mezera dole */
}
.pms2 #mainContent ul {
	padding: 0; 
	margin: 2em 0 2em 0; 
	list-style-type:none;
}


.pms2 #mainContent p.roz_uvod {
	font-style: italic;
	margin: 0px;  /* odsazeni textu odstavce, bez mezer okolo */
}
.pms2 #mainContent p.roz_otaz {
	font-weight:bold;
	margin: 0px;
	margin-top: 1em;  /* odsazeni textu odstavce, pred odstavcem mezera */
}
.pms2 #mainContent p.roz_odpo {
	margin: 0px;  /* odsazeni textu odstavce, bez mezer okolo */
}
.pms2 #mainContent p.roz_datum {
	float:left; 
	font-style: italic;
	margin: 0px;
	margin-top: 1em;  /* odsazeni textu odstavce, pred odstavcem mezera */
}
.pms2 #mainContent p.roz_autor {
	float:right; 
	font-style: italic;
	margin: 0px;
	margin-top: 1em;  /* odsazeni textu odstavce, pred odstavcem mezera */
	text-align: right;
}

.pms2 #mainContent p.kcb {
	font-weight:bold;
/*	margin: 0px;  */
/*	margin-top: 1em;  */  /* odsazeni textu odstavce, pred odstavcem mezera */
}


/*****************************************************************************************/
/*          Obrázky                                                                      */
/*****************************************************************************************/


.pms2 #mainContent img.stred {
 	text-align: center;
	display: block;
	margin: 0 auto 1em;
	border-style: none;
    cursor: pointer;
}

.pms2 #mainContent img.vlevo {
	float: left;
    margin-right: 2em;
    margin-bottom: 1em;
	border-style: none;
    cursor: pointer;
}

.pms2 #mainContent img.vpravo {
	float: right;
    margin-left: 20px;
    margin-top: 1em;
	border-style: none;
    cursor: pointer;
}

.pms2 #mainContent img.href {
	cursor: pointer;
}


#trailimageid {
	Z-INDEX: 1000; LEFT: 0px; POSITION: absolute; TOP: 0px
}
#trailimageid DIV {
	BORDER-RIGHT: 0px; PADDING-RIGHT: 0px; BORDER-TOP: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; BORDER-LEFT: 0px; PADDING-TOP: 0px; BORDER-BOTTOM: 0px; TEXT-ALIGN: center
}
#trailimageid IMG {
	MARGIN: 0px; BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-BOTTOM-STYLE: none
}


/*****************************************************************************************/
/*          Tabulky                                                                      */
/*****************************************************************************************/

.pms2 #mainContent table.tab_1 {   /* tab_1 text zarovnana na stredd */
	border-collapse: collapse;
	table-layout: fixed; 
	border-bottom: 1px solid #663300;
}

.pms2 #mainContent table.tab_1 th {
	border-left: 1px solid #F5DEB3;
	background-color: #A38566;
	table-layout: fixed; 
	text-align: center;
	font-width: bold;
	color: #F5DEB3;
}

.pms2 #mainContent table.tab_1 td {
	border-bottom: 1px solid #663300;
	text-align: center;
}

.pms2 #mainContent table.tab_1 td.cislo {
	text-align: right;
	padding-right: 2em;
}

.pms2 #mainContent table.tab_1 td.text {
	text-align: left;
}

.pms2 #mainContent table.tab_1 td.rozhovor {
	text-align: left;
	padding-top: 1em;
	padding-bottom: 1em;
	padding-left: 5em;
}

.pms2 #mainContent table.tab_1 td.rozhovor a.link, a.visited {
	text-decoration: none;
}

.pms2 #mainContent table.tab_bez {  /* tab_bez bez car a bez hlavcky  */
/*	border-collapse: collapse;  */
	table-layout: fixed; 
	border: 5px;
	margin: 10;
}

.pms2 #mainContent table.tab_bez td {
	border: 0px;
	text-align: left;
}

.pms2 #mainContent table.tab_foto {   /* pro preheld fotokroniuky */
	border-collapse: collapse;
	table-layout: fixed; 
	border-bottom: 1px solid #663300;
}

.pms2 #mainContent table.tab_foto td {
	border-bottom: 1px solid #663300;
	text-align: leftr;
}

.pms2 #mainContent table.tab_foto img {
	border-style: none;
	margin: 3px;
	width: 120px;
	height: 90px;
}


.pms2 #mainContent table.tab_roz {   /* pro preheld rouzhovoru */
	border-collapse: collapse;
	table-layout: fixed; 
	border-bottom: 1px solid #663300;
}

.pms2 #mainContent table.tab_roz td {
	border-bottom: 1px solid #663300;
	text-align: leftr;
}

.pms2 #mainContent table.tab_roz img {
	border-style: none;
	margin: 3px;
	width: 112px;
	height: 136px;
}

/*****************************************************************************************/
/*          Footer a oddělovače                                                                      */
/*****************************************************************************************/

.pms2 #mainContent .clearleft { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear: left;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.pms2 #footer_spacer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	height: 2em;
/*z	background: #E5E5BE; */
	background: #F9EEDC;

}

.pms2 #footer_foto { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	height: 2em;
	background:#F5DEB3;
}

.pms2 #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#880000;
    	font-size: 5%;  
	color: #DADAA2;
} 
.pms2 #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.pms2 #footer a.primy_odkaz {
	color: #F5DEB3;
	display: block;
	text-decoration: none;
	padding: 5px 0px;
}

.pms2 #footer table td {
	height: 1em;
}

.pms2 #footer table td {
	padding: 0px;
}

.pms2 #copyright { 
	width: 68em;
	height: 1.3em;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #F9EEDC;
    	font-size: 100%;  
	color: #DADAA2;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
/*	border: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */



/*****************************************************************************************/
/*          uvodni stranka		                                                         */
/*****************************************************************************************/

.pms2 #uvod { 
	background: #F5DEB3; 
/*	padding: 0 10px; */  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-image: url(../pics/pms_uvod.jpg); /* obrázek na pozadí */
	background-repeat: no-repeat; 
	height: 567px;
        color: #FFFFFF;
	padding: 1px 0; /* top and bottom padding create visual space within this div */
}

.pms2 #uvod-menu { 
	position: relative; 
	top: 180px; 

}
.pms2 #uvod_txt { 
	position: relative; 
	top: 100px; 
	left: 70px; 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
/*	background:	#3D1F00;   */
/*	font-weight:bold;  */
	color: #F5DEB3
} 

.pms2 #uvod_txt p {
	font:Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* zeroing the margins of this element will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.pms2 #uvod div.odkaz {
    	width: 12em;
	height: 2em;
/*z	background: url(../pics/menu14.gif) repeat-x;  */
	overflow: hidden; 
/*	padding-bottom: 10px;     */
	border-top: 1px solid #F5DEB3;  
	opacity: 0.7; 
	filter:alpha (opacity=70);
}

.pms2 #uvod a.primy_odkaz {
	font: 100% Arial, sans-serif;  
	color: #F5DEB3;
	display: block;
	text-decoration: none;
	padding: 5px 15px;
}

.pms2 #uvod a:hover {
	font-weight:bold; 
	color: #FFFFFF;
}

/*****************************************************************************************/
/*          Miscellaneous classes for reuse                                              */
/*****************************************************************************************/

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.pms2 #mapa {
	border: #3D1F00 2px solid; 
	width: 600px; 
	height: 400px;
}