/**
* CSS
* 
* @version 2.0
* @author Vaska 
*
* There are also some obscure rules in base.css
*/

body {
	font-size: 14px;
	font-family: 'Helvetica Neue', Arial, Helvetica, Verdana, sans-serif;
	background: #fff;
	color: #000;
	line-height: 1.4em;
	/* font-weight: 300; */
}

/* link scheme */
/* you can customize links further down the page too */
a:link { text-decoration: none; color: #000; }
a:visited { text-decoration: none; color: #888888; }
a:hover { text-decoration: underline; }
a:active { text-decoration: none; color: #00cc00; }
a img { border: none; }
#exhibit a { color: #3366BB; }
#exhibit a:visited { color: #0B0080; }

/* general styles */
small { font-size: 9px; }
code { font-family: monospace; }
blockquote { padding-left: 9px; }

/* headings */
h1 { font-size: 16px; margin-bottom: 1em; font-weight: bold; }
h2 { font-size: 16px; margin-bottom: 1em; font-weight: bold; }
h3 { font-size: 16px; margin-bottom: 1em; }
h4 { font-size: 16px; margin-bottom: 1em; }

/* paragraph width */
#index p { margin-bottom: 1em; }
#exhibit p, code, blockquote { width: 600px; margin-bottom: 1em; /* line-height: 1.3em; */ }

/* highlighter style - maybe you want to change colors? */
.highlight { background: #ccff00; color: #000; }

/* never adjust the margin or padding here unless you seriously know what you are doing */
/* think #index .container and #exhibit .container for only padding adjustments */
#index { width: 215px; background: #fff; /* line-height: 1.3em; */ }
#exhibit { margin: 0 0 0 215px; }

/* styling the index */
#index ul { list-style: none; margin: 0; }
#index ul.section { margin-bottom: 1em; }
#index ul.subsection { margin-bottom: 1em; }

/* the follow rules for index are not required */
/* they are mostly for complex customization */
/* for tag display */
#index ul#all_tags { list-style-type: none; margin-bottom: 1em; }
#index ul#all_tags li { display: inline; margin-right: 3px; }
#index ul#all_tags li a {  }

/* styles for the section titles */
#index ul.section span.section_title, 
#index ul.section span.section_title a 
{ color: black; }

/* active section title */
#index span.active_section_title,
#index span.active_section_title a { font-weight: bold; }

/* active exhibit title parts */
/* color of active exhibit title link and font-weight */
li.active a:link, li a.active, li.active a:hover, li a.active, li.active a:active, li a.active, 
li.active a:visited, li a.active, li span.active, #index ul.section li.active a:link, 
#index ul.section li.active a:hover, #index ul.section li.active a:active, #index ul.section li.active a:visited
{ font-weight: normal; color: #00f; }

/* additional #index options */
#index ul li .password a { /* background: url(../img/locked.gif) right center no-repeat; padding-right: 18px; */ }

/* the "new" indicator */
#index ul li sup.new_exhibit { color: #0c0; font-weight: bold; text-transform: uppercase; font-size: 8px; vertical-align: top; }
#index ul li sup.new_exhibit:before { color: #0c0; font-weight: bold; text-transform: uppercase; font-size: 8px; vertical-align: top; content: "New"; }
/* end styling for index */

/* links styles only for the #index region */
#index a:link {  } 
#index a:visited {  }
#index a:hover { color:#3366BB; } 
#index a:active {  } 

/* links styles only for the #exhibit region */
#exhibit a:link { text-decoration: underline; }
#exhibit a:visited {  }
#exhibit a:hover { text-decoration: none; } 
#exhibit a:active {  } 

/* links styles just for h1 title of site (your name/logo) */
#index h1 a { font-weight: normal; text-decoration: none; color: #000; }

/* this is where you adjust your paddings for #index and #exhibit together */
.container { padding: 27px 9px 25px 27px; }

/* this is where you pad them separately */
#index .container {  }
#exhibit .container {  }

/* size and style of titles and captions (not mobile though) */
.captioning { margin-top: 2px; }
.title { font-size: 0.7em; font-style: italic; line-height: 1.2em; }
.caption { font-size: 0.7em; font-style: italic; line-height: 1.2em; }

/* font and leading for contact div and the links inside of it */
p.contact, p.contact a {
	font-size: 10pt;
	line-height: 14pt;
	letter-spacing: 0.5pt;
	font-family: Helvetica;
	-webkit-user-select: none; /* Chrome/Safari */
	-moz-user-select: none; /* Firefox */
	/*background-color: grey;*/
	}


/* for the contact info on bottom of page */
p.contact {
	position: fixed;
	bottom: 30px;
	padding: 20pt;
	padding-left: 20pt;
	margin-bottom: 0;
	right: 20px;
	text-align: right;
	}

/* adds black line to mouseover on links within the paragraph class .contact */
p.contact a:hover {
	border-bottom: 1px solid black; /* 1 px thick solid black line
	padding-bottom: 1; /* 1px 1px 1px 1px */
	}

/* FOR MAIN PAGE SCRIPT STARTS HERE */

div.clickme {
	width: -moz-calc(100% + 25px); /* for Firefox */
	width: -webkit-calc(100% + 25px); /* for Safari / Chrome */
	width: calc(100%);
	height: -moz-calc(100% + 25px);
	height: -webkit-calc(100% + 25px);
	height: calc(100%);
top: -100px;
	position: fixed;
	/* add -webkit-tap-highlight-color: rgba(0, 0, 0, 0,); to remove highlight on click */
	}

div.putimageshere {
		width: -moz-calc(100% + 25px); /* for Firefox */
    	width: -webkit-calc(100% + 25px); /* for Safari / Chrome */
    width: calc(100%);
  		height: -moz-calc(100% + 25px);
    	height: -webkit-calc(100% + 25px);
    height: calc(100%);
	position: fixed; /*can not be moved*/
		top:-100px;
	pointer-events: none; /*can not click this div section*/
	}

div.putimageshere img { /*div | classname | class of classname --- draggable img class*/
	width: 250px;
	pointer-events: auto;
	cursor: move;
	display: none; /* to work with script initially set to none changes to block */
	-webkit-user-select: none; /*  CAN NOT BE SELECTED Chrome/Safari */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none;
	}

div.putimageshere img.wideimg {
	width: 450px;
	pointer-events: auto;
	cursor: move;
	display: none; /* to work with script initially set to none changes to block */
	-webkit-user-select: none; /*  CAN NOT BE SELECTED Chrome/Safari */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none;
	}

@media screen and (max-width : 906px){
 .desk{
  visibility:hidden;
  }
}