/*CSS for layout*/

/*======
Linda Macdonald
copyright 2023
 
swatch colors
-------------
#000066 - dark blue
#008CBA - light blue
#FFFFCC - pale yellow
======== */

@media screen and (min-width : 320px) {
}
@media screen and (min-width: 680px) {
}
@media screen and (min-width : 1024px) {
}



* {
    box-sizing: border-box;
}

* {margin:0; padding:0; border: 0;}


body {
    margin: 0px;
    overflow-x: hidden;
}

.background {
 	 background-color:#FFFFCC;
 	 margin: 0;
}

.header {
	background-color:#008CBA;
	/* Location of the image */ 
	background-image: url('images/sunsprite-header.png');
	
	/* Background image is centered vertically and horizontally at all times */ background-position: center center; 
	/* Background image doesn’t tile */
	background-repeat: no-repeat; /* 
	Background image is fixed in the viewport so that it doesn’t move when the content’s height is greater than the image’s height */ 
	background-attachment: fixed; 
	/* This is what makes the background image rescale based on the container’s size */ 
	background-size: cover; 
  }

.container {
    min-width:375px;
	max-width:100%;
	height:auto;
	background-color:#FFFFCC;
	margin-left:auto;
	margin-right:auto;
	}
	
.container a {
    color: #008CBA;  /* Different link color for container */
    text-decoration: none;
}



.banner {
	background-color:#008CBA;
	color:white;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	text-align: center;
	font-family:Arial, Verdana, Geneva, Tahoma;
  }
  
 

.center {
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	text-align: center;
}

.img 	{
  	max-width:100%;
    height:auto;	
}

.auto-style1 {
	font-family:Arial, Verdana, Geneva, Tahoma, sans-serif;
}

.auto-style-dblue {
	color:#000066;
	font-family:Arial, Verdana, Geneva;
}

.auto-style-lblue {
	color: #008CBA;
	font-family:Arial, Verdana, Geneva;
}

.banner {
	background-color:#008CBA;
	color:white;
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-family:Arial, Verdana, Geneva, Tahoma;
	font-size:24px;
	padding:20px;
	font-weight:bold;
  }

.content {
     width:100%;
     font-family:Arial,Verdana, Geneva, Tahoma, sans-serif;
	 font-weight:bold;
     font-size:medium;
     text-align: center;
     background-color:#FFFFCC;
     padding:5px;
	 margin-left: auto;
	 margin-right: auto;

}





div.noborder {
	webkit-border-radius: 0px;
	moz-border-radius: 0px;
	border-radius: 0px;
	border: 0px;
	
}

table {
	width:90%;
	padding:10%;
    text-align: left;
    margin-left:auto;
	margin-right:auto;
    border-collapse: collapse;
}

table, tr, td {
    border: 1px solid black;
}

div.gallery {
    margin: 5px;
    float: left;
   }
   
div.gallery1 {
    margin: 5px;
    margin-left:auto;
	margin-right:auto;
   }
 
div.gallery:hover {
    border: 0px solid #777;
}

div.gallery1:hover {
    border: 0px solid #777;
}

div.gallery img {
    max-width: 100%;
    height: auto;
    border:4px;
}

.desc {
    padding:5px;
    text-align: center;
    font-style:italic;
    font-weight:bold;
    color:#000066;
}
 
    
 .displayed {
    display: block;
    margin-left: auto;
    margin-right: auto }


.boxdescright {
    color: black;
    text-align:left;
    padding: 15px;
    float: right;
    width:350px;
    }




.clear {
    clear: both;
}

.left {
  float: left;
  margin-right: 1em;
}

.noborder {
	border: 0px;
	border-radius: 0px;
}


.right {
  float: right;
  margin-left: 1em;
}







