/* 
  ------------------------------------------------
Summary description for contactform.css
Program:  contactform.css
Designer: Great Basin College
Author: Frank L. Sawyer
Client: Great Basin Indian Archive (GBIA) Website
Date: 06/26/2014
 
Purpose:  This is the Great Basin Indian Archive contact form CSS file. 
	
Features: CSS
	 
Input: None.
	
Output: None.
	 
Called from: home page.
	 
Calls: None.
	 
Modification History: 
06/30/2014: FLS - Added file information header comment section.

  ------------------------------------------------
*/

body {
	background-color: #FFFFFF;
	margin: 40px 10px;
	padding: 0px;
	min-width: 980px;
}
/*body {
  font-family: Arial, Sans-Serif;
  font-size: 13px;
}*/

#inputArea {
  font-family: Arial, Sans-Serif;
  font-size: 13px;
  color:#FFF;
/*  background-color: #d6e5f4;*/
  background-color: #7D2F2F;
  padding: 10px;
/*  width:310px;*/
  width:275px;
}

#inputArea input, #inputArea textarea {
  font-family: Arial, Sans-Serif;
  font-size: 13px;
  margin-bottom: 5px;
  display: block;
  padding: 4px;
/*  width: 300px;*/
  width: 265px;
}

.activeField {
  background-image: none;
  background-color: #ffffff;
/*  border: solid 1px #33677F;*/
  border: solid 5px #000000;
}

.idle {
/*  border: solid 1px #85b1de;*/
  border: solid 5px #000000;
  background-image: url( '../images/strip-1.jpg' );
  background-repeat: repeat-x;
  background-position: top;
}

/*Mobile Devices*/

/*Smartphones*/
@media only screen and (max-device-width: 480px) {
.sample-class {font-size: 14px;}
}

/*Tablets*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
.sample-class {font-size: 14px;}
}