/*
You can add your own CSS here.

Click the help icon above to learn more.
*/
#page {
	max-width: 1200px !important;
}

strong {
	font-family: "Arial";
	font-weight: 800;
}

#cupe-real-wage-calculator .button {
background-color: #900000;
color: #fff;
	
    /* Structure */
    zoom: 1;
    line-height: normal;
    white-space: nowrap;
    vertical-align: baseline;
    text-align: center;
    cursor: pointer;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    *font-size: 90%; /*IE 6/7 - To reduce IE's oversized button text*/
    *overflow: visible; /*IE 6/7 - Because of IE's overly large left/right padding on buttons */
    border: 1px solid #999;  /*IE 6/7/8*/
    border: none rgba(0, 0, 0, 0);  /*IE9 + everything else*/
    text-decoration: none;
    border-radius: 4px;
    -webkit-font-smoothing: antialiased;
    /* Transitions */
    -webkit-transition: 0.1s linear -webkit-box-shadow;
    -moz-transition: 0.1s linear -moz-box-shadow;
    -ms-transition: 0.1s linear box-shadow;
    -o-transition: 0.1s linear box-shadow;
    transition: 0.1s linear box-shadow;
    font-family: "proxima-nova", sans-serif;
    font-weight:700;
    text-transform:uppercase;
    text-shadow:1px 1px 1px rgba(0,0,0,0.1);
    margin-bottom:10px;
    transition: all 0.5s;
}
#cupe-real-wage-calculator .button-hover,
#cupe-real-wage-calculator .button:hover,
#cupe-real-wage-calculator .button:focus {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000',GradientType=0);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(40%, rgba(0,0,0, 0.05)), to(rgba(0,0,0, 0.10)));
    background-image: -webkit-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.20));
    background-image: -moz-linear-gradient(top, rgba(0,0,0, 0.05) 0%, rgba(0,0,0, 0.20));
    background-image: -ms-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.20));
    background-image: -o-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.20));
    background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.20));
    transition: all 0.25s;
    text-decoration:none;
}
.button:focus {
    outline: 0;
}


.button-small {
    font-size: 0.85em;
    padding: 7px 15px;
}
.button-medium {
    font-size: 0.95em;
    padding: 12px 20px;
}
.button-large {
    font-size: 1em;
    padding: 20px 29px;
}
.button-adjacent {
  margin-left: 20px;
}

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
   -webkit-appearance: button; /* 2 */
   cursor: pointer; /* 3 */
}

/**
* Re-set default cursor for disabled elements.
*/

button[disabled],
html input[disabled] {
   cursor: default;
}

#cupe-real-wage-calculator .messages {
	border: 2px solid #900000;
	padding: 10px;
}
@media screen and (min-width: 800px) {

    #cpi-calculator-starting-wage {
      width: 30%;
      float: left;
      clear:both;
      padding-right: 5%;
    }
    #cpi-calculator-starting-month,#cpi-calculator-final-month {
      width: 24%;
      float: left;
      padding-right: 3%;
    }
    #cpi-calculator-starting-year,#cpi-calculator-final-year {
      width:30%;
      float: left;
    }
	
	#edit-calculate {
		clear:both;
		display:block;
	}

}