/* =-=-=-=-=-=-=-=-= MAIN ELEMENTS =-=-=-=-=-=-=-=-= */
body {
font-family: Tahoma, Arial, Helvetica, sans-serif;
font-size: 11px;
text-align: center;
}
a, a:link {
color: #0BB8C8;
text-decoration: none;
}
a:hover {
text-decoration: none; border-bottom: 2px solid #C6CCCD;
}
div { /* RECTIFY IE6 CENTERING BUG - IN IE6, ELEMENTS WON'T CENTER UNLESS THE BODY TAG'S TEXT IS SET TO CENTER, SO WE RESET THAT HERE. OTHERWISE ALL TEXT WILL BE CENTERED */
text-align: left;
}
fieldset { /* THESE ONLY APPEAR ON THE ADMIN PANEL - THEY CONTAIN THE SUMMARY, TOOL AND SORTING OPTIONS (ON THE LEFT) */
width: 250px;
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
border-style: dashed;background: #959595;
}
> fieldset legend { /* IE7 HACK */
margin-top: 15px;
}
fieldset legend { /* IE6 HACK */
-margin-top: 15px;
}
img { /* NO BORDER ON IMAGES BY DEFAULT */
border: 0 none;
}
h3 { /* MOST PAGE HEADERS USE THIS TAG (EITHER THAT OR THE P TAG) */
font-size: 10pt;
}

/* =-=-=-=-=-=-=-=-= CLASSES/IDs =-=-=-=-=-=-=-=-=-= */

#pai_container { /* CONTAINER ELEMENT FOR QUESTIONS PAGE */
width: 70%;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.bordered { /* CLASS FOR ASK FORM */
border: 1px solid #959595;
padding: 2px;
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
width: 250px;
}
.center { /* CENTERS TEXT */
text-align: center;
}
.question { /* CLASS FOR QUESTIONS SEEN IN ADMIN PANEL */
background-color: #ffffff;
border: 1px solid #959595;
width: 93%;
margin-bottom: 15px;
padding: 2px;
text-align: justify;
}
.question2 { /* CLASS FOR QUESTIONS SEEN BY USERS */
background-color: #ffffff;
border: 1px solid #959595;
width: 70%;
margin-bottom: 15px;
padding: 2px;
margin-left: auto;
margin-right: auto;
text-align: justify;
}
.question:hover, .question2:hover { /* DOES NOT APPEAR IN IE6; HOVER EFFECT FOR QUESTIONS */
border: 2px solid #B3D227;
}