html {
	
    /*background-color: #EFEFDF;*/
    /*background-color: #333333;*/
    background-color: #EEEEEE;
	
}

HTML, BODY {
	/*color: #eeeeee;*/
    color: #000000;
    font-family : Verdana, Arial, Helvetica, sans-serif;
    font-size: 16px;
}

a{
    text-decoration: none;
    color: #000;
}

div#top {
    clear: both;
    margin: 5px auto;
    width: 900px;
}

div#cnt {
    clear: both;
    margin: 0px auto;
    width: 900px;
}

div#menu {
    margin: 0px auto;
    width: 900px;
}

div#main {
    clear: both;
    margin: 20px auto;
    margin-top: 30px;
    width: 900px;
}




h1 {
    margin: 0;
    padding: 0;
    width: 778px;
    height: 90px;
    font-size: 80%
    background-repeat : no-repeat;
}

h2 {
    margin: 0;
    padding: 4px 0px 3px 0px;
    font-size: 120%;
    color: #CB0F15;
	color: #FF0000;
}

h3 {
    margin: 0;
    padding: 2px 0px 2px 0px;
    font-size: 100%;
    color: #000000;
}

img {
    box-shadow: 2px 2px 2px #555555;;
    -moz-box-shadow: 2px 2px 2px #555555;
    -webkit-box-shadow: 2px 2px 2px #555555;
}

#sidebar h2 {
    font-size: 10pt;
    color: #fffffe;
    font-weight : bold;
    margin-top : 2pt;
    margin-bottom : 2pt;
}

#sidebar p {
    margin: 0px 0px 5px 0px;
    padding: 0px;
}

#sidebar ul {
    list-style: none;
}

#sidebar a {
    font-weight: bold;
    color: #9F9F9F;
    text-decoration: none;
}

a.link {
    font-weight: bold;
    color: 	#0000A0; /*blue*/
	/*color: #99ff88; */ /*green*/
    text-decoration: none;
}

ul.content {
    list-style: none;
    padding: 10px;
    margin-left: 0px;
	margin-top: 10px;
	margin-bottom: 10px;
    /*background: #F2F2F2 url(./images/pfd.gif) repeat-x left top;*/
	/*bckground: #444444;*/
    background: #CCCCCC;
    box-shadow: 2px 2px 2px #CACACA;
    -moz-box-shadow: 2px 2px 2px #CACACA;
    -webkit-box-shadow: 2px 2px 2px #CACACA;
    width: 875px;
}

li.content {
    padding: 2px 0px 2px 18px;
    background-image: url(./images/pbul.gif);
    background-repeat: no-repeat;
    background-position: top left;
    font-weight: bold
}

div.sidepicture {
    float: right;
    margin: 10px 10px 10px 10px;
	box-shadow: 2px 2px 2px #CACACA;
    -moz-box-shadow: 2px 2px 2px #CACACA;
    -webkit-box-shadow: 2px 2px 2px #CACACA;
}

p.sidepicturetext {
    margin: 0;
    padding: 2px 0px 0px 0px;
    line-height: 160%;
    font-size: 90%;
    color: #ffffff;
}


/* picture hovers */

section header .toggle{
    position: relative;
    width: 30px;
    height: 30px;
    background: url(menu.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
section .container{
    position: absolute;
    display: flex;
    /*height: calc(30% - 0px);*/
    /*width: calc(40% - 0px);*/
	height: 400px;
	width: 900px;
    /*background: azure;*/
    z-index: 100;
}
section .container .box{
    position: relative;
    width: 25%;
    height: 100%;
    overflow: hidden;
    border-right: 5px solid #EEEEEE; 
}
section .container .box:last-child{
    border-right: none;
}
section .container .box .imgBx{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    opacity: 0.5;
    filter: grayscale(1);
}
section .container .box .imgBx.active{
    position: fixed;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -45%);

	height: 500px;
	width: 1200px;
	
	/*
    width: calc(100% - 100px);
	height: calc(100% - 100px);
	*/
    z-index: 100;
    opacity: 1000;
    filter: grayscale(0);
}
section .container .box .imgBx:hover{
    opacity: 1;
    filter: grayscale(0);
}
section .container .box .imgBx img{
    position: absolute;
    top: 0;
    Left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


