/* below line is used for online google font */
@import url(http://fonts.googleapis.com/css?family=Raleway);
@media screen and (max-width:320px) {
  /* CSS for screens that are 320 pixels or less will be put in this section */
} 

@media screen and (min-width:320px) and (max-width:640px) {
  /* for screens that are at least 320 pixels wide but less than or equal to 640 pixels wide */
} 

@media screen and (device-aspect-ratio: 40/71) {

}

/* code that is here, until the first @media block, will apply to any screen size */
#somethingorother {
  width: 800px ;
}
 /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {...}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {...}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {...}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {...}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {...} 
@media screen and (max-width: 320px) {
  /* comes into effect for screens less than or equal to 320 pixels */
  #somethingorother {
    width: 120px ;
  }
}
@media screen and (min-width: 321px) and (max-width: 480px) {
  /* comes into effect for screens between 321 and 480 pixels (inclusive) */
  #somethingorother {
    width: 320px ;
  }
}
@media screen and (min-width: 481px) {
  /* comes into effect for screens larger than or equal to 481 pixels */
  #somethingorother {
    width: 480px ;
  }
}
@media not (max-width: 639px) {
/* CSS rules for any device that is wider than 639 pixels */
} 
/* code that is here will apply to any screen size */ 
h2{
background-color: #FEFFED;
padding: 15px 35px;
margin: -10px -50px;
text-align:center;
border-radius: 10px 10px 0 0;
}

hr{
margin: 10px -50px;
border: 0; 
border-top: 1px solid #ccc;
}

span{
color:red;
}

div.container{
	width: 350px;
	height: 690px;
	margin: 35px auto;
	font-family: 'Raleway', sans-serif;
}

div.main{
	width: 280px;
	border: 2px solid gray;
	border-radius: 10px;
	font-family: raleway;
	float: none;
	background-image: url(../images/contact_link_anibird_title_002.gif);
	background-repeat: no-repeat;
	padding-top: 10;
	padding-right: 50px;
	padding-bottom: 30px;
	padding-left: 10px;
	padding: 50;
}

input[type=text],textarea {
	width: 90%;
	height: 34px;
	padding-left: 1px;
	margin-bottom: 5px;
	margin-top: 5px;
	border: 2px solid #ccc;
	color: #4f4f4f;
	font-size: 16px;
	border-radius: 5px;
	padding-right: 61px;
}

textarea{
	resize:none;
	height:80px;
}

label{
	color: #464646;
	text-shadow: 0 1px 0 #fff;
	font-size: 14px;
	font-weight: bold;
}

.submit{
	padding: 10px;
    text-align: center;
    font-size: 18px;
    background: linear-gradient(#ffff 100%);
	background-image:url(../images/contact_link_anibird_send_button_002a.gif);background-repeat: no-repeat;
	padding-right: 50px;
	padding-left: 10px;

  border: 2px solid  #ccc; 
    color: #000;
  /*    font-weight: bold;
    cursor: pointer;
    text-shadow: 0px 1px 0px #13506D;*/
	width: 112%;
	border-radius: 5px;
}

.submit:hover{
/*	background: linear-gradient(#ffdd7f 5%, #ffbc00 100%);
	background-repeat: no-repeat; */
margin-bottom: 25px;

	background-image:url(../images/contact_link_anibird_send_button_002b_clicked.gif);background-repeat: no-repeat;
}

/* -------------------------------------
    CSS for sidebar (optional) 
---------------------------------------- */
.formget{
	float:right;
}
