/* Notes and labels inside an html or css file are formatted like this. */

/* Style sheet for Scholars SGC student web page */

/* See http://htmldog.com/guides/cssbeginner/ form useful tips on cascading style sheets */


body {
	font-family: Ariel, Futura, Verdana;
	color: #003049;
	margin: 10px;
	background: #FDF0D5;


}

/* General selector values */

p {
	line-height: 1.4em;
}

h1 {
	font-family: Skia, Futura, Verdana, Ariel;
	color: #003049;
/* See http://www.december.com/html/spec/color.html for color codes */
	font-size: 3em;
	margin: 0;
	padding: 0.25em;
/* See http://htmldog.com/guides/cssbeginner/margins/ for margins and padding */
	text-align: center;
	font-weight: bold;
}

h2 {
	font-family: Skia, Futura, Verdana, Ariel;
	color: #003049;
	font-size: 2em;
	margin: 0;
	padding: 0.1em;
	padding-left: 1em;
	text-align: center;
	font-weight: plain;
}

h3 {
	font-family: Skia, Futura, Verdana, Ariel;
	color: #003049;
	font-size: 1.5em;
	font-weight: bold;
}

					
#content figure.image {
	float: right;
	margin: 0 0 1em 1em;
	padding: 0;
}

#content figure.image img {
	display: block;
	padding: 12px;
}

#content figure.image .caption {
	text-align: center;
	font-size: 0.85em;
	color: #56697a;
	margin: 0.2em 0 0 0;
}

#content .image-row {
	float: right;
	display: flex;
	gap: 10px;
	margin: 0 0 1em 1em;
}

#content .image-row .image {
	float: none;
	margin: 0;
	padding: 0;
}

#content .image-row .image img {
	padding: 10px;
}

#content .image-row .caption {
	margin-top: 0.15em;
}

#content .divider {
	border-top: 2px dotted #56697a;
	width: 60%;
	margin: 1em 0;
}

#content .division {
	border-top: 2px dashed #56697a;
	margin: 1.5em 0;
	padding-top: 1em;
	clear: both;
}

#content .highlight {
	border-left: none;
	padding: 0.75em 0;
	background: none;
}
a {
	text-decoration: none;
}


a:link {
	color: #FF1493;
}

a:visited {
	color: #800080;
}


/* Layout */

#header {
        text-align: center;
	font-family: Skia, Futura, Verdana;
	
}

#content {
        text-align: left;
	font-family: Skia, Futura, Verdana;
}


#footer {
	text-align: center;
	}
