@charset "UTF-8";

html 
{ 
	height: 100%;
    
    font-family: -apple-system, Helvetica, Arial, sans-serif;
    font-size: 24px;
    color: RGB(120, 120, 120);
    
    min-width: 1030px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;

    overflow-x: hidden;
}

body.background
{
	background-color: RGB(255, 255, 255);
}

body 
{
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    
    line-height: 1.2;
    
    min-width: 1030px;
    margin-left: auto;
	margin-right: auto;
    text-align: center;
    
    overflow-x: hidden;
}

/*******************************

    Content

********************************/

img.button
{
	border-style: none;
}

.leftAlignedContent
{
	text-align: left;
}

/*******************************

    Headers

********************************/

.smallHeader
{
    font-size: 26px;
    font-weight: bold;
}

.header
{
    font-size: 32px;
    font-weight: bold;
}

/*******************************

    Text

********************************/

.leftAlignedText
{
    width: 980px;
    margin-left: auto;
	margin-right: auto;
    
    text-align: left;
    
    position: relative;
	left: 0px;
}

.centeredText
{
    width: 800px;
    
    margin-left: auto;
	margin-right: auto;
}

.largeText
{
    font-size: 32px;
}

.smallText
{
    font-size: 18px;
}

.greenText
{
    color: RGB(0, 160, 0);
}

/*******************************

    Links

********************************/

a:link, a:visited
{
	color: RGB(120, 120, 120);
	text-decoration: none;
	font-weight: bold;
}

a.colour:link, a.colour:visited
{
    color: RGB(0, 160, 0); 
    text-decoration: none;
    font-weight: bold;
}

a:hover, a:active
{
	color: RGB(0, 160, 0); 
    text-decoration: none;
	font-weight: bold;
}

/*******************************

    Sections

********************************/

/* Image on the left. */
.sectionImageLeft
{
    width: 1020px;
    
    margin-left: auto;
	margin-right: auto;
    
    margin-bottom: 100px;
}

.imageLeft
{
    width: 550px;
    display: inline-block;
    
    position: relative;
    left: -20px;
}

.titleAndDescriptionImageLeft
{
    width: 440px;
    display: inline-block;
    
    text-align: left;
    
    position: relative;
    left: -30px;
    top: -72px;
}

/* Image on the right. */
.sectionImageRight
{
    width: 1020px;
    
    margin-left: auto;
	margin-right: auto;
    
    margin-bottom: 100px;
}

.imageRight
{
    width: 550px;
    display: inline-block;
    
    position: relative;
    left: 20px;
    z-index: 0;
}

.titleAndDescriptionImageRight
{    
    width: 440px;
    display: inline-block;
    
    text-align: left;
    
    position: relative;
    left: 30px;
    top: -72px;
    z-index: 1;
}

/* Image in the center. */
.sectionImageCenter
{
    width: 1020px;
    
    margin-left: auto;
	margin-right: auto;
    
    margin-bottom: 130px;
}

.imageCenter
{
    
}

.titleAndDescriptionImageCenter
{
    width: 800px;
    
    text-align: left;
    
    margin-left: auto;
	margin-right: auto;
}

/* For the title and description within each section. */
.title
{
	font-size: 36px;
    font-weight: bold;
    
    margin-bottom: 12px;
    
    color: RGB(80, 80, 80);
}

.description
{
	font-size: 28px;
}

/*******************************

    Contact

********************************/

fieldset
{
    border: 2px solid RGB(0, 160, 0);
    width: 870px;
    padding: 20px 20px;
    margin-left: 33px;
    
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

legend
{
    border: 2px solid RGB(0, 160, 0);
    padding: 10px 15px;
    margin-left: 311px;
    
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    
    background-color: RGB(255, 255, 255);
} 

input[type="text"]
{
    font-size: 24px;
    color: RGB(120, 120, 120);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    
    line-height: 1.2;
    
    background-color: RGB(230, 230, 230);
    
    width: 340px;
    
    border-style: none;
}

textarea
{
    font-size: 24px;
    color: RGB(120, 120, 120);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    
    line-height: 1.2;
    
    background-color: RGB(230, 230, 230);
    
    height: 400px;
    width: 433px;
    
    border: 2px solid RGB(0, 160, 0);
    
    border-style: none;
    
    resize: none; 
}

