html, body {
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.sectionTitle {
    width: 260px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 10px;
    display: inline-block;
    border: 1px solid black;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}

.sectionContent {
    display: none;
    background-color: #72CDF4;
    border: 1px solid black;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    padding: 15px;
    width: 764px;
    margin-bottom: 15px;
}

.contentTitle {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.contentNote {
    font-style: italic;
    font-size: 13px;
    margin-bottom: 5px;
}

.contentDetails {
    font-size: 14px;
    margin: auto;
    margin-bottom: 20px;
    width: 95%;
}

.contentItem {
    background-color: rgba(255,225,247,0.5);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    border: 2px solid;
    border-color: rgba(220,221,222,0.8);
    margin-bottom: 20px;
    padding: 10px;
}

.contentSubItem {
    margin: 5px 0;
}

.contentSubItemTitle {
    margin-bottom: 10px;
    font-weight: bold;
}

.textFieldLabel {
    display: inline-block;
    width: 140px;
}

.textField {
    background: #FFFFFF;
    border: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    outline: none;
    padding: 5px;
    width: 200px;
    margin-right: 10px;
    margin-bottom: 5px;
}

.subSectionRow .textField {
    margin-bottom: 15px;
}

.dateField {
    width: 80px;
}

.shortNumbersField {
    width: 100px;
}

.button {
    display: inline-block;
    margin: 5px 10px 5px 0;
    border: 1px solid white;
    border-radius: 2px;
    background-color: #72CDF4;
    padding: 4px 20px;
}

.button:hover {
    cursor: pointer;
    background-color:#52ADD4;
}

.brickInformationContainer {
    width: 700px;
    display: block;
    margin: auto;
}

.brickInformation {
    height: 150px;
    float: left;
    width: 300px;
    margin-left: 10px;
    margin-right: 10px;
}

.brickDetails {
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
}

#backgroundImage {
    position: absolute;
    z-index: 3;
}

.bricksContainer {
    width: 756px;
    height: 1231px;
    margin-left: 3px;
    position: absolute;
    z-index: 4;
}

.brick {
    width: 180px;
    text-align: center;
}

.brickIcon {
    width: 12px;
    height: 12px;
    border: 1px solid black;
    float: left;
    cursor: pointer;
    background-color: #562A0D;
    line-height: 12px;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    color: white;
}

.brickIcon:hover {
    background-color: white;
}

.brickIconLabel {
    color: white;
    position: relative;
    font-size: 13px;
    margin-left: 20px;
    margin-top: 10px;
    z-index: 5;
}

.noBrick {
    width: 14px;
    height: 14px;
    float: left;
}

.blueBrick {
    width: 12px;
    height: 12px;
    border: 1px solid black;
    float: left;
    cursor: pointer;
    background-color: #10897a;
    line-height: 12px;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    color: white;
}

#selectABrick {
    display: none;
}

#selectedBrick, #selectABrickButton, #selectABrickCloseButton {
    visibility: hidden;
}

#contactInformationContent {
    background-color: #0076C0;
}

.submitForm {
    width: 594px;
    background-color: #9FA1A4;
    border: 1px solid black;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    margin-bottom: 30px;
    margin-left: 100px;
}

.submitForm:hover {
    background-color: #FBB040;
}

.ui-dialog-content {
    background-color: #9fa1a4;
}


