/*
Theme Name: bounce cat
Theme URI:
Author: rubber cat
Author URI: http://rubbercat.net
Description: blargh
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, white
Text Domain: bouncecat

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* ------------------------------- *\
             Contents
\* ---- -------------------------- */
/*
Global
Menu
Header
Content
Footer
Responsive
*/



/* GLOBAL */

html,
body {
	width: 100%;
	height: 100%;
    margin: -10px 0 0 0;
	padding: 0;
    }
body {
    font-family: Arial,sans-serif;
    font-size: 9pt;
	position: relative;
	}
a {
	color:black;
	font-weight:bold;
	}
a:hover {
	color:red;
	text-decoration:none;
	}
#home {
	background-color: #000;
	}
#home #main,
#single-post #main,
#post #main {
	background-color: #fff;
	padding-top: 15px;
	text-align: left;
	top: 0;
	vertical-align: top;
	}

/* MENU */
#menu {
  font: normal 120% Geneva, Tahoma, 'Trebuchet MS', sans-serif;
  margin: 0;
  min-width:120px;
  padding: 27px 0;
  position: fixed;
  text-align: center;
  width: 120px;
  }
#menu a {
	color: white;
	display: block;
	font-weight: normal;
	text-decoration: none;
	padding: 3px 0;
	}
#menu a:hover {
	color: red;
	}
#menu a.long {
	font-size: 90%;
	}
#menu ul {
  	margin-top: 15px;
	list-style:none;
	padding: 0;
	}
.app-bar {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	width: 100%;
	height: 50px;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000;
	-webkit-transition: -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	}
.app-bar.open {
	-webkit-transform: translate(150px,0);
	transform: translate(150px,0);
      }
.app-bar .logo {
	-ms-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	font-size: 20px;
	line-height: 50px;
	margin: 0 16px;
	color: #fff;
	float: none;
	max-width: none;
	font-family: Tahoma, Verdana, sans-serif;
	}
.app-bar .logo a {
	text-decoration: none;
	color: inherit;
	font-weight: normal;
	}
.app-bar-actions  {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	}
.app-bar button {
	width: 50px;
	height: 50px;
	background-image: none;
	background-color: transparent;
	border: none;
	padding: 0;
	-webkit-transition: background-color 0.2s ease-out;
	transition: background-color 0.2s ease-out;
	}
.app-bar button img {
	width: 30px;
	height: 30px;
	}
.app-bar button:hover {
	background-color: rgba(255, 255, 255, 0.1);
	}
.app-bar button:focus {
	background-color: rgba(255, 255, 255, 0.2);
	outline: 0;
	}
.app-bar button:active {
	background-color: rgba(255, 255, 255, 0.4);
	}
.promote-layer {
	/* This may promote the layer to a composited layer.
	Replace with will-change when available #perfmatters */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	}
  .navdrawer-container {
	font: normal 170% Geneva, Tahoma, 'Trebuchet MS', sans-serif;
	text-transform: uppercase;
	position: fixed;
	padding: 40px 0;
	width: 150px;
	height: 100%;
	background-color: #000;
	color: #fff;
	-webkit-transform: translate(-250px,0);
	transform: translate(-250px,0);
	-webkit-transition: -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	}
.navdrawer-container.open {
	-webkit-transform: translate(0,0);
	transform: translate(0,0);
	}
.navdrawer-container ul {
	padding: 0;
	margin: 25px 20px 0;
	list-style-type: none;
	}
.navdrawer-container ul li a {
	display: block;
	height: 30px;
	line-height: 10px;
	text-decoration: none;
	color: white;
	-webkit-transition: background-color 0.2s ease-out;
	transition: background-color 0.2s ease-out;
	}
 .navdrawer-container ul li a:hover {
	background-color: rgba(255, 255, 255, 0.2);
	}
.navdrawer-container ul li a:focus {
	background-color: rgba(255, 255, 255, 0.3);
	outline: 0;
	}
.navdrawer-container ul li a:active {
	background-color: rgba(255, 255, 255, 0.4);
	}

/* HEADER */

#home #header,
#post #header {
	padding-top: 10px;
	}
#home #header h1,
#post #header h1 {
	text-align: center;
	color:#000;
	font: bold 3.5em  Tahoma, Verdana, sans-serif;
	margin: 0 50px 0;
	padding-bottom: 4px;
	text-decoration:none;
	text-transform: lowercase;
	text-shadow: 3px 3px 3px #ccc;
    text-shadow: 3px 3px 3px rgba(204,204,204,.9);
	}
#home #header h1 a,
#post #header h1 a {
	text-decoration: none;
	}
.greetings,
.greetings2 {
	background-color: #000;
	display: table-cell;
    color:white;
    font: bold 10px Verdana, sans-serif;
    text-align:center;
	vertical-align: middle;
	width: 100px;
	padding: 0 10px;
	margin: 0;
	}
.header-image {
	background-color: black;
	border: 1px solid black;
    border-radius:7px;
	-webkit-border-radius: 7px;
    -moz-border-radius: 7px;
	display: table;
	height: 100px;
	margin: 10px 0 0;
	padding: 0;
	overflow: hidden;
	text-align: center;
	width: 570px;
	}
.header-image-small {
	padding-top: 70px;
	width: 100%;
	}
.header-image-small img {
	border: 2px solid black;
	text-align: center;
	}
.header-image .middle-pic {
	background: #000 url(http://rubbercat.net/main/header/rotate.php);
	display: table-cell;
	height: 100px;
	padding: 0;
	width:370px;
	}

/* CONTENT */

.post {
	color: black;
	margin-top: 4px;
 	}
.post-header {
    border-top:1px solid black;
    border-bottom:1px solid black;
    padding:5px 0;
    text-align:center;
    }
.post-header a {
	text-decoration: none;
	}
.post-body {
	color: #000;
	font: normal 1em Verdana, Arial, sans-serif;
	padding: 17px 20px;
	}
#post .post-body {
	padding: 17px 80px;
	}
.blogger-post-footer {
	display: none !important;
	}
.blogger-post-footer img {
	display: none !important;
	}
.wp-pagenavi {
	color: gray;
	padding-top: 10px;
	}
.previouspostslink,
.nextpostslink {
	font-size: 2em;
	padding-left: 25px;
	padding-right: 25px;
	}
.post-footer {
 	padding: 0 6px 6px;
 	text-align: right !important;
	}
.post-footer a {
	color: #999 !important;
  	font: normal 10px Verdana, Arial, sans-serif;
	margin-right: 5px;
	padding: 0 5px;
	text-decoration: none;
	text-transform: lowercase;
	}
.post-footer a:before {
	content: "#";
	}
.post-footer a:hover {
	text-decoration: underline;
	}
a.blue {
  color: blue;
  text-decoration:none;
  }
a.blue:hover {
	color: red;
	}
a.flickr img {
	border: 2px solid black;
	}
a.flickr:hover img {
	border: 2px solid #ff1c92;
  	}
a.linkdump {
	color:#006699;
 	font: bold 1.3em Lucida Grande,Verdana,sans-serif;
	}
a.linkdump:hover {
	color:#cc33cc;
  	}
blockquote {
 	background: #e1ebf2;
    border: 1px solid black;
	border-radius: 5px;
    font: normal 13px Georgia, 'Times New Roman', Helvetica, serif;
	line-height: 20px;
    padding:10px 17px;
    }
blockquote blockquote {
    border: 0;
	border-radius: 0;
	border-left: 2px solid gray;
    padding:0 0 0 10px;
    }
.bohr {
    font-family: Arial, sans-serif;
    font-size: 1em;
    }
.box {
    background:#FFFFFF;
    border: 2px solid black;
    font-family: lucida grande,Verdana,sans-serif;
    font-size: normal;
    }
.caption {
	color: black;
    font: bold 8pt Verdana, sans-serif;
    }
.hff {
    background:black;
    text-align:center;
    height:40px;
    }
.hollywood {
    color:#ff0080;
    font: bold 20px futura,Arial,sans-serif;
    letter-spacing:4px;
    line-height:20px;
    }
.hollywoodtext {
    font-family:Tahoma,Verdana,sans-serif;
    font-size:10pt;
    }
img.emo {
	display: inline !important;
	margin: 0 2px 0 2px;
	}
.input {
	font: bold 1.2em monospace,serif;
	}
.leno {
    font-family: "Comic Sans MS", "Comic Sans", sans-serif;
    font-size: 12pt;
    }
.mallardheader {
    color:#456F73;
    font: bold 20px Arial, sans-serif;
    font-style:italic;
    }
.news,
.inthenewstext {
    font-family:georgia, times new roman, serif;
    font-size:10pt;
    }
.news-header,
.inthenewsheader {
  font: bold x-large georgia;
  }
.pic {
  float: left;
  margin: 0 19px 10px 0;
  }
.pic-with-ul {
margin-right:20px;
	}
.post-title {
	font: bold 20px Verdana, sans-serif;
	margin-bottom: 5px;
	}
.screenplay {
	font-family:monospace;
	font-size:11pt;
	}
.screenplay p.action {
  margin-top: 1em;
  margin-left:2px;
  }
.screenplay p.character {
  margin-top: 1em;
  margin-bottom: 0em;
  text-align: center;
  text-transform: uppercase;
  }
.screenplay p.dialog {
  margin-top: 0em;
  padding-left: 10em;
  padding-right: 10em;
  }
.screenplay p.parenthetical {
  margin-top: 0em;
  margin-bottom: 0em;
  padding-left: 11em;
  padding-right: 11em;
  }
.screenplay p.sceneheading {
  font-weight: bold;
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left:2px;
  text-transform: uppercase;
}
.screenplay p.shot {
  margin-top: 0em;
  margin-bottom: 0em;
  }
.screenplay p.transition {
  margin-top: 1em;
  margin-bottom: 0em;
  text-align: right;
  text-transform: uppercase;
  }
.spoiler {
    background-color: black;
    color: black;
    font-weight: normal;
  padding: 0 5px;
    text-decoration: none;
    }
.spoiler:hover {
  color: white;
  }
ul {
	list-style-type: square;
	}
.ul-with-pic {
 margin-left:220px;
}
.post ul li {
	margin-bottom:10px;
}

/* FOOTER */

#home #footer {
	background-color: white;
	border-top: 1px solid black;
	color: black;
  	font-family: Geneva, Tahoma, 'Trebuchet MS', sans-serif;
	margin: 0;
	font-weight: normal;
	text-align: center;
  	}
#home #footer a {
	font-family: Tahoma, 'Trebuchet MS', sans-serif;
	color: black;
	font-weight: bold;
	text-decoration: none;
  	}
#home #footer a:hover {
  	color: red;
  	}
#home #footer ul {
	list-style:none;
  	}
#home #footer ul li {
	display: inline;
	padding-right: 10px;
	}

/* RESPONSIVE */

@media (max-width: 666px) {
	#menu,
	.header-image,
	#header h1 {
		display: none;
		}
	img {
		max-width:100%}
		}
	#post .post-body {
	padding: 17px 2%;
	}
  .pic-with-ul {
    display: block;
  margin-right:0;
  }
  .ul-with-pic {
   margin-left:0;
  }
@media (min-width: 666px) {
	.app-bar,
	.navdrawer-container,
	.header-image-small {
		display: none;
		}
	#home #main {
		margin-left: 120px;
		}
	}
