/* 
 * This stylesheet includes a minimum of responsive CSS.
 * The basic selectors are header, article, or footer.
 * All content is in the "pagecontent" class.
 * Use the "div.pagecontent" selector for custom styles.
 * Add "body.pagecontent" to customize the body.
 
 * CSS Web Safe Fonts
 * Tahoma,Verdana,Helvetica,Arial (sans-serif)
 * Garamond,"Times New Roman",Georgia (serif)
 * Courier New (monospace)
 * Brush Script MT (cursive)
 * xx-small, x-small, small, medium, large, x-large, xx-large
*/
/* for big screens */
@media screen and (min-width:1230px) {
	div.pagecontent #menulist {
		width:auto;
		float:left;
		margin-right:3px;
	}
}
body.pagecontent {
	background-color:transparent;
}
div.pagecontent * {
	font-family:Tahoma,Verdana,Helvetica,Arial;
	color:Black;
	font-size:medium;
	text-shadow:2px 2px 2px LightGrey;
}
div.pagecontent h1 {
	font-size:xx-large;
	color:Black;
}
div.pagecontent h2 {
	font-size:x-large;
	color:DarkSlateGray;
}
div.pagecontent h3 {
	font-size:large;
	color:DarkSlateGray;
}
div.pagecontent p {
	margin-top:10px;
	margin-bottom:10px;
}
div.pagecontent img, div.pagecontent video, div.pagecontent audio {
	max-width:100%;
	height:auto;
}
div.pagecontent iframe, div.pagecontent embed, div.pagecontent object {
	max-width:100%;
}

/* pages elements */
div.pagecontent header {
	margin:10px;
}
div.pagecontent article {
	margin:10px;
}
div.pagecontent footer {
	margin:5px;
}
div.pagecontent .pageurl {
	font-size:small;
	color:Grey;
}
div.pagecontent .pageurl a {
	font-size:inherit;
}
div.pagecontent .contenturl{
	font-size:small;
	color:Grey;
}
div.pagecontent .contenturl a {
	font-size:inherit
}
div.pagecontent .menulinks {
	font-size:x-small;
	color:Grey;
}
div.pagecontent .menulinks a {
	font-size:inherit;
}
div.pagecontent .bottomlinks {
	font-size:x-small;
	color:Grey;
	/* visible only by web crawlers */
	display:none;
}
div.pagecontent .bottomlinks a {
	font-size:inherit;
}

/* links */
div.pagecontent a:active {color:Red;}
div.pagecontent a:link {color:DarkGreen;}
div.pagecontent a:visited {color:DarkBlue;}
div.pagecontent a:hover {
	color:DarkRed;
	font-style:italic;
}
div.pagecontent footer a:active {color:Red;}

/* forms */
div.pagecontent textarea {
	text-shadow:none;
	padding:2px;
	margin:0px -3px 0px 0px;
	border:1px solid Grey;
	max-width:100%;
	height:auto;
	border-radius:5px;
}
div.pagecontent input {
	text-shadow:none;
	padding:2px;
	margin:0px -3px 0px 0px;
	border:1px solid Grey;
	max-width:100%;
	height:auto;
}
div.pagecontent input[type=submit] {
	font-weight:bold;
	text-decoration:none;
	text-shadow:none;
	margin:0px 5px 0px 0px;
}

/* scrolling menu form */
div.pagecontent #navSelect {
	border:1px solid Grey;
	max-width:80%;
	padding-top:5px;
	border-radius: 5px;
}
div.pagecontent #navSelect option[selected]{
	font-size:large;
}
div.pagecontent #navSelect:hover {
	border-color:Gainsboro;
	background-color:Gainsboro;
}
div.pagecontent .navigation .navsubmit {
	border:1px solid Grey;
	padding-top:6px;
	line-height:0.8;
	border-radius:5px;
}
div.pagecontent input[class="navsubmit"]:hover {
	background-color:PaleGreen;
	border-color:DarkGreen;
}

/* or line menu */
div.pagecontent a[class="menu"] {
	display:inline-block;
	font-size:large;
	color:Black;
	text-decoration:none;
	text-shadow:none;
	padding:2px;
	margin-top:0;
	margin-bottom:1px;
	margin-right:-2px;
	margin-left:0;
	border:1px solid Black;
}
div.pagecontent a[class="menu"]:hover {
	border-color:Gainsboro ;
	background-color:Gainsboro ;
}

/* or list */
div.pagecontent #menulist {
	width:100%;
	padding:0;
	margin:0;
}
div.pagecontent #menulist ul {
	width:auto;
	/* only with margin */
	/* list-style-type:'-> '; */
	/* list-style-type:inherit; */
	margin:0;
	padding:0;
	margin-left:3px;
}
div.pagecontent #menulist ol {
	width:auto;
	margin:0;
	padding:0;
	margin-left:3px;
}
div.pagecontent #menulist li {
	display:block;
	white-space:nowrap;
	border:1px solid Grey;
	padding:3px;
	margin:1px;
}
div.pagecontent #menulist li a {
	text-decoration:none;
	background-color:inherit;
}
div.pagecontent #menulist li:hover {
	background-color:Gainsboro;
}













