/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/

/* Table of Content
==================================================
	#Site Styles
	#Page Styles
	#Media Queries
	#Font-Face */

/* #Site Styles
================================================== */
h1 { font-size:36px; margin-top:0;}
#header a { color:#fff; text-decoration:none;}
#header-wrapper {
  position:fixed;
  background-color:#333;
  width:100%; z-index:998;
  -webkit-box-shadow:  0px 4px 5px 2px rgba(130, 130, 130, .3);
  box-shadow:  0px 4px 5px 2px rgba(130, 130, 130, .3);
  border-bottom:1px solid #fff;
}
#header { padding-top:10px; padding-bottom:15px; }
#body {margin-top:100px; padding-top:20px;}
#header h1, #header h5 {color:#fff;}
#submit-button-container {margin-left:10px; display:inline;}

#search-box {float:left; padding:7px;}
#submit-button {padding:8px 10px;}
.bold{font-weight:bold;}
a, a:visited{color:#7e9c3e;}
.pad-bottom-20 {margin-bottom:20px;}

.site-tag {
  /*
  -webkit-border-radius: 5px;
  border-radius: 5px; 
  float:left; 
  background-color:#54aaf1;
  padding:5px 10px;
  margin-right:10px;
  margin-bottom:10px;
  */
  margin-right:10px;
  margin-bottom:10px;   
  -moz-box-shadow:inset 0px 1px 0px 0px #d9fbbe;
  -webkit-box-shadow:inset 0px 1px 0px 0px #d9fbbe;
  box-shadow:inset 0px 1px 0px 0px #d9fbbe;
  
  background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #b8e356), color-stop(1, #a5cc52));
  background:-moz-linear-gradient(top, #b8e356 5%, #a5cc52 100%);
  background:-webkit-linear-gradient(top, #b8e356 5%, #a5cc52 100%);
  background:-o-linear-gradient(top, #b8e356 5%, #a5cc52 100%);
  background:-ms-linear-gradient(top, #b8e356 5%, #a5cc52 100%);
  background:linear-gradient(to bottom, #b8e356 5%, #a5cc52 100%);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b8e356', endColorstr='#a5cc52',GradientType=0);
  
  background-color:#b8e356;
  
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  
  border:1px solid #83c41a;
  
  display:inline-block;
  color:#ffffff;
  font-family:arial;
  font-size:15px;
  font-weight:bold;
  padding:6px 24px;
  text-decoration:none;
  
  text-shadow:0px 1px 0px #86ae47;
        
}



.clearer {clear:both;}

/* #Page Styles
================================================== */
input[type="text"], input[type="password"], input[type="email"], textarea, select {
        width: 60%;
}    


/* #Media Queries
================================================== */

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {
	  input[type="text"], input[type="password"], input[type="email"], textarea, select {
        width: 60%;
    }    
	}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {
	  input[type="text"], input[type="password"], input[type="email"], textarea, select {
        width: 60%;
    }   
	  
	}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {
	  h1 {font-size:35px;}
	  input[type="text"], input[type="password"], input[type="email"], textarea, select {
        width: 100%;
    }
    #submit-button-container {margin-left:10px; display:block; text-align:right;}  
	}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) { 
	  #search-box { width:406px; }  
	}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {
	  h1 {font-size:30px;}
	  input[type="text"], input[type="password"], input[type="email"], textarea, select {
        width: 100%;
    }
    #search-box { width:286px; }
    	  
	}


/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

/*	@font-face {
	    font-family: 'FontName';
	    src: url('../fonts/FontName.eot');
	    src: url('../fonts/FontName.eot?iefix') format('eot'),
	         url('../fonts/FontName.woff') format('woff'),
	         url('../fonts/FontName.ttf') format('truetype'),
	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; }
*/