﻿html, body 
{
    background-color: #fff;
    height: 100%;
    padding: 0;
    margin: 0 auto;
    font-size: 14px;
    font-family: Arial, Verdana, sans-serif, "Helvetica Neue", "Lucida Grande", "Segoe UI", Helvetica;
    border: 0px;
    min-width: 1024px;
}

h1{
    margin:auto 0;
    padding-right:8px;
    font-size:2em;
}
h2{
    margin-top:auto 0;
    font-size:1.2em;
}
a{
    text-decoration: none;
    color: #00d;
    font-weight: bold;
}

a:hover
{
    color: #c00; /* #0a0 Green */
    text-decoration: underline;
}

li
{
    list-style-position: inside;
}

input[type=text], input[type=password]
{
    border: 2px solid #999;
    padding: 6px 12px;
    font-size: larger;
    color: #000;
    border-radius: 4px;
}

textarea
{
    border: 2px solid #ccc;
    padding: 6px 12px;
    font-size: 14px;
    color: #000;
    border-radius: 4px;
}

input[type=text]:focus, input[type=password]:focus, textarea:focus
{
    border: 2px solid #75aaf8;
}

select
{
    border: 2px solid #999;
    padding: 6px 12px;
    color: #000;
    border-radius: 4px;
    font-size: larger;
}

fieldset
{
    border: 1px solid #ddd;
    position: relative;
    padding: 8px;
    padding-top: 0;
    margin-top: 16px;
    margin-bottom: 30px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    background: #eee;
    background: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(#fff));
    background: -moz-linear-gradient(center top, #eee, #fff 100%);
    box-shadow: 2px 2px 8px #ccc;
    -moz-box-shadow: 2px 2px 8px #ccc;
    -webkit-box-shadow: 2px 2px 8px #ccc;
}

legend
{
    padding: 6px 12px;
    position: absolute;
    left: 10px;
    top: -11px;
    background-color: #3b983c;
    color: #fff;
    font-weight: bold;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 2px 2px 4px #999;
    -moz-box-shadow: 2px 2px 4px #999;
    -webkit-box-shadow: 2px 2px 4px #999;
    text-shadow: 1px 1px 1px #333;
}

fieldset p:first-of-type 
{
    padding-top: 25px;
}

fieldset label.inline 
{
    display: inline;
}

input[type=radio], input[type=checkbox] {
    display: none;
}

input[type=radio] + label, input[type=checkbox] + label {
    margin-left: 1px;
}

input[type=radio] + label:before {
    content: "";  
    display: inline-block;  
    width: 15px;
    height: 15px;
    vertical-align:middle;
    margin-right: 8px;
    cursor: pointer;
    background: rgb(#99cccc);
    background-image: -moz-linear-gradient(#eee,#99cccc);
    background-image: -ms-linear-gradient(#eee,#99cccc);
    background-image: -o-linear-gradient(#eee,#99cccc);
    background-image: -webkit-linear-gradient(#eee,#99cccc);
    background-image: linear-gradient(#eee,#99cccc);
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, .3);
    border-radius: 8px;
    border: 1px solid #6b8cb6;
}

input[type=checkbox] + label:before {
    content: "";  
    display: inline-block;  
    width: 15px;
    height: 15px;
    padding: 1px;
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 3px;
    cursor: pointer;
    background: rgb(#99cccc);
    background-image: -moz-linear-gradient(#eee,#99cccc);
    background-image: -ms-linear-gradient(#eee,#99cccc);
    background-image: -o-linear-gradient(#eee,#99cccc);
    background-image: -webkit-linear-gradient(#eee,#99cccc);
    background-image: linear-gradient(#eee,#99cccc);
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, .3);
    border-radius: 4px;
    border: 1px solid #6b8cb6;
}

input[type=radio]:checked + label:before {
    content: "\2022"; /* Bullet */
    color: #000;
    background: rgb(#99cccc);
    background-image: -moz-linear-gradient(#eee,#99cccc);
    background-image: -ms-linear-gradient(#eee,#99cccc);
    background-image: -o-linear-gradient(#eee,#99cccc);
    background-image: -webkit-linear-gradient(#eee,#99cccc);
    background-image: linear-gradient(#eee,#99cccc);
    font-size: 1.8em;
    text-align: center;
    line-height: 14px;
    text-shadow: 0 0 3px #eee;
}

input[type=checkbox]:checked + label:before {
    content: "\2714"; /* Tick */
    color: #000;
    background: rgb(#99cccc);
    background-image: -moz-linear-gradient(#eee,#99cccc);
    background-image: -ms-linear-gradient(#eee,#99cccc);
    background-image: -o-linear-gradient(#eee,#99cccc);
    background-image: -webkit-linear-gradient(#eee,#99cccc);
    background-image: linear-gradient(#eee,#99cccc);
    text-align: center;
    line-height: 15px;
    text-shadow: 0 0 3px #eee;
}
.header{
    display:block;
    position:relative;
    margin:0px;
    padding:0px;
    height:75px;
    /* Apply background gradient */
    background:-webkit-linear-gradient(#f3e17d,#3b983c); /* For Safari 5.1 upwards */
    background:-o-linear-gradient(#f3e17d,#3b983c); /* For Opera 11.1 upwards */
    background:-moz-linear-gradient(#f3e17d,#3b983c); /* For Firefox 3.6 upwards */
    background:linear-gradient(#f3e17d,#3b983c); /* Standard syntax */
    background-color:#3b983c; /* All other browsers, apply a single colour */
    /* End of applying background gradient */
}
.mobile-header{
    display:block;
    position:relative;
    margin:0px;
    padding:0px;
    height:35px;
    padding:0 24px 0 24px;
    /* Apply background gradient */
    background:-webkit-linear-gradient(#f3e17d,#3b983c); /* For Safari 5.1 upwards */
    background:-o-linear-gradient(#f3e17d,#3b983c); /* For Opera 11.1 upwards */
    background:-moz-linear-gradient(#f3e17d,#3b983c); /* For Firefox 3.6 upwards */
    background:linear-gradient(#f3e17d,#3b983c); /* Standard syntax */
    background-color:#3b983c; /* All other browsers, apply a single colour */
    /* End of applying background gradient */
}
.mobile-header-logo {
    color: #fff;
    font-size: 24px;
}
.mobile-header-logo:hover {
    text-decoration: none;
}
.facebook-login-button {
    height: 28px;
    margin: 4px;
}
.login-box-info {
    margin: 4px 8px 4px 4px;
    float: left;
    height: 25px;
    line-height: 25px;
}
.facebook-profile-image {
    border-radius: 25px;
    border: solid 1px #888;
    width: 30px;
}
.logo
{
    float: left;
    width: 200px;
    height: 80px;
    margin: 8px;
    background: url('/Images/WordWheels.png') no-repeat;
}

.logo:hover
{
    cursor: pointer;
}

.headerStyle
{
    width: 100%;
    background-color: #eeebaa;
    padding: 4px 0px 4px 0px;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
}
.main{
    padding:1% 12px;
    margin:0 0 8px 8px;
    min-height:1200px;
}
div.leftcol
{
    position: absolute;
    float: left;
    border-right: 2px solid #eee;
    margin-right: 8px;
    min-height: 600px;
    width: 310px;
}

div.content
{
    padding-left: 8px;
    padding-right: 4px;
    text-align: left;
    margin: 0px auto;
    margin-left: 310px;
}
.hideAds
{
    margin-left: 50px;
    margin-right: 50px;
}
div.contentMobile{
    padding-left:8px;
    padding-right:4px;
    text-align:left;
    margin:0 auto;
}
.navbar {
    background-color: #3b983c;
    padding: 2px;
    padding-left: 330px;
    font-family: 'Open Sans',sans-serif;
    font-size: 14px;
    margin: 0 auto;
    height: 26px;
    border-bottom: 1px solid #333;
}
.navbar ul {
    list-style-type: none;
    padding: 2px;
    margin-top: 0;
    position: relative;
    height: 24px;
    background-color: #060;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.navbar li {
    float: left;
    display: list-item;
    text-align: -webkit-match-parent;
    padding: 0 2px 0 2px;
}
.navbar a {
    position: relative;
    z-index: 1;
    padding: 4px;
    border-radius: 8px;
    color: #f0e68c;
    font-weight: bold;
    overflow: hidden;
    vertical-align: top;
    display: inline-block;
    text-decoration: none;
}
.navbar ul li a:hover {
    background-color: #030;
    color: #333;
}
.navbar ul li a:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    content: '.';
    color: transparent;
    background: #F1C40F;
    visibility: none;
    opacity: 0;
    z-index: -1;
}
.navbar ul li a:hover:after {
    opacity: 1;
    visibility: visible;
    height: 100%;
}
.footer
{
    font-family: Arial, Verdana, sans-serif, "Helvetica Neue", "Lucida Grande", "Segoe UI", Helvetica;
    clear: both;
    background-color: #3b983c;
    color: #fff;
    padding: 20px 0;
    margin: 0px auto;
    text-align: center;
    border-top: 3px solid #f0e68c;
}

.footer a 
{
    text-decoration: none;
	color: #eee;
	font-weight: 100;
}

.footer a:hover
{
    text-decoration: underline;
}

.footer ul {
    margin-left: -40px;
    line-height: 200%;
}

.footer ul li 
{
    list-style-type: none;
}

.footerWrap
{
    margin:0 auto;
    text-align:left;
    width:90%;
}

.navFooter
{
    margin:30px 0 8px 0;
    padding:0 0 7px 0;
    font-size:12px;
}

.navFooterVertCol 
{
    margin: 0 auto 0 auto;
    width: auto;
}

.navFooterLinkCol 
{
    vertical-align: top;
    padding-left: 36px;
    padding-right: 36px;
}

.navFooterColHead 
{
    font-family: "arial","sans-serif";
    font-weight: bold;
    font-variant: small-caps;
    font-size: 16px;
    color: #f0e68c;
    margin: 0 0 8px 0;
    white-space: nowrap;
}

.copyright
{
    text-align:center;
    font-size:100%;
    font-weight:bold;
    border:none;
    color:#f0e68c;
    padding:0;
}

.clear
{
    clear: both;
}

.smallButton
{
    background-color: #ecde29;
    border: 1px solid #c66;
    color: #000;
    border-radius: 4px;
}

.smallButtonHover
{
    background-color: #d5bb00;
    border: 1px solid #c33;
}

.buttonPanel
{
    float:left;
    margin: 4px;
    cursor: pointer;
}

.buttonPanelButton
{
    font-weight: bold;
    font-size: 14px;
    width: 130px;
    background-color: transparent;
    border-color: transparent;
    cursor: pointer;
    padding: 6px;
}
.padBottom8
{
    padding-bottom: 8px;
}
.padTop18
{
    padding-top: 18px;
}
.padTop24
{
    padding-top: 24px;
}
.pad8
{
    padding: 8px;
}
.pad24
{
    padding: 24px;
}
.floatLeft
{
    float: left;
}
.floatRight
{
    float: right;
}
.LeftPanel
{
    float: left;
    position: relative;
}

.answersOuter
{
    background-color: #f0e68c;
    border: 1px solid #3b983c;
    overflow: auto;
    border-radius: 8px;
}

.answersInner
{
    margin: 12px;
}

.answersScore
{
    color: #af292e;
    font-weight: bold;
}

.rating
{
    margin-top:4px;
    float:left;
    min-width:90px;
    max-width:90px;
    font-size:small;
    font-weight:bold;
}

.ratingScore
{
    margin-top:4px;
    font-size:small;
    color:#af292e;
    font-weight:bold;
}

.largeFont
{
    font-size: large;
}

.letter1
{
    position: absolute;
    top: 146px;
    left: 166px;
    font-size: xx-large;
    color: #000;
}

.letter2
{
    position: absolute;
    top: 40px;
    left: 166px;
    font-size: xx-large;
    color: #000;
}

.letter3
{
    position: absolute;
    top: 73px;
    left: 247px;
    font-size: xx-large;
    color: #000;
}

.letter4
{
    position: absolute;
    top: 146px;
    left: 277px;
    font-size: xx-large;
    color: #000;
}

.letter5
{
    position: absolute;
    top: 227px;
    left: 247px;
    font-size: xx-large;
    color: #000;
}

.letter6
{
    position: absolute;
    top: 260px;
    left: 166px;
    font-size: xx-large;
    color: #000;
}

.letter7
{
    position: absolute;
    top: 227px;
    left: 81px;
    font-size: xx-large;
    color: #000;
}

.letter8
{
    position: absolute;
    top: 146px;
    left: 51px;
    font-size: xx-large;
    color: #000;
}

.letter9
{
    position: absolute;
    top: 73px;
    left: 81px;
    font-size: xx-large;
    color: #000;
}

.board
{
    border: 0px none transparent;
}

.boardLink
{
    color: #c00;
    text-decoration: underline;
}

.xLargeFont {
    font-size: x-large;
}

.xxLargeFont
{
    font-size: xx-large;
}

.margin4{margin:4px;}
.marginTop0{margin-top:0;}
.marginTop4{margin-top:4px;}
.marginTop15{margin-top:15px;}
.marginTop25{margin-top:25px;}

.timer
{
    float: right;
    width: 212px;
    text-align: center;
    border-radius: 4px;
    border: 1px #000 solid;
    background-color: #e2cc00;
}

.red
{
    color: #f00;
}

.orange
{
    color: #fe6400;
}

.green
{
    color: #090;
}

.lightgrey
{
    color: #ccc;
}

.largeFont
{
    font-size: large;
}

.bgPopup
{
    top: 0px;
    margin: 0;
    padding: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 8;
    background-color: #333;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

.bgPopupBox
{
    position: fixed;
    top: 20%;
    z-index: 9;
    text-align: center;
    font-size: medium;
    width: 400px;
    min-height: 150px;
    border-radius: 6px;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
}

.bgTitleBar
{
    text-align: left;
    padding-left: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 6px;
    background-color: #3b983c;
    color: #fff;
}

.left80
{
    left: 80px;
    position: relative;
}

.left125
{
    left: 125px;
    position: relative;
}

.grv
{
    border: 1px solid #999;
    border-bottom-width: 2px;
}

.grv-header {
    color: #fff;
    background-color: #00008b;
    white-space: nowrap;
}
.grv tr {
    border: 0px solid transparent;
}

.grv th
{
    padding: 4px; /* Padding on GridView header cells */
}

.grv a:hover
{
    color: #ff9;
}

.grv_header a
{
    color: #fff;
}

.grv_header a:hover
{
    color: #ff0;
}

.grv-header-style-options {
    color: #fff;
    text-align: center;
}

.grv-item-style-options {
    width: 1%;
    white-space: nowrap;
    text-align: center;
}

.vSpace50
{
    height: 50px;
}

.vSpace80
{
    margin-top: 80px;
}

.socialButtons
{
    clear: left !important;
    bottom: 60px !important;
    padding-top: 20px;
    padding-bottom: 40px;
    text-align: center;
}

.socialButtonsMobile
{
    clear: left !important;
    bottom: 60px !important;
    padding-top: 20px;
    padding-bottom: 40px;
    text-align: left;
    padding-left: 24px;
}

.SearchBox
{
    float: left;
    width: 250px;
}

.marginright12
{
    margin-right: 12px;
}

.paddingtop4
{
    position: relative;
    top: -4px;
}

.ErrorLabel
{
    float: left;
}

.validationSummary
{
    border: 1px dashed #f00;
    border-radius: 8px;
    font-weight: bold;
    color: #000;
    background-color: #f0e68c;
    padding: 8px;
}

.msgBox
{
    padding: 8px 14px 8px 14px;
    background-color: #f5c9d3;
    border: 1px solid #f7b3c1;
    border-radius: 4px;
    color: #a00;
    margin-bottom: 30px;
}

.paging
{
    padding: 8px;
    background-color: #eeeaab;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    color: #8b0000;
    font-weight: bold;
    width: 98%;
}

.pagerItem
{
    padding: 4px;
    margin-left: 1px;
    margin-right: 1px;
    background-color: #941100;
    color: #fff;
    text-align: right;
    border: 1px solid #000;
    float: left;
    border-radius: 8px;
}

.pagerItem:hover
{
    color: #ff0;
}

.disabledPagerItem
{
    padding: 4px;
    margin-left: 1px;
    margin-right: 1px;
    background-color: #941100;
    color: #fff;
    text-align: right;
    border: 1px solid #000;
    float: left;
    border-radius: 8px;
}

.sCol1
{
    float: left;
}

.sCol2
{
    margin-left: 4px;
}

.oAnswers
{
    display: none;
}

.imitateLink
{
    cursor: pointer;
}

.googleAd-CentreAlign
{
    margin: 0 auto;
    text-align: center;
    padding-bottom: 8px;
    width: 95%;
}

.googleAdLeaderboard
{
    display: inline-block;
    width: 728px;
    height: 90px;
}

.googleAdSkyscraper
{
    display: inline-block;
    width: 300px;
    height: 600px;
}

.googleAdLargeRectangle
{
    display: inline-block;
    width: 336px;
    height: 280px;
}

.googleAdMediumRectangle
{
    display: inline-block;
    width: 300px;
    height: 250px;
}

.googleAdMobile
{
    display: inline-block;
    width: 320px;
    height: 50px;
}

.clearLeft
{
    clear: left;
}

.imageLeft
{
    float: left;
    padding-right: 12px;
}

.OX1
{
    position: absolute;
    top: 15px;
    left: 15px;
}

.OXbg
{
    cursor: pointer;
}

.OX2
{
    position: absolute;
    top: 15px;
    left: 139px;
}

.OX3
{
    position: absolute;
    top: 15px;
    left: 263px;
}

.OX4
{
    position: absolute;
    top: 139px;
    left: 15px;
}

.OX5
{
    position: absolute;
    top: 139px;
    left: 139px;
}

.OX6
{
    position: absolute;
    top: 139px;
    left: 263px;
}

.OX7
{
    position: absolute;
    top: 260px;
    left: 15px;
}

.OX8
{
    position: absolute;
    top: 260px;
    left: 139px;
}

.OX9
{
    position: absolute;
    top: 260px;
    left: 263px;
}

.OXBoard
{
    position: relative;
    top: 0;
    left: 0;
    float: left;
    border: 8px solid #f0e68c;
    border-radius: 12px;
}

.floatLeft
{
    float: left;
}

.flyingBanner
{
    padding: 30px 50px 30px 50px;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #f0e68c;
    font-size: large;
    color: #333;
    text-align: center;
}

.sudokuBox
{
    height: 24px;
    font-weight: bold !important;
    font-size: 20px !important;
}

.height12
{
    height: 12px;
}

.height50
{
    height: 50px;
}

.height70
{
    height: 70px;
}

.height90
{
    height: 90px;
}

.height90pad
{
    height: 90px;
    padding-left: 24px;
}

.scoresOX
{
    background-color: #3b983c;
    border-radius: 8px;
    padding: 6px;
    border: 1px solid #333;
    text-align: right;
}

.youOX
{
    background-color: #fff;
    padding: 2px 6px 2px 6px;
}

.gapOX
{
    background-color: #3b983c;
    height: 4px;
}

.computerOX
{
    background-color: #fff;
    padding: 2px 6px 2px 6px;
}

.rpt
{
    border: 1px solid #999;
    border-radius: 4px;
    border-radius: 4px;
}

.rptHeader
{
    padding: 4px;
    background-color: #3b983c;
    color: #fff;
    height: 20px;
    font-size: 14px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.rptHeaderCol1
{
    float: left;
    text-align: center;
    width: 90px;
    height: 20px;
    font-size: 14px;
}

.rptHeaderCol2
{
    float: left;
    height: 20px;
    font-size: 14px;
}

.rptItem
{
    background-color: #eee;
}

.rptItemAlt
{
    background-color: #ddd;
}

.rptText
{
    height: 20px;
    font-size: 14px;
}

.rptItemLeft
{
    float: left;
    height: 20px;
    font-size: 14px;
    text-align: center;
    width: 90px;
}

.rptItemRight
{
    float: left;
    height: 20px;
    font-size: 14px;
    text-align: center;
    width: 90px;
}

.centre
{
    text-align: center;
}

.ThankYou
{
    border-radius: 6px;
    border: 1px solid #333;
    background-color: #d2ffcf;
    padding: 24px;
    display: none;
    font-size: large;
    text-align: center;
}

.authorOuter
{
    margin: 4px;
    border: 1px solid #333;
}

.authorInner
{
    padding: 1px;
}

.dev
{
    text-align: center;
    padding: 4px;
    background-color: #f0e68c;
    border-bottom: 1px solid #333;
    margin-bottom: 1px;
}

.imgCentre
{
    margin: auto;
    display: block;
}

.txtCentre
{
    margin: auto;
    display: block;
    text-align: center;
}
.chartArea
{
    width:100%;
    height:400px;
}

.flHeadRight
{
    float: right;
    font-size: medium;
    font-style: italic;
    padding-right: 8px;
}

.onlineCount
{
    background-color: #F0E68C;
    padding: 8px;
    border-radius: 4px;
    margin: 0 8px 10px 0;
    border: 1px solid #999;
    text-align: center;
    font-size: 18px;
}

.noUnderline
{
    text-decoration: none !important;
}

.tile
{
    float:left;
    margin:4px;
    font-size:24px;
    font-weight:bold;
    width:50px;
    height:50px;
    border:2px solid #c66;
    border-radius:8px;
    background-color:#ecde29;
    text-align:center;
    vertical-align:middle;
    line-height:50px;
    cursor:pointer;
    box-shadow:2px 2px 8px #666;
    -moz-box-shadow:2px 2px 8px #666;
    -webkit-box-shadow:2px 2px 8px #666;
}

.tile:hover
{
    background-color:#e2cc00;
    border:2px solid #c33;
}

.greyTile
{
    background-color:#666;
    border:2px solid #333;
    color:#a88;
    float:left;
    margin:4px;
    font-size:24px;
    font-weight:bold;
    width:50px;
    height:50px;
    border-radius:8px;
    text-align:center;
    vertical-align:middle;
    line-height:50px;
    cursor:pointer;
    box-shadow:2px 2px 8px #666;
    -moz-box-shadow:2px 2px 8px #666;
    -webkit-box-shadow:2px 2px 8px #666;
}

.greyTile
{
    cursor:default;
}

.hangmanAnswer
{
    padding-top:12px;
    clear:both;
    font-weight:bold;
    font-size:32px;
    letter-spacing:12px;
}

.hangFrame
{
    float:left;
    width:220px;
    min-height:320px;
}

.hangMsg
{
    min-width:780px;
}

.hangAnswer
{
    width: 300px;
    float: left;
}

.posAb
{
    position:absolute;
}

.width20
{
    width:20px;
}
.width75
{
    width:75px;
}
.width140
{
    width:140px;
}
.width300
{
    width: 300px;
}
.width1pc{
    width: 1%;
}
.width10pc{
    width:10%;
}
.width15pc{
    width:15%;
}
.width95pc{
    width: 95%;
}
.width100pc{
    width:100%;
}
.marginLeft12
{
    margin-left:12px;
}
.bold
{
    font-weight:bold;
}
.italic
{
    font-style: italic;
}
.foundIt
{
    font-weight: bold;
    font-size: large;
}
.maxWid
{
    max-width:95%;
}

/* CONJUGATIONS */
.conj
{
    background-color:#eee;
    max-width:900px;
}

table.conj tr
{
    height:24px;
}

table.conj td
{
    padding-left:8px;
}

.conj_header
{
    text-align:center;
    font-weight:bold;
    font-size:larger;
}

.conj_header h2
{
    margin-top:20px;
}

.conj_highlight
{
    background-color:#e4b600;
}

.conj_head2
{
    text-align:center;
    width:100%;
    font-weight:bold;
}

.conj_border_bottom
{
    border-bottom:2px solid;
}

.displayNone
{
    display:none;
}

/* Autocomplete dropdown */
.ui-autocomplete
{
    position:relative;
    width:180px;
    background-color:#eee;
    padding:4px;
    border:1px solid #ccc;
    list-style:none;
    max-height:250px;
    overflow-y:scroll;
}
.ui-autocomplete li.ui-menu-item
{
    padding:6px;
}
.ui-autocomplete li.ui-menu-item:hover
{
    color:#f00;
    background-color:#ff9;
    cursor:pointer;
}
.gameHeaderStyle
{
    -webkit-margin-after:0em;
    background-color: #000;
    color: #fff;
    padding: 4px 0px 4px 0px;
    border-top: 2px solid #333;
    border-bottom: 1px solid #333;
    border-left: 2px solid #333;
    border-right: 2px solid #333;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.gameText
{
    font-weight: 12px;
    font-weight: bold;
    font-size: larger;
}
.gameParentBox
{
    background: #FEF9E7; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#F7DC6F, #fff); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#F7DC6F, #fff); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#F7DC6F, #fff); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#F7DC6F, #fff); /* Standard syntax */
    border-left: 2px solid #999;
    border-right: 2px solid #999;
    border-bottom: 1px solid #999;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.gameHeaderStyle1
{
    -webkit-margin-after:0em;
    background-color: #300;
    color: #fff;
    padding: 4px 0px 4px 0px;
    border-top: 2px solid #633;
    border-bottom: 1px solid #633;
    border-left: 2px solid #633;
    border-right: 2px solid #633;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.gameParentBox1
{
    background: #FEF9E7; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#F7DC6F, #fff); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#F7DC6F, #fff); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#F7DC6F, #fff); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#F7DC6F, #fff); /* Standard syntax */
    border-left: 2px solid #B99;
    border-right: 2px solid #B99;
    border-bottom: 1px solid #B99;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.gameHeaderStyle2
{
    -webkit-margin-after:0em;
    background-color: #030;
    color: #fff;
    padding: 4px 0px 4px 0px;
    border-top: 2px solid #363;
    border-bottom: 1px solid #363;
    border-left: 2px solid #363;
    border-right: 2px solid #363;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.gameParentBox2
{
    background: #FEF9E7; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#F7DC6F, #fff); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#F7DC6F, #fff); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#F7DC6F, #fff); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#F7DC6F, #fff); /* Standard syntax */
    border-left: 2px solid #9B9;
    border-right: 2px solid #9B9;
    border-bottom: 1px solid #9B9;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.gameHeaderStyle3
{
    -webkit-margin-after:0em;
    background-color: #003;
    color: #fff;
    padding: 4px 0px 4px 0px;
    border-top: 2px solid #336;
    border-bottom: 1px solid #336;
    border-left: 2px solid #336;
    border-right: 2px solid #336;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.gameParentBox3
{
    background: #FEF9E7; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#F7DC6F, #fff); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#F7DC6F, #fff); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#F7DC6F, #fff); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#F7DC6F, #fff); /* Standard syntax */
    border-left: 2px solid #9BB;
    border-right: 2px solid #9BB;
    border-bottom: 1px solid #9BB;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.gamesPlayed
{
    color: #a52a2a;
    float: right;
    font-weight: bold;
}

/* italicise placeholder text in all input elements */
::-webkit-input-placeholder {
   font-style: italic;
}
:-moz-placeholder {
   font-style: italic;  
}
::-moz-placeholder {
   font-style: italic;  
}
:-ms-input-placeholder {  
   font-style: italic; 
}

/* Login Box on Master Page */
.logincol
{
    float: left;
    padding-right: 4px;
}

.logincolend
{
    float: left;
    padding-top: 10px;
}

.width150
{
    width: 150px;
}

.headerHelpText
{
    cursor: pointer!important;
}

.padLeft20
{
    padding-left: 20px;
}

.loginBox
{
    float: right;
    position: absolute;
    top: 8px;
    right: 8px;
}

/* Header */
#header 
{
    font-size: 12px;
	width: 90%;
	min-width: 1024px;
	margin: 0 auto;
	font-weight: normal;
}

.sandy
{
    color: #f0e68c;
}

.pad4 
{
    padding: 4px;
}

.visprofs
{
    background-color: #090;
    padding: 4px;
    border-radius: 4px;
    color: #fff;
    margin-left: 8px;
    float: left;
    font-weight: bold;
}

.invisprofs
{
    background-color: #f00;
    padding: 4px;
    margin-left: 8px;
    border-radius: 4px;
    float: left;
    font-weight: bold;
}

.height8
{
    height: 8px;
}

.grvHighlightedRow
{
    background-color: #fdd;
    font-weight: bold;
}

.grvLink:hover
{
    color: #f00 !important;
    text-decoration: none;
}

.space150
{
    width: 150px;
    float: left;
    padding-right: 8px;
}

/* Logged in as Administrator bar */
.adminBar
{
    min-width: 1024px;
    background-color: #c6ae73; /* Gold */
    color: #000;
    font-weight: bold;
    padding: 4px;
}

.pointer:hover
{
    cursor: pointer;
}

.infoBox
{
    padding: 8px 14px 8px 14px;
    background-color: #d9edf7;
    border: 1px solid #c5d6e8;
    border-radius: 4px;
    color: #000;
    margin-bottom: 30px;
    font-weight: bold;
}
.warningBox {
    padding: 8px 14px 8px 14px;
    background-color: #f5c9d3;
    border: 1px solid #f7b3c1;
    border-radius: 4px;
    color: #000;
    margin-bottom: 30px;
    font-weight: bold;
}
.successPanel
{
    padding: 8px 14px 8px 14px;
    background-color:#CCFF99;
    color:#000;
    border:1px solid #000;
    border-radius:4px;
    margin-bottom:30px;
    font-weight:bold;
}

.borderNone
{
    border:none;
}

.borderAvatar
{
    border:1px solid #000;
}
.privacy-notice-bar {
    position:fixed;
    top:0;
    width:100%;
    padding:6px 0 2px 20px;
    background-color:#c6ae73;
    opacity:0.9;
    filter:alpha(opacity=90);
    color:#000;
    border-bottom:1px solid #999;
}
.privacy-notice-ok-button {
    position:relative;
    bottom:2px;
    margin-right:40px;
    float:right;
}
.pill-dark-green {
    background-color: #090;
    color: #fff;
    padding: 4px 8px 4px 8px;
    border-radius: 6px;
    font-weight: bold;
    margin: 0 4px 0 4px;
    width: 100px;
    text-align: center;
    white-space: nowrap;
}
.pill-red {
    background-color: #f00;
    color: #fff;
    padding: 4px 8px 4px 8px;
    border-radius: 6px;
    font-weight: bold;
    margin: 0 4px 0 4px;
    min-width: 100px;
    text-align: center;
    white-space: nowrap;
}
.pill-dark-red {
    background-color: #8b0000;
    color: #fff;
    padding: 4px 8px 4px 8px;
    border-radius: 6px;
    font-weight: bold;
    margin: 0 4px 0 4px;
    min-width: 100px;
    text-align: center;
    white-space: nowrap;
}
.bgSpinner{
    margin: 0;
    padding: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 8;
    background-color: #333;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
.spinner{
    background-color: #eee;
    padding:12px;
    border-radius:16px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -25px;
    margin-top: 25px;
    z-index: 9;
    text-align: center;
    color: #000;
    font-size: medium;
}
.forum-search-panel{
    position:relative;
    top:-13px;
}
.forum-created-by{
    background-color:#eff;
    padding:4px;
    margin-bottom:8px;
}
.forum-profile-column{
    float:left;
    min-width:120px;
}
.forum-join-date{
    color:#090;
    font-weight:bold;
}
.forum-popularity{
    color:#f00;
    font-weight:bold;
}
.forum-reply-panel{
    margin-left:140px;
    min-height:200px;
    background-color:#eff;
    padding:4px;
}
.forum-reply-panel-footer{
    margin: 14px 0 0 140px;
}
.forum-likes-panel{
    float:left;
    margin-right:12px;
    padding:8px;
}
.forum-likes-count{
    position:relative;
    top:-20px;
    left:35px;
    font-size:larger;
}
.forum-item{
    background-color:#fafafa;
    padding:4px;
    border-radius:8px;
    border:1px #eee solid;
    cursor:pointer;
}
.centre-align{
    display: flex;
    justify-content: center;
}
.fontMedium{
    font-size:medium !important;
}
.middle-letter{
    text-transform:uppercase;
    width:20px;
}
.add-new-puzzle{
    position:relative;
    top:-3px;
}
.show-more{
    min-width:100px;
    text-align:center;
    background-color:#eee;
    border-radius:4px;
    padding:4px;
}
.show-more:hover{
    text-decoration:none;
}
.noWrap{
    white-space:nowrap;
}
.options-img-holder {
    cursor: pointer;
    padding: 8px;
}
.options-img {
    border-radius: 4px;
    float: left;
}
.options-text {
    margin-left: 90px;
}
