/* Program Name: photo.css
   Purpose: Style sheet for photos page
   Original written by: Joe Bolan  7-23-23
   Last update: 7-31-23 (add styling for website elements)
*/



html{
  min-height: 100%;
  font-size: 12pt;
}

*{
  box-sizing: border-box;
}


#wrapper {
}

body{
	color:#000099; 
	/*background:url(sitepix/margin.jpg); 
	background-attachment:fixed; 
	background-color:#000088; */
	background-color: #F8D150;
	margin-left:auto; 
	margin-right:auto; 
	margin-top:0; 
	width:100%;
	font-weight: bold
}

header{
	height:200px; 
	width:100%; 
	margin-left:auto; 
	margin-right:auto; 
	width:100%; 
	padding-left:20px; 
	padding-right:20px; 
	background:url(sitepix/pghdr.jpg); 
	background-size: 100%; 
	text-align:left; 
	font-size:3.0em; 
	font-weight:bold; 
	color:#ffffff; 
	border-bottom: solid #000000 2px; 
	border-left: solid #000000 0px; 
	border-right: solid #000000 0px 
}

header img {
	width:150px; 
	height:150px; 
	border: 0px; 
	margin-right: 20px; 
	margin-top:20px
}

header a { 
	font-size:0.6em; 
	font-weight:bold; 
	font-style:italic; 
	text-shadow: 1px 0px 0px rgba(153,51,0,1.0), 0px 1px 0px rgba(0,0,0,1.0), -1px 0px 0px rgba(0,0,0,1.0), 0px -1px 0px rgba(0,0,0,1.0);
}

header a:link { 
	color: #ffffff 
}

header a:visited { 
	color: #ffffff 
}

header a:active { 
	color: #ffffff 
}

header a:hover { 
	color: #ff0000; 
	background: transparent; 
	text-shadow: 1px 0px 0px rgba(255,255,255,1.0), 0px 1px 0px rgba(255,255,255,1.0), -1px 0px 0px rgba(255,255,255,1.0), 0px -1px 0px rgba(255,255,255,1.0); 
}


h1 { 
	font-size:3.0em; 
	font-weight:bold; 
	color:#ff0000;
	text-align: center
}

h2 { 
	font-size:1.6em; 
	font-weight:bolder; 
	font-style:italic; 
	color: #000000; 
	text-align:center 
}

h3 { 
	font-size:1.2em; 
	font-weight:bolder; 
	font-style:normal; 
	color: #000000; 
	text-align:left
}

h4 {
	font-size:1.4em; 
	font-weight:bolder; 
	font-style:italic; 
	color: #ffffff; 
	text-align:center 
}	

h5 { 
	font-size:0.6em; 
	font-style:italic
}

h6 {
	font-size: 1em;
	font-weight: bold
}

hr { 
	color: #0000cd 
}

nav {
	border-bottom: solid #000000 2px; 
	padding-left:10px; 
	display:flex; 
	flex-direction: row; 
	flex-wrap: wrap; 
	justify-content: space-evenly;
	/*align-items: baseline;*/
	align-content: space-between;
	width:100%; 
	/*clear:both; */
	background:url(sitepix/menu1.png)
}

nav a {
	width:120px; 
	float:left; 
	display:block; 
	text-align:center; 
	color: #0000bb;
	background-color:#eeeeee; 
	font-weight:bold; 
	float:left; 
	display:block; 
	padding:5px; 
	margin:8px; 
	border-radius:10px; 
	border-top:4px solid #dddddd; 
	border-right:4px solid #dddddd; 
	border-bottom:4px solid #aaaaaa; 
	border-left:4px solid #aaaaaa
}

nav a:hover {
	background: radial-gradient(circle, #fdff00, #ffffff); 
	color:#ff0000; 
	background-color:#ffffff; 
	border:4px solid #dd0000

}

.leftcol{
  padding: 0.5em;
  text-align: center;
}

.center {
  display: block;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}

.midcol{
  padding: 0.5em;
}

.rightcol{
  padding: 0.5em;
  text-align: center;
}

.imageBox {
	width: 90%;
	margin: auto;
	position: relative; 
	border: 5px solid red;
}



#rightArrow {
	position: absolute;
	top: 50%;
	right: 3%;
	z-index: 10;
	cursor: pointer;
}

#leftArrow {	
	position: absolute;
	top: 50%;
	left: 3%;
	z-index: 10;
	cursor: pointer;
}



/*

.controls .arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
}

.arrow.left {
	left: 2px;
}

.arrow.right {
	right: 2px;
}


.controls ul {
	position: relative;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%);
	list-style: none;
	display: flex;
	padding: 0;
	margin: 0;
}

.controls ul li {
	width: 14px;
	height: 14px;
	border: 2px solid #333;
	border-radius: 50px;
	margin: 10px;
	background: #333;
}
	
.controls ul li.selected {
	background: transparent;
}

*/

