@charset "UTF-8";
/* CSS Document */


.thumbbox {
     display:none;
     position: absolute;
     z-index: +100;
     left: 250px;
     overflow: hidden;
     width: 450px;
     height: 300px;
}
.frame {

        -ms-zoom: 0.3;
        -moz-transform: scale(0.3);
        -moz-transform-origin: 0 0;
        -o-transform: scale(0.3);
        -o-transform-origin: 0 0;
        -webkit-transform: scale(0.3);
        -webkit-transform-origin: 0 0;
        background: white;
        padding:20px;
        border: none;
        box-shadow:  2px 2px 5px rgba(150,150,150,0.6), -1px -1px 5px rgba(150,150,150,0.4);

}

a:hover + .thumbbox {
     display:block;
}

.contactform {
    margin: 20px 200px;
    padding: 10px;
    background:white;
    border: 1px solid gray;
    box-shadow: inset 1px 1px 5px rgba(0,0,0,0.4),inset -1px -1px 5px rgba(0,0,0,0.3);
}

.contact {
    display: block;
    margin:0 auto;
    width: 90%;
/*     text-align: left; */
}

.contact input, .contact textarea, .contact select, .contact button {
  margin: 0;
  text-align: left;

  -webkit-box-sizing: border-box; /* For legacy WebKit based browsers */
     -moz-box-sizing: border-box; /* For all Gecko based browsers */
          box-sizing: border-box;
}

.contact input, .contact textarea {
    width: 100%;
}
.contact textarea {
    height: 300px;
}
.contact label {
    width: 150px;
    text-align: left;
}
.contact div {
    width: 100%;
    text-align: left;
}

.button {
    width: 60px !important;
    border: 1px solid #485352;
    background: #485352;
    background: -webkit-gradient(linear, left top, left bottom, from(#92a2a2), to(#485352));
    background: -webkit-linear-gradient(top, #92a2a2, #485352);
    background: -moz-linear-gradient(top, #92a2a2, #485352);
    background: -ms-linear-gradient(top, #92a2a2, #485352);
    background: -o-linear-gradient(top, #92a2a2, #485352);
    padding: 2px 5px;
	-moz-border-radius: 16px;
	-webkit-border-radius: 16px;
    border-radius: 16px;
/*     -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0; */
/*     -moz-box-shadow: rgba(0,0,0,1) 0 1px 0; */
/*     box-shadow: rgba(0,0,0,1) 0 1px 0; */
    text-shadow: rgba(0,0,0,.4) 0 1px 0;
	-moz-box-shadow:
		0px 1px 1px rgba(000,000,000,0.1),
		inset 0px 0px 1px rgba(255,255,255,0.3);
	-webkit-box-shadow:
		0px 1px 1px rgba(000,000,000,0.1),
		inset 0px 0px 1px rgba(255,255,255,0.2);
	box-shadow:
		0px 1px 1px rgba(000,000,000,0.1),
		inset 0px 0px 1px rgba(255,255,255,0.2);
    color: white;
    font-size: 18px;
    font-family: Gill Sans, Helvetica, Arial, Sans-Serif;
    text-decoration: none;
    vertical-align: middle;
    text-align: center !important;
}

.button:hover {
    border-top-color: #5e7d7d;
    background: #5e7d7d;
    color: #ccc;
}
.button:active {
    border-top-color: #395959;
    background: #395959;

    position:relative;
    top:1px;
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#485352),
		to(#92a2a2));
}

.card {
    width: 420px;
    height: 240px;
/*     text-align: center; */
    transform:rotate(4deg);
    -ms-transform:rotate(4deg);
    -webkit-transform:rotate(4deg);
    -webkit-backface-visibility: hidden;
    box-shadow: 3px 4px 8px rgba(0,0,0,0.4);
/*     inset 0px 0px 0px 10px gray; */
    padding: 15px;
    margin: 10px;
    margin-left: 15px;
    -moz-box-sizing:    border-box;
   -webkit-box-sizing: border-box;
    box-sizing:        border-box;
/*     border: 1px solid gray; */
    background: #ddd;
    background: url('/web/images/mooning.png');
}

.card p {
    padding: 2px;
    margin: 2px;
    color: #333;
}

.innerborder {
    border-top:1px solid rgba(0,0,0,0.2);
    border-left:1px solid rgba(0,0,0,0.1);
    border-right:1px solid rgba(255,255,255,0.5);
    border-bottom:1px solid rgba(255,255,255,0.7);
    height:100%;
    padding:5px 5px 5px 10px;
    -moz-box-sizing:    border-box;
   -webkit-box-sizing: border-box;
    box-sizing: border-box;

}

.card a, .card a:visited, .card a:hover {
    color: #333;
    text-decoration: none;
}

.card h3 {
    font-size: 1.2em;
}
.card h4 {
    margin: 5px;
}
.card h3, .card h4 {
    color: #333;
    text-shadow: rgba(0,0,0,0.5) -1px 0, rgba(0,0,0,0.3) 0 -1px, rgba(255,255,255,0.5) 0 1px, rgba(255,255,255,0.3) 1px 0px;
/*     text-shadow: rgba(0,0,0,0.5) -1px -1px, rgba(255,255,255,1) 1px 1px; */

/*
        text-shadow: -1px -1px 1px #fff, 1px 1px 1px #000;
        color: #eee;
        opacity: 0.1;
 */
}

@media only screen and (max-width: 1130px), only print {

.contactform {
    margin: 20px 100px;
}
.card {
    width: 350px;
    height: 200px;
}
.card h3 {
    font-size: 1.0em;
}
.card h4 {
    margin: 2px;
    font-size: 0.8em;
}
.card p {
    font-size: 0.8em;
}

}
@media only screen and (max-width: 880px), only print {

.card {
    width: 320px;
    height: 190px;
}
.card h3 {
    margin: 5px;
    font-size: 0.95em;
}
.card h4 {
    margin: 2px;
    font-size: 0.8em;
}
.card p {
    font-size: 0.8em;
}

}


@media only screen and (max-device-width: 980px) {
.card {
    width: 320px;
    height: 190px;
}
.card h3 {
    margin: 3px;
    font-size: 0.6em;
}
.card h4 {
    margin: 1px;
    font-size: 0.5em;
}
.card p {
    font-size: 0.4em;
}
}
