﻿/* Solution-specific styles go here. */

/*here is where you can set the color of the background. Replace "#FEF9E7" (4 instances) with whatever color you want. Other suggestions:
    #F2D7D5 red
    #FDEDEC light red
    #F5EEF8 light purple
    #F4ECF7 purple
    #EAF2F8 aqua
    #EBF5FB blue
    #E8F8F5 
    #E8F6F3 
    #E9F7EF green
    #EAFAF1 
    #FEF9E7 yellow
    #FEF5E7 orange
    #FDF2E9
    #FBEEE6 red orange
    #F8F9F9 light silver
    #F4F6F6
    #F2F4F4
    #EBEDEF
    #EAECEE dark silver

    These are the top row from http://htmlcolorcodes.com/

*/
body {
  background-color: #FEF9E7;

  /* will be "on top", if browser supports it */
  background-image: linear-gradient(#FEF9E7, #FFFFFF);

  /* these will reset other properties, like background-position, but it does know what you mean */
  background: #FEF9E7;
  background: linear-gradient(#FEF9E7, #FFFFFF);
}

/*Some solution colors require a lighter menu text*/

/*#mainMenu *{
    color: ivory;
}*/

#btnLogin
{
	background-color: rgb(0, 102, 0);
}

.width100{
	width = 100;
}


