/* top-menu: menu's surrounding box (i.e. the menu bar) */
#top-menu {
  background: #FF0000; /* Background color, change as required */
  height: 35px; /* Menu bar size, change as required */
  margin: 0 auto; /* Menu bar centered horizontally */
  padding: 0;
  font-family: Verdana, Helvetica, Arial, sans-serif;
}

/* Menu items are part of a Unordered List */
#top-menu ul {
  list-style: none; /* No bullet s displayed in from of items */
  margin: 0; /* Starts at 15 pixel from left */
  padding: 6px 0 0 0; /* To center items' text in menu bar */
}

/* Menu items are li elements of the Unordered List */
#top-menu ul li {
  display: inline; /* Menu options to display horizontally */
}

/* Menu items are also anchors within the li elements */
#top-menu ul li a {
  margin-right: 4px; /* Space between menu options */
  padding: 3px 20px; /* Padding for the option selection box */
  text-align: center; /* Text centered in the option selection box */
  color: #fff; /* Text color of the option selection box */
  text-decoration: none; /* No underline for menu options */
}

/* Menu items colors when mouse over */
#top-menu ul li a:hover {
  background: #000;
  color: #fff;
}

/* Active menu items colors */
#top-menu ul li a.active,
#top-menu ul li a.active:hover {
  background: #000000;
  color: #fff;
}

 


select {
	
				font-size: 16px;

  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;

  /* for IE10 */
  appearance: none;
  text-align-last: center;
}

/* For IE10 */
select::-ms-expand {
  display: none;
}


table,
th,
td {
  border-collapse: collapse;
  text-align: center;
  vertical-align: middle;
}



div {
  font-family: Verdana, Helvetica, Arial, sans-serif;
  	white-space: normal; /* enable text wrapping */
  word-wrap: break-word; /* enable text wrapping */
    background-color: #FFFFFF; /* set background color */
	 color: #333;
	font-size: 16px;
}

#red-div  {
	background-color: red;
    color: white;
	align: center;
	border: none;
		font-size: 16px;

}

#black-div   {
	background-color: black;
    color: white;
	align: center;
	border: none;
	        font-size: 16px;

}

#white-div  {
	background-color: white;
    color: black;
	align: center;
	border: none;
	        font-size: 16px;

}



select.red-div   {
	background-color: red;
    color: white;
	align: center;
	border: none;
		font-size: 16px;

}

select.black-div   {
	background-color: black;
    color: white;
	align: center;
	border: none;
	        font-size: 16px;

}

select.white-div   {
	background-color: white;
    color: black;
	align: center;
	border: none;
	        font-size: 16px;

}




