:root {
	--siteBlue: #2779C3;
	--highlight: papayawhip;
}

/* -------------------------------------------------------------------------------- */
/* General                                                                          */
/* -------------------------------------------------------------------------------- */
.resetCommon
{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

.resetList
{
	list-style: none;
}

.blueGradient
{
    background-image: -webkit-linear-gradient(90deg,white 0%,var(--siteBlue) 100%);
    background-image: -moz-linear-gradient(90deg,white 0%,var(--siteBlue) 100%);
    background-image: -o-linear-gradient(90deg,white 0%,var(--siteBlue) 100%);
    background-image: linear-gradient(0deg,white 0%,var(--siteBlue) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.blueBar {
    border: none;
    margin: 0 0;
    line-height: 1.5em;
    background-color: var(--siteBlue);
    color: white;
    font-weight: 400;
}

h1.blueBar {
	font-size: x-large;
	padding-left: .25em;
}

h2.blueBar {
	font-size: large;
	padding-left: .25em;
}

@media (max-width: 479px){
	h1.blueBar {
		font-size: large;
	}

	h2.blueBar {
		font-size: medium;
	}
}


/* -------------------------------------------------------------------------------- */
/* Header                                                                           */
/* -------------------------------------------------------------------------------- */
#headerImages {
    background-image: url(../images/clouds.png);
    background-size: cover;
    background-repeat: no-repeat;
	padding: 2em;
	display: flex;
}

#headerLogo {
	max-height: 10em;
	width: 10.7em;
}

#headerBirds {
    height: 10em;
    width: 44em;
    background-image: url(../images/birds.png);
	background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
	margin-left: 2em;
}

@media (max-width: 479px){
	#headerLogo {
		margin: 0 auto;
	}
	
	#headerBirds {
		display: none;
	}
}


/* -------------------------------------------------------------------------------- */
/* Viewport                                                                         */
/* -------------------------------------------------------------------------------- */
#viewarea {
	width: 100%;
	padding-bottom: 80px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

#viewarea>* {
	width: 100%;
}

@media (max-width: 479px){
	#viewarea {
		padding-bottom: 45px;
	}
}

@media (min-width: 1200px){
	#viewarea {
		width: 1200px;
		margin: 0 auto;
	}
}

/* -------------------------------------------------------------------------------- */
/* Navigation                                                                       */
/* -------------------------------------------------------------------------------- */
nav {
	z-index: 9999;
}

nav ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: .5em;
	margin: 0;
}

nav ul li {
	margin: 0 1em;
}

nav ul li a {
	color: var(--highlight);
	padding: .25em;
}

nav ul li a:active {
	color: burlywood;
}

nav ul li img {
	display: none;
}

@media (max-width: 479px){
	nav {
		position: fixed;
		left: 0;
		bottom: 0;
	}
	
	nav ul {
		justify-content: space-around;
	}
	
	nav ul li a img {
		display: inherit;
	}
	
	nav ul li a span {
		display: none;
	}
}

@media (min-width : 1024px ) {
	nav ul li a:hover, nav ul li a:focus {
		background-color: var(--highlight);
		color: var(--siteBlue);
		border-radius: .5em;
	}
}

/* -------------------------------------------------------------------------------- */
/* Footer                                                                           */
/* -------------------------------------------------------------------------------- */
footer {
	position: fixed;
	left: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	margin-top: auto;
}

footer span {
	display: inline-block;
}

@media (max-width: 479px){
	footer {
		position: relative;
		bottom: auto;
		margin: 0;
	}
	
	footer p {
		font-size: smaller;
	}
}

/* -------------------------------------------------------------------------------- */
/* Main                                                                             */
/* -------------------------------------------------------------------------------- */
main {
	display: flex;
	line-height: 1.25em;
	margin-top: 1em;
}

@media (max-width: 479px){
	main {
		flex: 1 1 auto;
		flex-wrap: wrap;
	}
}


/* -------------------------------------------------------------------------------- */
/* News                                                                             */
/* -------------------------------------------------------------------------------- */
#news {
	flex: 1 1 30%;
	max-width: 460px;
	padding: 0 1em 1em;
}

#news h2 {
	margin-top: 0;
}

#news a {
	display: block;
	margin: .5em 0;
	padding: 1em 1em;
	border-radius: .5em;
	border-style: solid;
	border-width: thin;
	background-color: var(--siteBlue);
	color: white;
}

@media (max-width: 479px){
	#news {
		display: none;
	}
}

@media (min-width: 1200px){
	#news {
		padding-left: 0;
	}
}



/* -------------------------------------------------------------------------------- */
/* Content                                                                             */
/* -------------------------------------------------------------------------------- */
#content {
	flex: 2 2 70%;
}

#content>section {
	padding: 0 1em;
}

#content>section:last-child {
	padding-bottom: 2em;
}

#content>section>h2 {
	margin-top: 0;
}

#content>section>article>h3 {
	border-bottom: solid;
	border-bottom-color: var(--siteBlue);
	border-bottom-width: medium;
	padding-bottom: .25em;
	width: 100%
}

#content>section>p {
	margin: 1em 0;
}

@media (max-width: 479px){
	#content {
		width: 100%;
		margin: 0;
	}
}

/* -------------------------------------------------------------------------------- */
/* Text Formatting                                                                  */
/* -------------------------------------------------------------------------------- */
.assert {
	font-weight: bold;
}

.button {
	display: inline-block;
	padding: .25em .5em;
	border-radius: .1em;
	background-color: lightgray;
}

.example {
	margin-top: .5em;
}

.example:before {
	text-decoration: underline;
	display: block;
	content: "Example:"
}

.fieldName {
	font-style: italic;
	font-weight: bold;
}

.fieldValue {
	display: inline-block;
	padding: .25em .5em;
	border-color: black;
	border-style: solid;
	border-width: thin;
}

.fxSyntax {
	
}

.fxSyntax:before {
	content: "Syntax";
	/* taken from #content>section>article>h3 */
	border-bottom: solid;
	border-bottom-color: var(--siteBlue);
	border-bottom-width: medium;
	padding-bottom: .25em;
	width: 100%;
	/* taken from H3 */
	display: block;
	font-size: 1.17em;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}

.fxSyntax>p:first-of-type:before {
	content: "= ";
}

.fxError {
	
}

.fxError:before {
	content: "Possible Errors";
	/* taken from #content>section>article>h3 */
	border-bottom: solid;
	border-bottom-color: var(--siteBlue);
	border-bottom-width: medium;
	padding-bottom: .25em;
	width: 100%;
	/* taken from H3 */
	display: block;
	font-size: 1.17em;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}

.fxNotes {

}

.fxNotes:before {
	content: "Notes";
	/* taken from #content>section>article>h3 */
	border-bottom: solid;
	border-bottom-color: var(--siteBlue);
	border-bottom-width: medium;
	padding-bottom: .25em;
	width: 100%;
	/* taken from H3 */
	display: block;
	font-size: 1.17em;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}

.fxExamples {
	
}

.fxExamples:before {
	content: "Examples";
	/* taken from #content>section>article>h3 */
	border-bottom: solid;
	border-bottom-color: var(--siteBlue);
	border-bottom-width: medium;
	padding-bottom: .25em;
	width: 100%;
	/* taken from H3 */
	display: block;
	font-size: 1.17em;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}

.iconText {
	color: gold;
}

.iconText:before {
	content: open-quote;
}

.iconText:after {
	content: close-quote;
}

.menuText {
	color: salmon;
}

.menuText:before {
	content: open-quote;
}

.menuText:after {
	content: close-quote;
}

.product {
	color: darkgreen;
	font-weight: bold;
}

.product:before {
	content: "Excellence";
}

.seeAlso {
	
}

.seeAlso:before {
	content: "See also:";
	/* Taken from H4 */
	display: block;
	margin-top: 1.33em;
	margin-bottom: 1.33em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}


/* -------------------------------------------------------------------------------- */
/* Image Formatting                                                                 */
/* -------------------------------------------------------------------------------- */
.icon {
	align-self: center;
	max-width: 32px;
	max-height: 32px;
}

.screenshot {
	max-width: fit-content;
}



/* -------------------------------------------------------------------------------- */
/* Help                                                                             */
/* -------------------------------------------------------------------------------- */
.helpTopic {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 2em;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	list-style: none;
}

.helpTopic>li {
	flex: 0 0 6em;
	align-items: stretch;
	padding: .25em;
	margin-bottom: .25em;
}

.helpTopic>li>a {
	border-radius: .5em;
	border-style: solid;
	border-color: var(--siteBlue);
	border-width: medium;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.helpTopic>li>a:link, .helpTopic>li>a:visited {
	color: black;
}

.helpTopic>li>a:hover, .helpTopic>li>a:focus {
	background-color: var(--highlight);
}

.helpTopic>li>a>section {
	padding: 0;
	text-align: center;
}

.helpTopic>li>a>section:first-child {
	margin: .25em auto 0 auto;
}

.helpTopic>li>a>section:last-child {
	margin: auto;
}



/* -------------------------------------------------------------------------------- */
/* Boxing                                                                           */
/* -------------------------------------------------------------------------------- */
.box {
	margin: 1em 0;
	padding: 1em;
	border-radius: .5em;
	border-style: solid;
	border-color: var(--siteBlue);
	border-width: medium;
}

.box>h4 {
	margin-top: 0;
}

.box>ul {
	margin-bottom: 0;
}

.highlight {
	background-color: var(--highlight);
}

.status {
	margin: 1em 0;
	padding: 1em;
	padding-left: 3.5em;
	border-radius: .5em;
	border-style: solid;
	border-color: var(--siteBlue);
	border-width: medium;
	background-repeat: no-repeat;
	background-size: 3em;
	background-position: .25em .25em;
	font-size: medium;
}

.statusInformation {
	background-image: url("../images/ui_icons/information.svg");
}

.statusWarning {
	background-image: url("../images/ui_icons/warning.svg");
}



/* -------------------------------------------------------------------------------- */
/* Steps                                                                            */
/* -------------------------------------------------------------------------------- */
.steps {
	list-style-type: decimal;
	padding-left: 3em;
}

.steps>li {
	margin-top: 1em;
}

.steps>li:first-of-type {
	margin-top: 0;
}

.steps img {
    display: block;
}


/* -------------------------------------------------------------------------------- */
/* Icon List                                                                        */
/* -------------------------------------------------------------------------------- */
.iconList {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	list-style: none;
}

.iconList>li {
	margin-top: 1em;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.iconList>li:first-of-type {
	margin-top: 0;
}

.iconList>li>img {
	flex: 0 0 32px;
	margin-right: 16px;
}

.iconList>li>span {
	flex: 1 1 auto;
	display: inline-block;
}




/* -------------------------------------------------------------------------------- */
/* Media Queries                                                                    */
/* -------------------------------------------------------------------------------- */
@media (max-width: 479px){
}

@media (max-width: 1023px){
	h2 {
		font-size: large;
	}
}

@media (min-width : 480px) and (max-width : 1023px){
}

@media (min-width : 1024px) and (max-width : 1199px){
}

@media (min-width : 1024px ) {
}

@media (min-width: 1200px){
}