div#cmContainerDiv {
    padding-top: 20px;
    width: 620px;
}

span.gameName {
    font: 26px verdana, sans-serif;
    position: relative;
    left: 2%;
    color: rgb(38, 116, 190);
}

div#cmGameContainer {
    position: relative;
    width: 100%;
    height: 600px;
    background: url("/img/activities/cm/columnsBkgnd.png") no-repeat;
    -webkit-background-size: auto 100%;
    -moz-background-size: auto 100%;
    -o-background-size: auto 100%;
    background-size: auto 100%;
}

font.quia_standard_non_fixed {
    font-size: 16px;
}

/**
 * Style for the score board
 */
div#scoreBoard {
    position: absolute;
    top: 1%;
    left: 30%;
    right: 33%;
    width: 37%;
    height: 52px;
    margin: 0;
    background-color: #f99514;
    text-align: center;
    display: inline-block;
}

div#scoreBoardInner {
    position: relative;
    display: table;
    width: 94%;
    height: 40px;
    margin: 5px auto;
    border: solid #ffffff 1px;
    padding: 0;
    text-align: center;
}

div#scoreBoardInner div.score span {
    color: #ffffff;
}

div#scoreBoardInner div.score span.title {
    font: 16px Trebuchet MS regular;
}

div#scoreBoardInner div.score span.number {
    font: 24px Arial Black Regular;
}

div#scoreBoardInner div.score {
    display: table-cell;
    vertical-align: middle;
}

/**
 * Style for full text
 */
div#fullText{
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    width: 620px;
    font-family: verdana,arial,helvetica,sans-serif;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

/**
 * Style for columns
 */
div.column {
    position: absolute;
    top: 15%;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

div#leftColumn.column {
    left: 9.2%;
}

div#rightColumn.column {
    right: 14.5%;
}

/**
 * Style for match items
 */
div.Rounded_Rectangle_Box {
    background-color: rgb(63, 169, 255);
    border-radius: 5px;
    font: 11px Arial Rounded MT;
    font-weight: bold;
    color: #ffffff;
    top: 0;
    right: 0;
    vertical-align: middle;
    text-align: center;
    display: table;
    z-index: 1000;
    cursor: pointer;
}

div.Rounded_Rectangle_Box.true {
    background-color: rgb(38, 116, 190);
}

div.Rounded_Rectangle_Box.correct {
    background-color: #74ad00;
}

div.Rounded_Rectangle_Box.right.false {
    background-color: rgb(63, 169, 255);
}

div.Rounded_Rectangle_Box.right.false.correct {
    background-color: #74ad00;
}

div.Rounded_Rectangle_Box.incorrect {
    background-color: #db5156;
}

div.Rounded_Rectangle_Box div {
    vertical-align: middle;
    display: table-cell;
}

span.textFitted {
    padding: 3px;
}

/**
 * Style for connectors
 */
div.line {
    padding: 0;
    margin: 0;
    position: absolute;
    border: 1px solid;
    height: 0;
}

div.line.correct {
    border-color: #74ad00;
    background-color: #74ad00;
}

div.line.incorrect {
    border-color: #db5156;
    background-color: #db5156;
}

/**
 * Style for buttons
 */
div#buttonDiv {
    width: 100%;
    position: relative;
    height: 30px;
}

button.Rounded_Rectangle_Button {
    border-radius: 3px;
    background-color: rgb(38, 116, 190);
    font: 11px Arial Rounded MT;
    font-weight: bold;
    color: #ffffff;
    position: absolute;
    width: 118px;
    height: 30px;
}

button.Rounded_Rectangle_Button.newGame{
    left: 70%;
}

button.Rounded_Rectangle_Button.answers{
    left: 50%;
}

button.Rounded_Rectangle_Button.answers.true{
    border:  2px solid black;
}