/******************************************  
 CUSTOM STYLESHEET
*******************************************/

/*
* You can place your custom CSS statements in this file, after this message.
* It is better to write everything custom here
* because this file won't be replaced during updates.
* 
* Simply copy an existing style from style.css to this file, 
* and modify it to your liking.
*/

/* change header background color */
#header {
    background: #ffffff none repeat scroll 0 0;
}

/* change width of gallery items to fit page better */
.entry   .gallery    .gallery-item {
max-width:300px;
}



/* change font on captions*/

.entry .wp-caption-text {
    color: #a7a3a3;
    font: 16px/22px Arial,Helvetica,sans-serif;
      text-align: left;
}




/* change color of submit button on contact page*/
input[type="submit"], input[type="reset"] {
    background-color: #ff0080;
    border: 1px solid #ff0080;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
  
    text-align: left;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

/* change color of hover state of submit button on contact page*/

input[type="submit"]:hover,input[type="reset"]:hover {
background-color:#ff0080;
}