/*# custom.css - Proask project
# Created January 13, 2015
# Created by Mike Taylor - michael.g.taylor@nottingham.ac.uk
# This script changes the background colour to blue and text to white from the existing bootstrap default*/

/* Provides a blue background for the project */
	body {background-color: #3f5597;}

/* Provides a blue background for modal pop-up */
.modal-body {background-color: #3f5597;}

.modal-title { color: #000; font-weight: bold;
}
/* Applies white text for the following tags */
	h1, h2, h3, h4, p, th, td, label, ol { color: #fff; }
    
   ul, p {font-size:13pt;}

/*Test right on index.html page  */
#main_text {
	color: #000;
	font-size: large;
	color: #000;
}

#main_text_sub_content {
	color: #000;
	font-size: large;
}

/*Background colour for conversion charts*/
#wc {
    background-color: #FFF;
}

#adultHeight {
    color: #000;
}

/*Background colour for step six feedback dialogue box */
#feedback{
	background-color: #3f5597;
}

/* Changes font colour for heading of feedback dialogue box in step 6 */
#finalHeading{
	color: #3f5597;
}
/* An Orange colour to highlight validation feedback */
.error {font-weight: bold; color: #e0a11b; }

/*Proask wheel headings made larger */
#headerOne{
	font-size: 22pt;
}
#subHeading{
	font-size: 14pt;
}

/*Sets the size of the dropdown */
.dropdown-menu {
  width: 100%;
}

/*Sets text size for all checkboxes */
.checkbox{
	font-size: 12pt;
}

