/* STYLES USED IN ASSIGNMENTS */

body
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12pt;
}


/* a div that fits on one page */
div#page {
    position: relative;
/*    border: 1px solid red; */
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    width: 7.8in;
    height: 10.4in;
/*    overflow: hidden;	needed for IE only */
}

/* make tables more compact */
table
{
    border-collapse: collapse;
}
.tborder td{
    border: 1px solid black;
}

/*the question number <td> block*/
.q_num
{
    font-weight: bold;
    width: 80px;
    vertical-align: top;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    font-family: Arial,Helvetica,sans-serif;
}

/*the question text <td>*/
.q_text
{
    padding: 30px 0px;
    page-break-inside: avoid;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

/*style for answer part of questions*/
.q_answer
{
    margin-left: -50px;
    color: red;
}

/*instruction part of questions*/
.instr
{
}

/*variable part of questions*/
.var
{
    font-style: normal;
    font-weight: bold;
}

/*spaces for an equation*/
.equ{
    word-spacing:3px;
}

/*box around instructions*/
.instructionsDiv{
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 0px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 8px;
    padding-top: 5px;
    border: 1px black solid;
}

/*instructions label*/
.instructionsBanner{
    font-size: 18px;
    margin-top: 0px;
    text-decoration: underline;
}

/*instructions tip*/
.instructionsTip{
    font-size:14px;
    text-align: right;
}

/* replacement for instructions tip*/
.tip{
    font-style: italic;
}
/*keep list margin small*/
ul, ol{
    margin-bottom: 5px;
}
/*example list item*/
.ex_ul{
    list-style-type: none;
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: -15px;
}
.ex_ol{
    list-style-type: none;
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: -22px;
}

/*spaces*/
.space10{
    margin-left: 10px;
}
.space15{
    margin-left: 15px;
}
.space20{
    margin-left: 20px;
}
.space25{
    margin-left: 25px;
}
.space30{
    margin-left: 30px;
}
.space35{
    margin-left: 35px;
}
.space40{
    margin-left: 40px;
}

/* does not break page in the middle of a problem */
@media print {
    table
    {
        page-break-inside: avoid;
    }
}
