<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Overall font-family and font-size for both the editor and the homepage itself */
body {
    font-family: Verdana, Helvetica, Arial, sans-serif;
}

/* Main appearence for the header tags (top of each widget where the title is displayed). */
#column1 li div header
{
    border-top:1px solid black;
    border-left:1px solid black;
    border-right:1px solid black;
    border-bottom:1px solid darkgrey;
    padding:10px;
    font-weight:bold;
}

ul.MenuBarHorizontal {
    font-size: 100% !important;
}

/* Rounded Corner settings for widget headers */
#column1 li div header.round
{
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-radius: 10px 10px 0px 0px;
}

/* Shadow settings for widget headers */
#column1 li div header.shadow {
    -webkit-box-shadow: 5px 5px 10px 0px #b0b0b0;
    -moz-box-shadow: 5px 5px 10px 0px #b0b0b0;
    box-shadow: 5px 5px 10px 0px #b0b0b0;
}

/* Main appearence for the article tags (top of each widget where the title is displayed). */
#column1 li div article
{
    border-bottom:1px solid black;
    border-left:1px solid black;
    border-right:1px solid black;
    background-color:white;
    padding:10px;
    overflow:auto;
}

/* Rounded Corner settings for widget articles */
#column1 li div article.round
{
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-bottomright: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-radius: 0px 0px 10px 10px;
}

/* Shadow settings for widget articles */
#column1 li div article.shadow
{
    -webkit-box-shadow: 5px 5px 10px 0px #b0b0b0;
    -moz-box-shadow: 5px 5px 10px 0px #b0b0b0;
    box-shadow: 5px 5px 10px 0px #b0b0b0;
}

/* Header colour classes. DO NOT change the names of these classes as you will have no way to access them from within the design builder.*/
/* You can override all header settings by adding a new declaration for the header tag, setting a background and marking it as !important. */
.headerBlack 
{
	background: #4c4c4c; /* Old browsers */
	background: -moz-linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, #000000 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(12%,#595959), color-stop(25%,#666666), color-stop(39%,#474747), color-stop(50%,#2c2c2c), color-stop(51%,#000000), color-stop(60%,#111111), color-stop(76%,#2b2b2b), color-stop(91%,#1c1c1c), color-stop(100%,#131313)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* IE10+ */
	background: linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* W3C */
	color:white;
	font-face:Verdana,sans-serif;
	text-align:center;
}

.headerBlue1 
{
	background: #c5deea; /* Old browsers */
	background: -moz-linear-gradient(top, #c5deea 0%, #8abbd7 31%, #066dab 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c5deea), color-stop(31%,#8abbd7), color-stop(100%,#066dab)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #c5deea 0%,#8abbd7 31%,#066dab 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #c5deea 0%,#8abbd7 31%,#066dab 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #c5deea 0%,#8abbd7 31%,#066dab 100%); /* IE10+ */
	background: linear-gradient(top, #c5deea 0%,#8abbd7 31%,#066dab 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerBlue2 {
	background: #e0f3fa; /* Old browsers */
	background: -moz-linear-gradient(top, #e0f3fa 0%, #d8f0fc 50%, #b8e2f6 51%, #b6dffd 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e0f3fa), color-stop(50%,#d8f0fc), color-stop(51%,#b8e2f6), color-stop(100%,#b6dffd)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #e0f3fa 0%,#d8f0fc 50%,#b8e2f6 51%,#b6dffd 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #e0f3fa 0%,#d8f0fc 50%,#b8e2f6 51%,#b6dffd 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #e0f3fa 0%,#d8f0fc 50%,#b8e2f6 51%,#b6dffd 100%); /* IE10+ */
	background: linear-gradient(top, #e0f3fa 0%,#d8f0fc 50%,#b8e2f6 51%,#b6dffd 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerBlue3 {
	background: #899eeb; /* Old browsers */
	background: -moz-linear-gradient(top, #899eeb 0%, #3e63de 24%, #082fb0 50%, #264fd6 79%, #5071e0 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#899eeb), color-stop(24%,#3e63de), color-stop(50%,#082fb0), color-stop(79%,#264fd6), color-stop(100%,#5071e0)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #899eeb 0%,#3e63de 24%,#082fb0 50%,#264fd6 79%,#5071e0 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #899eeb 0%,#3e63de 24%,#082fb0 50%,#264fd6 79%,#5071e0 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #899eeb 0%,#3e63de 24%,#082fb0 50%,#264fd6 79%,#5071e0 100%); /* IE10+ */
	background: linear-gradient(top, #899eeb 0%,#3e63de 24%,#082fb0 50%,#264fd6 79%,#5071e0 100%); /* W3C */
	text-align:center;
	color:white;
}

.headerBrown1 {
	background: #f0b7a1; /* Old browsers */
	background: -moz-linear-gradient(top, #f0b7a1 0%, #8c3310 50%, #752201 51%, #bf6e4e 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0b7a1), color-stop(50%,#8c3310), color-stop(51%,#752201), color-stop(100%,#bf6e4e)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f0b7a1 0%,#8c3310 50%,#752201 51%,#bf6e4e 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f0b7a1 0%,#8c3310 50%,#752201 51%,#bf6e4e 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #f0b7a1 0%,#8c3310 50%,#752201 51%,#bf6e4e 100%); /* IE10+ */
	background: linear-gradient(top, #f0b7a1 0%,#8c3310 50%,#752201 51%,#bf6e4e 100%); /* W3C */
	text-align:center;
	color:white;
}

.headerBrown2 {
	background: #a90329; /* Old browsers */
	background: -moz-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a90329), color-stop(44%,#8f0222), color-stop(100%,#6d0019)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #a90329 0%,#8f0222 44%,#6d0019 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #a90329 0%,#8f0222 44%,#6d0019 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #a90329 0%,#8f0222 44%,#6d0019 100%); /* IE10+ */
	background: linear-gradient(top, #a90329 0%,#8f0222 44%,#6d0019 100%); /* W3C */
	text-align:center;
	color:white;
}

.headerBrown3 {
	background: #f3e2c7; /* Old browsers */
	background: -moz-linear-gradient(top, #f3e2c7 0%, #c19e67 50%, #b68d4c 51%, #e9d4b3 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3e2c7), color-stop(50%,#c19e67), color-stop(51%,#b68d4c), color-stop(100%,#e9d4b3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* IE10+ */
	background: linear-gradient(top, #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerFlame {
	background: #ff0000; /* Old browsers */
	background: -moz-linear-gradient(top, #ff0000 0%, #eeff05 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff0000), color-stop(100%,#eeff05)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ff0000 0%,#eeff05 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ff0000 0%,#eeff05 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #ff0000 0%,#eeff05 100%); /* IE10+ */
	background: linear-gradient(top, #ff0000 0%,#eeff05 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerGreen1 
{
	background: #b4e391; /* Old browsers */
	background: -moz-linear-gradient(top, #b4e391 0%, #61c419 50%, #b4e391 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b4e391), color-stop(50%,#61c419), color-stop(100%,#b4e391)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #b4e391 0%,#61c419 50%,#b4e391 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #b4e391 0%,#61c419 50%,#b4e391 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #b4e391 0%,#61c419 50%,#b4e391 100%); /* IE10+ */
	background: linear-gradient(top, #b4e391 0%,#61c419 50%,#b4e391 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerGreen2 {
	background: #4a6816; /* Old browsers */
	background: -moz-linear-gradient(top, #4a6816 0%, #4e6d1b 50%, #3c5b0b 51%, #395705 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4a6816), color-stop(50%,#4e6d1b), color-stop(51%,#3c5b0b), color-stop(100%,#395705)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #4a6816 0%,#4e6d1b 50%,#3c5b0b 51%,#395705 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #4a6816 0%,#4e6d1b 50%,#3c5b0b 51%,#395705 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #4a6816 0%,#4e6d1b 50%,#3c5b0b 51%,#395705 100%); /* IE10+ */
	background: linear-gradient(top, #4a6816 0%,#4e6d1b 50%,#3c5b0b 51%,#395705 100%); /* W3C */
	text-align:center;
	color:white;
}

.headerGreen3 {
	background: #cad67a; /* Old browsers */
	background: -moz-linear-gradient(top, #cad67a 0%, #abbb33 50%, #929f33 51%, #bccf31 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cad67a), color-stop(50%,#abbb33), color-stop(51%,#929f33), color-stop(100%,#bccf31)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #cad67a 0%,#abbb33 50%,#929f33 51%,#bccf31 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #cad67a 0%,#abbb33 50%,#929f33 51%,#bccf31 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #cad67a 0%,#abbb33 50%,#929f33 51%,#bccf31 100%); /* IE10+ */
	background: linear-gradient(top, #cad67a 0%,#abbb33 50%,#929f33 51%,#bccf31 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerGrey1 
{
	background: #e2e2e2; /* Old browsers */
	background: -moz-linear-gradient(top, #e2e2e2 0%, #dbdbdb 50%, #d1d1d1 51%, #fefefe 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e2e2e2), color-stop(50%,#dbdbdb), color-stop(51%,#d1d1d1), color-stop(100%,#fefefe)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* IE10+ */
	background: linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerGrey2 {
	background: #f2f6f8; /* Old browsers */
	background: -moz-linear-gradient(top, #f2f6f8 0%, #d8e1e7 50%, #b5c6d0 51%, #e0eff9 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f6f8), color-stop(50%,#d8e1e7), color-stop(51%,#b5c6d0), color-stop(100%,#e0eff9)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f2f6f8 0%,#d8e1e7 50%,#b5c6d0 51%,#e0eff9 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f2f6f8 0%,#d8e1e7 50%,#b5c6d0 51%,#e0eff9 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #f2f6f8 0%,#d8e1e7 50%,#b5c6d0 51%,#e0eff9 100%); /* IE10+ */
	background: linear-gradient(top, #f2f6f8 0%,#d8e1e7 50%,#b5c6d0 51%,#e0eff9 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerGrey3 {
	background: #f5f6f6; /* Old browsers */
	background: -moz-linear-gradient(top, #f5f6f6 0%, #dbdce2 21%, #b8bac6 49%, #dddfe3 80%, #f5f6f6 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f6f6), color-stop(21%,#dbdce2), color-stop(49%,#b8bac6), color-stop(80%,#dddfe3), color-stop(100%,#f5f6f6)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f5f6f6 0%,#dbdce2 21%,#b8bac6 49%,#dddfe3 80%,#f5f6f6 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f5f6f6 0%,#dbdce2 21%,#b8bac6 49%,#dddfe3 80%,#f5f6f6 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #f5f6f6 0%,#dbdce2 21%,#b8bac6 49%,#dddfe3 80%,#f5f6f6 100%); /* IE10+ */
	background: linear-gradient(top, #f5f6f6 0%,#dbdce2 21%,#b8bac6 49%,#dddfe3 80%,#f5f6f6 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerOrange1
{
	background: #ffb76b; /* Old browsers */
	background: -moz-linear-gradient(top, #ffb76b 0%, #ffa73d 50%, #ff7c00 51%, #ff7f04 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffb76b), color-stop(50%,#ffa73d), color-stop(51%,#ff7c00), color-stop(100%,#ff7f04)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffb76b 0%,#ffa73d 50%,#ff7c00 51%,#ff7f04 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffb76b 0%,#ffa73d 50%,#ff7c00 51%,#ff7f04 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #ffb76b 0%,#ffa73d 50%,#ff7c00 51%,#ff7f04 100%); /* IE10+ */
	background: linear-gradient(top, #ffb76b 0%,#ffa73d 50%,#ff7c00 51%,#ff7f04 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerOrange2 {
	background: #fceabb; /* Old browsers */
	background: -moz-linear-gradient(top, #fceabb 0%, #fccd4d 50%, #f8b500 51%, #fbdf93 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fceabb), color-stop(50%,#fccd4d), color-stop(51%,#f8b500), color-stop(100%,#fbdf93)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #fceabb 0%,#fccd4d 50%,#f8b500 51%,#fbdf93 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fceabb 0%,#fccd4d 50%,#f8b500 51%,#fbdf93 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #fceabb 0%,#fccd4d 50%,#f8b500 51%,#fbdf93 100%); /* IE10+ */
	background: linear-gradient(top, #fceabb 0%,#fccd4d 50%,#f8b500 51%,#fbdf93 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerOrange3 {
	background: #ffa84c; /* Old browsers */
	background: -moz-linear-gradient(top, #ffa84c 0%, #ff7b0d 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffa84c), color-stop(100%,#ff7b0d)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffa84c 0%,#ff7b0d 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffa84c 0%,#ff7b0d 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #ffa84c 0%,#ff7b0d 100%); /* IE10+ */
	background: linear-gradient(top, #ffa84c 0%,#ff7b0d 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerPink1 {
	background: #fcecfc; /* Old browsers */
	background: -moz-linear-gradient(top, #fcecfc 0%, #fba6e1 50%, #fd89d7 51%, #ff7cd8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcecfc), color-stop(50%,#fba6e1), color-stop(51%,#fd89d7), color-stop(100%,#ff7cd8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #fcecfc 0%,#fba6e1 50%,#fd89d7 51%,#ff7cd8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fcecfc 0%,#fba6e1 50%,#fd89d7 51%,#ff7cd8 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #fcecfc 0%,#fba6e1 50%,#fd89d7 51%,#ff7cd8 100%); /* IE10+ */
	background: linear-gradient(top, #fcecfc 0%,#fba6e1 50%,#fd89d7 51%,#ff7cd8 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerPink2 {
	background: #fbc1fb; /* Old browsers */
	background: -moz-linear-gradient(top, #fbc1fb 0%, #fc80d7 50%, #fe64cb 51%, #ff5bce 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fbc1fb), color-stop(50%,#fc80d7), color-stop(51%,#fe64cb), color-stop(100%,#ff5bce)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #fbc1fb 0%,#fc80d7 50%,#fe64cb 51%,#ff5bce 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fbc1fb 0%,#fc80d7 50%,#fe64cb 51%,#ff5bce 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #fbc1fb 0%,#fc80d7 50%,#fe64cb 51%,#ff5bce 100%); /* IE10+ */
	background: linear-gradient(top, #fbc1fb 0%,#fc80d7 50%,#fe64cb 51%,#ff5bce 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerPink3 {
	background: #faf6fa; /* Old browsers */
	background: -moz-linear-gradient(top, #faf6fa 0%, #eadae5 50%, #e4cedd 51%, #e2c8da 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#faf6fa), color-stop(50%,#eadae5), color-stop(51%,#e4cedd), color-stop(100%,#e2c8da)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #faf6fa 0%,#eadae5 50%,#e4cedd 51%,#e2c8da 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #faf6fa 0%,#eadae5 50%,#e4cedd 51%,#e2c8da 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #faf6fa 0%,#eadae5 50%,#e4cedd 51%,#e2c8da 100%); /* IE10+ */
	background: linear-gradient(top, #faf6fa 0%,#eadae5 50%,#e4cedd 51%,#e2c8da 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerPurple1
{
	background: #cb60b3; /* Old browsers */
	background: -moz-linear-gradient(top, #cb60b3 0%, #c146a1 50%, #a80077 51%, #db36a4 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cb60b3), color-stop(50%,#c146a1), color-stop(51%,#a80077), color-stop(100%,#db36a4)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #cb60b3 0%,#c146a1 50%,#a80077 51%,#db36a4 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #cb60b3 0%,#c146a1 50%,#a80077 51%,#db36a4 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #cb60b3 0%,#c146a1 50%,#a80077 51%,#db36a4 100%); /* IE10+ */
	background: linear-gradient(top, #cb60b3 0%,#c146a1 50%,#a80077 51%,#db36a4 100%); /* W3C */
	text-align:center;
	color:white;
}

.headerPurple2 {
	background: #cb60b3; /* Old browsers */
	background: -moz-linear-gradient(top, #cb60b3 0%, #ad1283 50%, #de47ac 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cb60b3), color-stop(50%,#ad1283), color-stop(100%,#de47ac)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #cb60b3 0%,#ad1283 50%,#de47ac 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #cb60b3 0%,#ad1283 50%,#de47ac 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #cb60b3 0%,#ad1283 50%,#de47ac 100%); /* IE10+ */
	background: linear-gradient(top, #cb60b3 0%,#ad1283 50%,#de47ac 100%); /* W3C */
	text-align:center;
	color:white;
}

.headerPurple3 {
	background: #b0148e; /* Old browsers */
	background: -moz-linear-gradient(top, #b0148e 0%, #79055a 50%, #b60c7d 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b0148e), color-stop(50%,#79055a), color-stop(100%,#b60c7d)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #b0148e 0%,#79055a 50%,#b60c7d 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #b0148e 0%,#79055a 50%,#b60c7d 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #b0148e 0%,#79055a 50%,#b60c7d 100%); /* IE10+ */
	background: linear-gradient(top, #b0148e 0%,#79055a 50%,#b60c7d 100%); /* W3C */
	text-align:center;
	color:white;
}

.headerRainbow {
	background: #fc0000; /* Old browsers */
	background: -moz-linear-gradient(top, #fc0000 0%, #f9a600 18%, #f2ff00 34%, #03e000 50%, #00addd 67%, #2500f9 83%, #a35eff 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fc0000), color-stop(18%,#f9a600), color-stop(34%,#f2ff00), color-stop(50%,#03e000), color-stop(67%,#00addd), color-stop(83%,#2500f9), color-stop(100%,#a35eff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #fc0000 0%,#f9a600 18%,#f2ff00 34%,#03e000 50%,#00addd 67%,#2500f9 83%,#a35eff 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fc0000 0%,#f9a600 18%,#f2ff00 34%,#03e000 50%,#00addd 67%,#2500f9 83%,#a35eff 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #fc0000 0%,#f9a600 18%,#f2ff00 34%,#03e000 50%,#00addd 67%,#2500f9 83%,#a35eff 100%); /* IE10+ */
	background: linear-gradient(top, #fc0000 0%,#f9a600 18%,#f2ff00 34%,#03e000 50%,#00addd 67%,#2500f9 83%,#a35eff 100%); /* W3C */
	color:black;
	text-align:center;
}

.headerRed1 
{
	background: #f85032; /* Old browsers */
	background: -moz-linear-gradient(top, #f85032 0%, #f16f5c 50%, #f6290c 51%, #f02f17 71%, #e73827 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f85032), color-stop(50%,#f16f5c), color-stop(51%,#f6290c), color-stop(71%,#f02f17), color-stop(100%,#e73827)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f85032 0%,#f16f5c 50%,#f6290c 51%,#f02f17 71%,#e73827 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f85032 0%,#f16f5c 50%,#f6290c 51%,#f02f17 71%,#e73827 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #f85032 0%,#f16f5c 50%,#f6290c 51%,#f02f17 71%,#e73827 100%); /* IE10+ */
	background: linear-gradient(top, #f85032 0%,#f16f5c 50%,#f6290c 51%,#f02f17 71%,#e73827 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerRed2 {
	background: #efc5ca; /* Old browsers */
	background: -moz-linear-gradient(top, #efc5ca 0%, #d24b5a 50%, #ba2737 51%, #f18e99 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#efc5ca), color-stop(50%,#d24b5a), color-stop(51%,#ba2737), color-stop(100%,#f18e99)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #efc5ca 0%,#d24b5a 50%,#ba2737 51%,#f18e99 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #efc5ca 0%,#d24b5a 50%,#ba2737 51%,#f18e99 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #efc5ca 0%,#d24b5a 50%,#ba2737 51%,#f18e99 100%); /* IE10+ */
	background: linear-gradient(top, #efc5ca 0%,#d24b5a 50%,#ba2737 51%,#f18e99 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerRed3 {
	background: #ff3019; /* Old browsers */
	background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff3019), color-stop(100%,#cf0404)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ff3019 0%,#cf0404 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ff3019 0%,#cf0404 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #ff3019 0%,#cf0404 100%); /* IE10+ */
	background: linear-gradient(top, #ff3019 0%,#cf0404 100%); /* W3C */
	text-align:center;
	color:white;
}

.headerRose {
	background: #febbbb; /* Old browsers */
	background: -moz-linear-gradient(top, #febbbb 0%, #fe9090 45%, #ff5c5c 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#febbbb), color-stop(45%,#fe9090), color-stop(100%,#ff5c5c)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #febbbb 0%,#fe9090 45%,#ff5c5c 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #febbbb 0%,#fe9090 45%,#ff5c5c 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #febbbb 0%,#fe9090 45%,#ff5c5c 100%); /* IE10+ */
	background: linear-gradient(top, #febbbb 0%,#fe9090 45%,#ff5c5c 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerWhite1 {
	background: #f6f8f9; /* Old browsers */
	background: -moz-linear-gradient(top, #f6f8f9 0%, #e5ebee 50%, #d7dee3 51%, #f5f7f9 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f6f8f9), color-stop(50%,#e5ebee), color-stop(51%,#d7dee3), color-stop(100%,#f5f7f9)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f6f8f9 0%,#e5ebee 50%,#d7dee3 51%,#f5f7f9 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f6f8f9 0%,#e5ebee 50%,#d7dee3 51%,#f5f7f9 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #f6f8f9 0%,#e5ebee 50%,#d7dee3 51%,#f5f7f9 100%); /* IE10+ */
	background: linear-gradient(top, #f6f8f9 0%,#e5ebee 50%,#d7dee3 51%,#f5f7f9 100%); /* W3C */
	text-align:center;
	color:black;
}

.headerWhite2 {
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#f3f3f3), color-stop(51%,#ededed), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* IE10+ */
	background: linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* W3C */
	text-align:center;
	color:black;
}

/* These settings are for the display of the calendar icon.  By default it resembles an iCal style icon with a red bar at the top. */
/* The first block is the basic layout of the icon*/
div.datetime {
	border:1px solid #000;
	border-radius: 5px 5px 0px 0px;
	box-shadow: 2px 2px 2px silver;
	width:50px;
	float:left;
	display:block;
	margin: 0px auto 20px auto;
}

/* The wrapper is the containing block for the icon */
div.wrapper {
	float:left;
	display:block;
	margin-bottom:10px;
	width: 70%;
}

/* Settings for the week day.  Colour is set as part of widget setup. */
div.datetime p {
	margin:0 auto;
	padding:0;
	text-align:center;
	font-size:1.1em;
}

/* Settings for the Day part (Middle section) */
div.datetime p.day{
	background: #fff;
	color: #000;
	font-size: 1.2em;
	font-weight:bold;
}

/* Settings for the Month part (Bottom Section) */
div.datetime p.month  {
	background: #fff;
	color: #000;
	font-size: 1em;
	padding-bottom:2px;
}

/* This is used to control positioning of events when the widget is larger than width 1 */
div.event_description_float {
	float:left;
	margin-left:10px;
	display:block;
	padding: 0px 5px;
	clear:both;
	margin-bottom:10px;
}

/* Settings for the appearence of all day events */
p.allDay {
	background-color: papayawhip;
	border-top: 2px dashed peachpuff;
	border-bottom: 2px dashed peachpuff;
	padding: 2px;
}
/* new homepage_colors and icons for 2017*/

header {
background: #2D7B66 !important; color: #ffffff !important; border-color: #C3DBD5 !important; -webkit-border-top-left-radius: 5px !important; -webkit-border-top-right-radius: 5px !important;  -moz-border-radius-topleft: 5px !important; -moz-border-radius-topright: 5px !important; border-top-left-radius: 5px !important; border-top-right-radius: 5px !important; border-radius: 5px 5px 0px 0px !important; text-align:center !important;

}

article {
background: #E0ECE9 !important; border-color: #C3DBD5 !important; -webkit-border-bottom-left-radius: 5px !important; -webkit-border-bottom-right-radius: 5px !important; -moz-border-radius-bottomleft: 5px !important; -moz-border-radius-bottomright: 5px !important; border-bottom-left-radius: 5px !important; border-bottom-right-radius: 5px !important; border-radius: 0px 0px 5px 5px !important;

}</pre></body></html>