/*
Theme Name: Frozen
Theme URI: http://demo.miracsinir.com/frozen
Author: Mirac Sinir
Author URI: http://www.miracsinir.com
Description: A Business Wordpress Themes
Version: 1.1
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html


*/
/* ======================================================================

INDEX:

    1. Import Section

    2. Infobar

	3. Header

    4. Navigation
        - 4.1. Dropdown

    5. Content
        - 5.1. Page Header
        - 5.2. Main

    6. Homepage
        - 6.1. Featured Slider
        - 6.2. Tagline
        - 6.3. Features Boxes Panel
        - 6.4. Portfolio Panel
        - 6.5. Latestposts Panel

    7. Posts
        - 7.1. Media Stylings
        - 7.2. Post info
        - 7.3. Pagination

    8. Comments
        - 8.1. Comments Form

    9. Sidebar
        - 9.1. Widgets
        - 9.2. Recent Comments
        - 9.3. Calendar
        - 9.4. RSS
        - 9.5. Search
        - 9.6. Tags
		- 9.7. Recent Tweets
		- 9.8. Recent Video
		- 9.9. Blog Author
		- 9.9.1. Recent Posts
		- 9.9.2. Recent Portfolio Widget
		- 9.9.3. Flickr Photos

    10. Footer Widgets
        - 10.1. Widgets
        - 10.2. Twitter
        - 10.3. Recent Comments
        - 10.4. Tags

    11. Footer

    12. UiTop

    13. Page Templates
        - 13.1. Portfolio Gallery
        - 13.2. Portfolio Single
        - 13.3. Contact Form

    14. Media Queries

====================================================================== */

/* =================================================================== */
/* Import Section
====================================================================== */
@import url("css/base.css");		/* Default Reset, Typography, Forms, etc. */
@import url("css/layout.css");		/* 960 Grid + Media Query Layouts */
@import url("css/shortcodes.css");	/* shortcodes */


/* =================================================================== */
/* Infobar
====================================================================== */
#infobar{
    background-color: #606060;
    position: relative;
    overflow: hidden;
	color: #ffffff;
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
	text-align: center;
	font-size: 12px;
	font-weight: 600;
}
#infobar a{
	display: inline-block;
	color: #ffffff;
	background: rgba(0, 0, 0, 0.2);
	padding: 1px 6px;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
			border-radius: 3px;
	margin: 0 2px;
}
#infobar a:hover{
	background: rgba(0, 0, 0, 0.4);
}

#infobar .closebtn{
	cursor: pointer;
	display: block;
	width: 13px;
	height: 13px;
	position: absolute;
	top: 50%;
	right: 20px;
	float: right;
	background: url(images/close.png) no-repeat 0 0;
	margin-top: -5px;
    overflow: hidden;
    text-indent: 200%;
	opacity: 0.6;
}
#infobar .closebtn:hover{
	opacity: 1;
}

.infobar{
    padding: 10px 40px 5px 0;
}


/* =================================================================== */
/* Header
====================================================================== */
#header {
    background: url(images/bg-header.png) repeat left top #ffffff;
    border-top: 5px solid #606060;
    border-bottom: 1px solid #e1e1e1;
    padding: 10px 0;
    z-index: 999;
}
#header .site-title, #header .site-description {
    font-size: 28px;
    line-height: 1;
    margin: 0;
    float: left;
}
#header .site-title a, #header .site-description a {
    font-weight: 700;
    text-decoration: none;
}
#header .site-description {
    color: #46B1E1;
    font-size: 10px;
    margin: 12px 0 0 10px;
}


/* =================================================================== */
/* Navigation
====================================================================== */
#navigation select {
    display: none;
    width: 100%;
    padding: 7px;
    height: 35px
}
#navigation select option {
    padding: 5px;
}
#navigation {
    font-size: 12px;
	font-family: 'Open Sans', Arial, sans-serif;
	text-transform: uppercase;
	font-weight: 700;
    float: right;
}
#navigation ul, #navigation li {
    list-style:none;
    padding:0;
    margin:0;
    display:inline;
}
#navigation ul li {
    float:left;
    position:relative;
    line-height: 15px;
}
#navigation ul li a {
	display: inline-block;
	color: #aaa;
	padding: 10px 10px 40px;
}
#navigation ul li a:hover{
    color: #606060;
}

/* Dropdown
====================================*/
#navigation ul ul {
	opacity: 0;
  	filter: alpha(opacity=0);
	position: absolute;
	top: -99999px;
	left: 0;
    width: 200px;
	z-index: 999999;
	background: #fff;
	-webkit-transition: opacity 0.4s ease-out;
	-moz-transition: opacity 0.4s ease-out;
	-o-transition: opacity 0.4s ease-out;
	-ms-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #DFDFDF;
}
#navigation ul ul li a:hover {
	color: #606060 !important;
}
#navigation ul ul li a {
	padding: 16px 20px;
	display: block;
	width: 160px;
	text-decoration: none;
	font-weight: 700;
	font-size: 11px;
	border-bottom: 1px solid #e9e9e9;
}
#navigation ul ul ul {
	position:absolute;
	top:-99999px;
	left:100%;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease-out;
	-moz-transition: opacity 0.4s ease-out;
	-o-transition: opacity 0.4s ease-out;
	-ms-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out;
}

#navigation ul li:hover>ul { opacity: 1; position:absolute; top:100%; left:0;}
#navigation ul ul li:hover>ul { position:absolute; top:0; left:100%; opacity: 1; z-index:497; border: 0; }
#navigation ul li:hover > a { color: #606060;}
#navigation ul ul li:hover > a {
    background: #f5f5f5;
    transition: background 0.15s ease-in-out;
    -webkit-transition: background 0.15s ease-in-out;
    -moz-transition: background 0.15s ease-in-out;
    -o-transition: background 0.15s ease-in-out;
}
#navigation li.current_page_item > a { color: #606060 !important; }


/* =================================================================== */
/* Content
====================================================================== */
#content { padding: 30px 0 50px 0; }


/* Page Header
====================================*/
#page-header {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    padding: 0 0 30px;
    display: none;
}

.page-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
    margin: 0;
}

.page-description {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    margin: 0;
}


/* Main
====================================*/
#main {
    width: 680px;
    margin: 0 40px 0 10px;
    float: left;
}

.layout-2cr #main {
    float: right;
    margin: 0 10px 0 40px;
}

.layout-1c #main {
    width: 940px;
    margin-right: 0;
}


/* =================================================================== */
/* Homepage
====================================================================== */

/* Featured Slider
====================================*/
.featured-wrap {
    border-bottom: 1px solid #e1e1e1;
    overflow: hidden;
    position: relative;
    z-index: 998;
    box-shadow: inset 0 0 10px 0 #111111;
    -webkit-box-shadow: inset 0 0 10px 0 #111111;
    -moz-box-shadow: inset 0 0 10px 0 #111111;
    -o-box-shadow: inset 0 0 10px 0 #111111;
}
.featured-wrap #featured {
    background: none;
    max-width: 940px;
    border: none;
    box-shadow: inset 0 0 0 0 #888888;
    -webkit-box-shadow: inset 0 0 0 0 #888888;
    -moz-box-shadow: inset 0 0 0 0 #888888;
    -o-box-shadow: inset 0 0 0 0 #888888;
}
.featured-wrap #featured ul.slides li.current-slide {
    filter: alpha(opacity=@opacity * 100) !important;
    -moz-opacity: 1 !important;
    -khtml-opacity: 1 !important;
    opacity: 1 !important;
}
#featured .slides {
    margin: 0;
}
#featured .slides li.slide {
    position: relative;
    display: none;
    list-style: none;
}
#featured .slides li.slide .slide-content-container article header {
    z-index: 999;
}
#featured .slides .slide-video-carousel {
    max-width: 940px;
}
#featured img {
    display: block;
    margin: 0 auto;
    width: auto;
}
#featured article {
    border: none;
    color: #fff;
    position: relative;
}
#featured article a {
    color: #fff;
}
#featured article header {
    padding: 15px 20px 10px;
    height: 75px;
    background: rgba(70, 177, 225, 0.9);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
#featured article header h1 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.9em;
    margin-bottom: 0.2em;
    font-weight: normal;
}
#featured article header h1,
#featured article header h1 a {
    line-height: 1;
    color: #fff;
}
#featured article header .entry {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #fff;
    font-size: 1.5em;
    font-weight: 300;
    line-height: 2em !important;
    height: 50px !important;
    overflow: hidden;
}

#featured article header .entry p {
    line-height: 25px;
}

.controls-container {
    position: relative;
    z-index: 998;
    top: 0;
}
.controls-container .flex-control-nav {
    position: absolute;
    bottom: 120px;
    right: 10px;
    z-index: 9999;
    padding: 0;
    text-align: center;
    display: block;
}
.controls-container .flex-control-nav li {
    display: inline-block;
    padding: 0;
    margin: 0 5px;
    height: 10px;
    width: 30px;
    line-height: 1;
    list-style: none;
    cursor: pointer;
}
.controls-container .flex-control-nav li a {
    display: inline-block;
    height: 10px;
    width: 30px;
    text-indent: -999em;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}
.controls-container .flex-control-nav li a:hover {
    background: rgba(70, 177, 225, 1);
}
.controls-container .flex-control-nav li a.active {
    background: rgba(70, 177, 225, 0.9);
}

/* Tagline
====================================*/
#tagline {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 1.7em;
    line-height: 1.3;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
    float: left;
}
#tagline a {
	padding: 0 7px;
    text-decoration: underline;
    color: #46B1E1;
}
#tagline a:hover { color: #248FBF; }


/* Features Boxes Panel
====================================*/
#features{
    margin: 20px 0;
    float: left;
}
.feature {
    margin: 0;
}
.feature.page {
    margin: 0 0 40px 0;
}
.feature-description {
    margin-left: 50px;
}
.feature h5 {
	font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.feature-icon {
	width: 35px;
	float: left;
	margin-top: 2px;
    opacity: 0.7;
}
.feature:hover .feature-icon {
    opacity: 1;
}


/* Portfolio Panel
====================================*/
#latestwork {
    margin-bottom: 20px;
    width: 100%;
    float: left;
}

.section-title {
    font-size: 14px;
	font-weight: 600;
	font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.25;
    border-bottom: 1px solid #ECECEC;
    margin-top: 20px;
    margin-bottom: 15px;
    padding: 5px 0 10px;
}

.carousel-nav {
    position: relative;
}

.carousel-nav li a {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

a.work_next, a.work_prev,
a.blog_next, a.blog_prev {
    background: #ddd url(images/button-arrows.png) no-repeat 0 0;
    cursor: pointer;
    height: 19px;
    position: absolute;
    right: 0;
    top: -48px;
    width: 19px;
}

a.work_prev,
a.blog_prev {
    background-position: 0 -19px;
    right: 20px;
}

.carousel-nav li a:hover {
    background-color: #46B1E1;
}

#embedd-video{
	width:600px !important;
	display: none;
}


/* Latestposts Panel
====================================*/
#latestposts {
    margin-bottom: 20px;
    width: 100%;
    float: left;
}

#latestposts .entry h5 a {
	color: #606060;
}
#latestposts .entry:hover h5 a {
	color: #46B1E1;
}

#latestposts h5 {
	font-weight: 600;
    margin: 10px 0 0;
    text-transform: uppercase;
}

#latestposts .entry-meta {
	font-size: 11px;
	color: #878787;
    text-transform: uppercase;
	margin: 5px 0 10px 0;
}
#latestposts .entry-meta a {
	color: #878787;
    font-weight: 700;
}
#latestposts .entry-meta a:hover { color: #606060; }



/* =================================================================== */
/* Posts
====================================================================== */
.sticky {}

.post {
	border-bottom: 1px dotted #ced8df;
	margin: 0 0 3em;
	padding: 0 0 3em;
}

.post-body {
    float: left;
    width: 580px;
}

.post header {
    margin: 0 0 0.8em 0;
}

.post header h3 {
    font-weight: 600;
    line-height: 1.2;
    font-size: 22px;
    text-transform: uppercase;
    margin: 0;
}

.post header h3 a {
	color: #606060;
}

.post header h3 a:hover { color: #46B1E1; }

.post .post-meta {
    padding: 0.3em 0;
    color: #878787;
    font-size: 11px;
    text-transform: uppercase;
}

.post .post-meta .title { font-weight: 700; }

.post .post-meta a, .post .post-meta a time {
    color: #878787;
    display: inline-block;
}

.post .post-meta a:hover, .post .post-meta a:hover time { color: #606060; }

.post .post-more {
    margin: 0.8em 0 0 0;
}
.post a.more-link {
	font-weight: 700;
	font-size: 11px;
	line-height: 11px;
	text-transform: uppercase;
}
.post a.more-link:hover { color: #46B1E1; }


/* Media Stylings
====================================*/
#post-slider .flex-control-nav {
	display:none;
}

.single-portfolio-gallery .slide-video,
.single-portfolio-gallery #post-slider,
.portfolio .post-thumb,
.post .post-thumb,
.post #post-slider,
.post .slide-video {
    margin-bottom: 20px;
}

.post #post-slider .post-thumb {
    margin-bottom: 0;
}

.post-thumb {position: relative;}

.single-portfolio-gallery #post-slider,
.post #post-slider {
	width: 100%;
	height: 100%;
	position: relative;
	cursor: default;
}

.post-thumb img {
    -webkit-transition: opacity .2s linear;
	-moz-transition: opacity .2s linear;
	-o-transition: opacity .2s linear;
	-ms-transition: opacity .2s linear;
	transition: opacity .2s linear;
}
.post-thumb > a:hover img { opacity: .7; }


/* Post info
====================================*/
.post-info {
	float: left;
	width: 65px;
    margin-right: 35px;
}
.post-info div {
	width: 65px;
	z-index: 9;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
}
.post-info div.comments {
	height: 100%;
}
.post-info div.comments a {
	color: #bbb;
	display: block;
	cursor:pointer;
	background-color: #565656;
	font-size: 9px;
    line-height: 16px;
	padding: 6px;
}
.post-info div.comments a:hover {
	color: #fff;
}
.post-info div.comments a span {
	font-size: 22px;
	letter-spacing: 0px;
	margin-top: 2px;
	line-height: 27px;
}


/* Post format
====================================*/
.post-info .post-format {
    background-color: #46B1E1;
	color: #959393;
	display: block;
	width: 65px;
	height: 40px;
    margin: 3px 0;
	text-indent: -9999px;
	cursor:pointer;
	background-image: url(images/format-icons.png);
	background-repeat: no-repeat;
	background-position: center -239px;
    -webkit-transition: color .2s ease-in, background-color .2s linear;
    -moz-transition: color .2s ease-in, background-color .2s linear;
    transition: color .2s ease-in, background-color .2s linear;
}
.post-info .post-format:hover {
    background-color: #248FBF;
}
.post-info .post-format.image {
    background-position: center 0px;
}
.post-info .post-format.gallery {
    background-position: center -80px;
}
.post-info .post-format.video {
    background-position: center -160px;
}
.post-info .post-format.link {
    background-position: center -399px;
}
.post-info .post-format.quote {
    background-position: center -324px;
}
.post-info .post-format.aside {
    background-position: center -560px;
}


/* Pagination
====================================*/
.pagination {
	float: right;
	position:relative;
}
.pagination span.pages {
    margin:  7px 30px 0 0;
    padding: 0;
	background-color: transparent;
}
.pagination a, .pagination a:link, .pagination span {
	background-color: #EAECEF;
    display: inline-block;
    float: left;
	color: #606060;
	font-size: 12px;
	text-decoration: none;
	font-weight: bold;
    margin: 0 0 0 4px;
    padding: 7px 12px;
    text-transform: uppercase;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -transition: all 0.1s ease-in-out;
}
.pagination a:hover {
	color: #fff;
	background-color: #565656;
}
.pagination span.current {
    background-color: #46B1E1;
	color: #fff;
}

/* =================================================================== */
/* Comments
====================================================================== */
#comments {
    position: relative;
}
#comments h3 {
    font-weight: 700;
    padding: 0 0 5px 0;
}
.commentlist {
    border-bottom: 1px dotted #CED8DF;
}
#comments .comment {
    list-style: none;
}
#comments .comment.bypostauthor {
}
#comments .comment .comment-container {
    position: relative;
    padding: 20px 0;
    border-top: 1px dotted #CED8DF;
}
#comments .comment .comment-meta {
    margin: 0 0 10px 0;
    color: #727272;
}
#comments .comment .comment-meta .name {
    display: block;
    margin: 0;
    font-weight: bold;
    font-size: 17px;
    text-transform: uppercase;
    color: #3f3f3f;
}
#comments .comment .comment-meta .date,
#comments .comment .comment-meta .edit {
    font-size: 11px;
    text-transform: uppercase;
}
#comments .comment .avatar {
    float: left;
    margin: 0 15px 10px 0;
}
#comments .comment .avatar img {
    margin: 0;
    vertical-align: middle;
    border: 1px solid #e1e1e1;
    padding: 3px;
    background: #fff;
}
#comments .comment .comment-content {
    margin-left: 63px;
}

#comments .comment .comment-content p {
    margin: 0 0 10px 0;
}
#comments .comment .reply {
    position: absolute;
    top: 5px;
    right: 10px;
    padding-top: 10px;
}
#comments .comment .reply a {
    font-size: 1em;
    padding: 0 0 0 20px;
    background: none;
    color: #585858 !important;
    text-shadow: none;
    font-weight: normal;
    margin: 0;
    background: url(images/icon-reply.png) no-repeat left 3px;
    filter: alpha(opacity=@opacity * 100);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
}
#comments .comment .reply a:hover {
    filter: alpha(opacity=@opacity * 100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}
#comments .comment .reply a:active {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

#comments ul.children {
    margin: 0;
    padding: 0 0 0 70px;
}
#comments ul.children .cancel-comment-reply {
    margin: 10px 0;
}

#comments .navigation a {
    display: block;
    margin: 15px 0 0 0;
    text-decoration: none;
}
#comments h3#pings {
    margin-top: 25px;
}
#comments .pingbacks li.pingback {
    margin: 10px 0;
}
#comments .pingbacks li.pingback .reply {
    display: none;
}
#comments .nocomments {
    font-weight: bold;
    font-size: 1.2em;
}


/* Comments Form
====================================*/
#respond {
    margin: 2em 0 3em;
}

#respond h3 {
    font-weight: bold;
    margin-bottom: 20px;
}

.commentlist #respond { margin: 10px 0 35px; }

.commentlist #respond h3 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    background: none;
    border: none;
}
.commentlist #respond h3 small {
    display: block;
    margin: 3px 0 0;
    font-family: sans-serif;
    font-size: 0.6em;
}

#commentform { margin: 20px 0 0 0; }

#main #commentform input { width: 191px; }

#main .commentlist .children .depth-2 #commentform input { width: 168px; }
#main .commentlist .children .depth-3 #commentform input { width: 144px; }
#main .commentlist .children .depth-4 #commentform input { width: 121px; }

#main #commentform textarea { width: 657px; }

#main .commentlist .children .depth-2 #commentform textarea { width: 588px; }
#main .commentlist .children .depth-3 #commentform textarea { width: 516px; }
#main .commentlist .children .depth-4 #commentform textarea { width: 447px; }


.contact-form, #commentform { max-width: 100%; }

.contact-form { }

.contact-form .input-block,
#commentform .input-block {
    float: left;
    margin: 0 20px 20px 0;
}

.contact-form .input-block:nth-of-type(3n), #commentform .input-block:nth-of-type(3n) { margin-right: 0; }

.contact-form input { width: 191px; }

.contact-form .textarea-block, #commentform .textarea-block { clear: both; }

.contact-form textarea {
    height: 150px;
    width: 658px;
}

.contact-form input[type="submit"], #commentform input[type="submit"] {
    display: block;
    margin: 0 0 20px;
    padding: 6px 15px;
    width: auto !important;
    font-size: 14px;
}


/* =================================================================== */
/* Sidebar
====================================================================== */
#sidebar {
    width: 220px;
    float: left;
}

.layout-2cr #sidebar {
    margin-left: 10px;
}

/* Widgets
====================================*/
#sidebar .widget { margin: 0 0 25px; }

#sidebar .widget-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin: 0 0 12px;
    text-transform: uppercase;
}

/* List
====================================*/
.widget ul { }
.widget li {
    background: url(images/arrow-right-grey.png) no-repeat left center;
    border-bottom: 1px dotted #ced8df;
    list-style: none;
    margin: 0;
}
.widget li:last-child { border-bottom: none; }
.widget li a {
	color: #606060;
	display: block;
	padding: 8px 0 8px 15px;
    line-height: 1.2;
}
.widget li a:hover { color: #46B1E1; }


/* Recent Comments
====================================*/
.widget .recentcomments {
    display: block;
    padding: 5px 0 5px 15px;
}


/* Calendar
====================================*/
.widget_calendar table { width: 100%; }

.widget_calendar th, .widget_calendar td {
    background: none;
    border: 0;
    padding: 0;
}

.widget_calendar caption {
    font-size: 12px;
    margin-bottom: 10px;
    text-align: center;
}

.widget_calendar tr th {
    font-size: 12px;
}

.widget_calendar tr td {
    padding: 4px 6px;
    text-align: center;
}

.widget_calendar tr td#prev {
	padding: 5px 0 0;
	text-align:left;
}

.widget_calendar tr td#next {
	padding: 5px 0 0;
	text-align: right;
}

.widget_calendar tr td#today {
	background: #f8f8f8;
	border: 1px solid #ced8df;
	font-weight: bold;
}

#footer-widgets .widget_calendar tr td#today {
	background: #464646;
	border: 1px solid #363636;
	font-weight: bold;
}

.widget_calendar tr td a {
    display: inline;
    font-weight: bold;
    padding: 0;
}

/* RSS
====================================*/
.rsswidget img { margin: 0 5px 0 0; }

.widget_rss .rss-date, .widget_rss .rssSummary { padding: 0 0 0 15px; }

.widget_rss .rss-date {
    color: #bbb;
    font-style: italic;
}

/* Search
====================================*/
.widget_search input[type="text"] {
    margin: 0 0 10px;
    width: 198px;
}

.widget_search #searchsubmit {
    padding: 6px 15px;
}


/* Tags
====================================*/
.widget_tag_cloud .tagcloud a {
    color: #fff;
    background: #d4d4d4;
	padding: 3px 6px 3px 6px;
	display: inline-block;
	margin: 2px 0 2px 0;
}

.widget_tag_cloud .tagcloud a:hover {
    background: #c8c8c8;
}


/* Recent Tweets
====================================*/
.widget_twitter h3 a {
    color: #444444;
    background: url(images/twitter-logo.png) no-repeat 0 0;
    padding: 5px 30px;
}

.widget_twitter h3 span { color: #46B1E1; }

ul.tweets { margin: 0; }

.tweets li {
    background: url(images/icon-tweets.png) no-repeat 0 3px;
    border: none;
    display: block;
    list-style: none;
    margin: 0 0 15px;
    padding: 0 0 0 30px;
}

#sidebar .tweets li a,
#footer-widgets .tweets li a {
    color: #46B1E1;
    display: inline;
    padding: 0;
}

.tweets .timesince { display: block; }

#sidebar .tweets li .timesince a,
#footer-widgets .tweets li .timesince a {
	color: #bbb;
	font-size: 10px;
	font-style: italic;
}

#sidebar .tweets li a:hover { color: #3a3a3a; }

#footer-widgets .tweets li a:hover { color: #fff; }


/* Recent Video
====================================*/
.widget_ms_embedwidget h4 {
    display: none;
}
.widget_ms_embedwidget ul {
    margin-top: 0;
}
.widget_ms_embedwidget ul li a {
    color: #585858;
}
.widget_ms_embedwidget ul li.active a {
    color: #46b1e1;
}

/* Blog Author
====================================*/
.widget_ms_blogauthorinfo .avatar {
}
.widget_ms_blogauthorinfo .left {
    float: left;
    margin: 5px 10px 5px 0;
}
.widget_ms_blogauthorinfo .right {
    float: right;
    margin: 5px 5px 10px;
}

/* Recent Posts
====================================*/
.ms-recent-posts-widget ul li {
    border-bottom: 1px dotted #CED8DF;
    padding: 10px 0;
    list-style: none;
    background: none;
}
.ms-recent-posts-widget ul li a {
    color: #606060;
    padding: 0;
    border: none;
}
.ms-recent-posts-widget ul li a:hover {
    color: #46B1E1;
}

.ms-recent-posts-widget li img.thumbnail {
    float: left;
    margin: 0 10px 0 0;
    -webkit-transition: opacity .2s linear;
    -moz-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    -ms-transition: opacity .2s linear;
    transition: opacity .2s linear;
}

.ms-recent-posts-widget li img.thumbnail:hover { opacity: 0.7; }

.ms-recent-posts-widget span.meta {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #878787;
    padding-top: 0.3em;
}


/* Recent Portfolio Widget
====================================*/
.ms-recent-portfolios-widget .project-meta {
    width: 100%;
    height: 20px;
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #F7F7F8;
    margin-bottom: 20px;
}

.ms-recent-portfolios-widget .project-meta p {
    text-align: center;
    margin: 0;
}

.ms-recent-portfolios-widget .project-meta p a {
    font-size: 13px;
    line-height: 1em;
	color: #999999;
}

.ms-recent-portfolios-widget .portfolio-item .portfolio-thumb img {
	width: 220px;
	height: 136px;
}

.ms-recent-portfolios-widget .portfolio-item .portfolio-thumb img:hover { }

.ms-recent-portfolios-widget .portfolio-item:last-child { margin-bottom: 0; }


/* Flickr Photos
====================================*/
.widget_ms_flickr h3 span {
    color: #0051d8;
}
.widget_ms_flickr h3 span span {
    color: #ff1183;
}
.widget_ms_flickr .flickr_badge_image {
    float: left;
}
.widget_ms_flickr .wrap {
    position: relative;
    margin-bottom: 20px;
    padding: 0;
}
.widget_ms_flickr a img {
    float: left;
    margin: 0 15px 15px 0;
    display: block;
    -webkit-transition: opacity .2s linear;
    -moz-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    -ms-transition: opacity .2s linear;
    transition: opacity .2s linear;
}
.widget_ms_flickr a:hover img {
    opacity: 0.7;
}


/* =================================================================== */
/* Footer Widgets
====================================================================== */
#footer-widgets {
    background-color: #404040;
    color:#8b8b8b;
    margin: 0;
    padding: 30px 0;
}

/* Widgets
====================================*/
#footer-widgets .widget {
    margin-bottom: 3em;
}
#footer-widgets .widget h3 {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	color:#fff;
	font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
	display: block;
	margin: 0 0 1em 0;
}
#footer-widgets .widget p {
    margin-bottom: 1em;
    line-height: 20px;
}
#footer-widgets .widget ul li {
    background: none;
    border-bottom: none;
}
#footer-widgets .widget ul li a {
    color: #8b8b8b;
    display: inline;
    padding: 0;
}
#footer-widgets .widget ul li a:hover {
    color: #d8d8d8;
}

/* Twitter
====================================*/
#footer-widgets .widget_twitter ul {
}
#footer-widgets .widget_twitter ul li {
    background: url(images/icon-tweets.png) no-repeat 0 3px;
}

/* Recent Comments
====================================*/
#footer-widgets .widget_recent_comments ul li {
    padding: 2px 0;
    line-height: 1;
    background: none;
    border-bottom: none;
}
#footer-widgets .widget_recent_comments ul li a {
    background: none;
    border: none;
}

/* Tags
====================================*/
#footer-widgets .widget_tag_cloud .tagcloud a {
    color: #eee;
    background: #5a5a5a;
}
#footer-widgets .widget_tag_cloud .tagcloud a:hover {
    background: #737373;
    color: #fff;
}

/* =================================================================== */
/* Footer
====================================================================== */
#footer {
    background: #333;
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0;
}
#footer a {color:#FAFAFA;}


/* =================================================================== */
/* UiTop scroll to top page
====================================================================== */
#toTop {
    background: url(images/totop.png) no-repeat center center #D4D4D4;
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 40px;
    width: 40px;
    outline: 0;
    text-align: center;
    text-indent: -9999px;
    overflow: hidden;
    display: none;
    opacity: 0.85;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
#toTop:hover {
    background-color: #46B1E1;
    opacity: 1;
}


/* =================================================================== */
/* Page Templates
====================================================================== */

/* Portfolio Gallery
====================================*/
#options {
	padding: 10px 0 20px 0;
	border-bottom: 1px solid #ECECEC;
	margin-bottom: 20px;
}

#filters {
	float: left;
	display: block;
	width: 100%;
}

#filters li {
	margin: 3px 6px 3px 0;
    float: left;
}

#filters a {
    background: #EAECEF;
	color: #686868;
    padding: 6px 15px;
    display: inline-block;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
}

#filters a:hover {
	color: #fff;
	background: #46B1E1;
}

#filters a.active {background: #46B1E1; color: #fff !important;}
#filters a.active:hover {background: #008BC0 !important;}


#portfolio-gallery .item {
    margin-bottom: 40px;
}

#portfolio-gallery .portfolio-thumb,
.ms-recent-portfolios-widget .portfolio-thumb,
#latestwork .portfolio-thumb {
	width: 100%;
	height: 100%;
	position: relative;
	cursor: default;
}

#portfolio-gallery .entry,
.ms-recent-portfolios-widget .entry,
#latestwork .entry {
	position: absolute;
    background: #46B1E1;
    text-align: center;
	width: inherit;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-backface-visibility: hidden;
}

#portfolio-gallery .entry h3,
.ms-recent-portfolios-widget .entry h3,
#latestwork .entry h3 {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 14px;
    line-height: 20px;
	margin: 0 5%;
	padding: 5% 0 0 0;
	font-family: 'Open Sans', Arial, sans-serif;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

#portfolio-gallery .entry p,
.ms-recent-portfolios-widget .entry p,
#latestwork .entry p {
    color: #fff;
    border-top: 1px dotted rgba(255,255,255,0.5);
    margin: 5%;
    padding-top: 10px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

#portfolio-gallery .entry a,
.ms-recent-portfolios-widget .entry a,
#latestwork .entry a {
	display: block;
    width: 13.5%;
    height: 21%;
    position: absolute;
    right: 0;
    bottom: 0;
	opacity: 0;
	-webkit-transition: all 1s ease-in-out 0.4s;
	-moz-transition: all 1s ease-in-out 0.4s;
	-o-transition: all 1s ease-in-out 0.4s;
	-ms-transition: all 1s ease-in-out 0.4s;
	transition: all 1s ease-in-out 0.4s;
}

#portfolio-gallery .entry a.prettyPhoto,
.ms-recent-portfolios-widget a.entry .prettyPhoto,
#latestwork .entry a.prettyPhoto {
    background: url(images/zoom.png) no-repeat center center #333;
    right: 14%;
}
#portfolio-gallery .entry a.prettyPhoto:hover,
.ms-recent-portfolios-widget a.entry .prettyPhoto:hover,
#latestwork .entry a.prettyPhoto:hover {
    background: url(images/zoom.png) no-repeat center center rgba(0,0,0, 0.8);
}
#portfolio-gallery .entry .link,
.ms-recent-portfolios-widget .entry .link,
#latestwork .entry .link {
    background: url(images/link.png) no-repeat center center #333;
}
#portfolio-gallery .entry .link:hover,
.ms-recent-portfolios-widget .entry .link:hover,
#latestwork .entry .link:hover {
    background: url(images/link.png) no-repeat center center rgba(0,0,0, 0.8);
}

#portfolio-gallery .portfolio-thumb:hover .entry,
.ms-recent-portfolios-widget .portfolio-thumb:hover .entry,
#latestwork .portfolio-thumb:hover .entry {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 0.9;
}

#portfolio-gallery .portfolio-thumb:hover .entry a,
.ms-recent-portfolios-widget .portfolio-thumb:hover .entry a,
#latestwork .portfolio-thumb:hover .entry a {
	opacity: 1;
}

#portfolio-gallery .project-meta,
#latestwork .project-meta {
    width: 100%;
    height: 20px;
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #F7F7F8;
}

#portfolio-gallery .project-meta p,
#latestwork .project-meta p {
    text-align: center;
/*    text-transform: uppercase;*/
    margin: 0;
}

#portfolio-gallery .project-meta p a,
#latestwork .project-meta p a {
    font-size: 13px;
    line-height: 1em;
	color: #999999;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height;
     -moz-transition-property: height;
      -ms-transition-property: height;
       -o-transition-property: height;
          transition-property: height;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:    -moz-transform, opacity;
       -o-transition-property:         top, left, opacity;
          transition-property:         transform, opacity;
}

/* Portfolio Single
====================================*/
.posts-nav {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 50px;
	height: 22px;
}
.posts-prev a, .posts-next a {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
	width: 22px;
	height: 22px;
	display: block;
}
.posts-prev a {
	background: url(images/prev.png) no-repeat 8px center #ddd;
	text-indent: -9999px;
	float: right;
}
.posts-next a {
	background: url(images/next.png) no-repeat 9px center #ddd;
	text-indent: -9999px;
	float: right;
	margin-left: 3px;
}
.posts-prev a:hover, .posts-next a:hover {
	background-color: #46B1E1;
}

#portfolio-gallery .portfolio-item {
	background: url(images/divider_bg.png) repeat-x bottom left;
	padding-bottom: 50px;
	margin-bottom: 50px;
	overflow: hidden;
	width: 100%;
}
.portfolio-content h2 {
    margin-bottom: 5px;
}


/* Contact Form
====================================*/
#main p.success{
	padding: 10px;
	background: #ffffe0;
	border: 1px solid #e6db55;
	color: green;
}

#main p.error {
	padding: 10px;
	background: #ffffe0;
	border: 1px solid #e6db55;
	color: red;
}


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

/* Tablet (Portrait) (Width of 768px) */
@media only screen and (min-width: 768px) and (max-width: 959px) {

    /* Featured Slider
    ====================================*/
    .featured-wrap .flex-direction-nav .prev {
        background: rgba(255, 255, 255, 0.7);
        background-image: url(images/arrow-prev.png);
        background-repeat: no-repeat;
        background-position: 7px center;
        left: 30px;
    }
    .featured-wrap .flex-direction-nav .next {
        background: rgba(255, 255, 255, 0.7);
        background-image: url(images/arrow-next.png);
        background-repeat: no-repeat;
        background-position: 10px center;
        right: 30px;
    }
    .featured-wrap .flex-direction-nav .prev:hover {
        background: rgba(255, 255, 255, 0.9);
        background-image: url(images/arrow-prev.png);
        background-repeat: no-repeat;
        background-position: 7px center;
    }
    .featured-wrap .flex-direction-nav .next:hover {
        background: rgba(255, 255, 255, 0.9);
        background-image: url(images/arrow-next.png);
        background-repeat: no-repeat;
        background-position: 10px center;
    }

    /* Homepage
    ====================================*/
    #tagline {font-size: 20px}

    #latestwork .entry p,
    #portfolio-gallery .entry p {
        height: 45px;
        overflow: hidden;
    }

    #latestwork .entry a.prettyPhoto,
    #portfolio-gallery .entry a.prettyPhoto {
        display: none;
    }

    /* Main
    ====================================*/
    #main {
        width: 488px;
        margin: 0 40px 0 10px;
        float: left;
    }

    .layout-1c #main {
        width: 748px;
        margin-right: 0;
    }

    /* Posts
    ====================================*/
    .post-body {
        float: right;
        width: 388px;
    }


    /* Comments
    ====================================*/
    #comments ul.children { padding: 0 0 0 55px; }

    /* Comments Form
    ====================================*/
    #main #commentform input { width: 127px; }

    #main .commentlist .children .depth-2 #commentform input,
    #main .commentlist .children .depth-2 #commentform textarea { width: 411px; }
    #main .commentlist .children .depth-3 #commentform input,
    #main .commentlist .children .depth-3 #commentform textarea  { width: 356px; }
    #main .commentlist .children .depth-4 #commentform input,
    #main .commentlist .children .depth-4 #commentform textarea { width: 301px; }

    #main #commentform textarea { width: 465px; }

	.contact-form input { width: 127px; }
	.contact-form textarea { width: 465px; }

}

/* Mobile (Landscape) (Width of 480px) */
@media only screen and (min-width: 480px) and (max-width: 767px) {

    /* Navigation
    ====================================*/
    #navigation {margin:30px 0;float: left; width: 100%}
    #navigation select {display: block; float: left;}
    #navigation ul {display: none;}

    /* Featured Slider
    ====================================*/
    .featured-wrap .flex-direction-nav {
        display: none;
    }
    .featured-wrap .flex-control-nav {
      bottom: 115px;
    }

    /* Homepage
    ====================================*/
    #tagline {font-size: 20px}

    .feature {
        margin: 20px 0 20px 0;
    }
    .feature:last-of-type {
        margin: 20px 0 0 0;
    }

    .caroufredsel_wrapper {
        width: 420px !important;
    }
    .work-carousel > li {
		width: 200px !important;
		margin: 0 20px 0 0 !important;
	}

    #latestposts section {
        margin: 0 20px 0 0 !important;
        width: 200px !important;
    }

    #latestwork .entry p {
        height: 45px;
        overflow: hidden;
    }

    #latestwork .entry a.prettyPhoto {
        display: none;
    }

    /* Main
    ====================================*/
    #main {
        border-bottom: 1px solid #efefef;
        width: 100%;
        margin: 0 0 3em;
        padding: 0 0 3em;
        float: left;
    }

    .layout-1c #main {
        width: 420px;
        margin-right: 0;
    }

    /* Sidebar
    ====================================*/
	#sidebar {
		width: 100%;
	}

    /* Posts
    ====================================*/
    .post-body {
        float: right;
        width: 320px;
    }

    /* Footer
    ====================================*/
    #footer,
    #footer .text-align-right {
        text-align: center;
        font-size: 11px;
    }

    /* Comments
    ====================================*/
    .commentlist .children { padding: 0 0 0 40px !important; }

    /* Comments Form
    ====================================*/
	.commentlist .children .depth-2 #commentform input, .commentlist .children .depth-2 #commentform textarea { width: 358px !important; }
	.commentlist .children .depth-3 #commentform input, .commentlist .children .depth-3 #commentform textarea { width: 318px !important; }
	.commentlist .children .depth-4 #commentform input, .commentlist .children .depth-4 #commentform textarea { width: 278px !important; }

	.contact-form .input-block, #commentform .input-block {
		float: none;
		margin: 0 0 20px 0;
	}

	.contact-form input, #commentform input,
	.contact-form textarea, #commentform textarea { width: 398px !important; }


    /* Portfolio Single
    ====================================*/
    .portfolio-content h2 {
        margin-top: 15px;
    }


}

/* Mobile (Portrait) (Width of 320px) */
@media only screen and (max-width: 479px) {

    /* Navigation
    ====================================*/
    #navigation {margin:30px 0;float: left; width: 100%}
    #navigation select {display: block; float: left;}
    #navigation ul {display: none;}

    /* Featured Slider
    ====================================*/
    .featured-wrap .flex-direction-nav {
        display: none;
    }
    .featured-wrap .flex-control-nav {
      bottom: 110px;
    }

    /* Homepage
    ====================================*/
    #tagline {font-size: 18px}

    .feature {
        margin: 20px 0 20px 0;
    }
    .feature:last-of-type {
        margin: 20px 0 0 0;
    }

    .caroufredsel_wrapper {
        width: 300px;
    }

    #latestposts section {
        margin: 0 0 30px 0;
    }

    /* Main
    ====================================*/
    #main {
        border-bottom: 1px solid #efefef;
        width: 100%;
        margin: 0 0 3em;
        padding: 0 0 3em;
        float: left;
    }

    .layout-1c #main {
        width: 300px;
        margin-right: 0;
    }

    /* Sidebar
    ====================================*/
	#sidebar {
		width: 100%;
	}

    /* Posts
    ====================================*/
    .post-body {
        float: left;
        width: 100%;
    }

    .post-info { width: 100%; margin: 0 0 20px 0; }
    .post-info div, .post-info a { width: auto; float: left; }
    .post-info .post-format { margin: 0 3px 0 0; }
    .post-info div.comments { height: auto; }
    .post-info div.comments a { font-size: 11px; padding: 12px; }
    .post-info div.comments a span { font-size: 11px; line-height: normal; display: inline; margin: 0 2px; }

    /* Footer
    ====================================*/
    #footer,
    #footer .text-align-right {
        text-align: center;
        font-size: 11px;
    }

    /* Comments
    ====================================*/
    .commentlist .children { padding: 0 0 0 20px !important; }

    /* Comments Form
    ====================================*/
	.commentlist .children .depth-2 #commentform input, .commentlist .children .depth-2 #commentform textarea { width: 258px !important; }
	.commentlist .children .depth-3 #commentform input, .commentlist .children .depth-3 #commentform textarea { width: 238px !important; }
	.commentlist .children .depth-4 #commentform input, .commentlist .children .depth-4 #commentform textarea { width: 218px !important; }

	.contact-form input, #commentform input,
	.contact-form textarea, #commentform textarea { width: 278px !important; }


    .one_half, .one_third, .two_third,
    .three_fourth, .one_fourth, .one_fifth,
    .two_fifth, .three_fifth, .four_fifth,
    .one_sixth, .five_sixth {
        clear: both !important;
        float: none !important;
        display: block;
        width: auto !important;
        margin: 0;
        margin-bottom: 20px;
    }

    /* Portfolio Single
    ====================================*/
    .portfolio-content h2 {
        margin-top: 15px;
    }


}

/* Only apply to iPad portrait and up */
@media only screen and (min-width: 768px) {

    /* Featured Slider
    ====================================*/
    #featured article header {
        position: absolute;
        bottom: 40px;
        left: 30px;
        width: 50%;
        height: 75px;
    }
    #featured article header .entry {
        height: 40px;
    }
    .wrapper {
        margin: 0 auto;
        max-width: 940px;
        width: 100%;
    }

    .featured-wrap.carousel #featured {
        overflow: visible !important;
    }
    .featured-wrap.carousel #featured .slides li article,
    .featured-wrap.carousel #featured .slides li h1,
    .featured-wrap.carousel #featured .slides li .entry {
        display: none;
    }
    .featured-wrap.carousel #featured .slides li.current-slide article,
    .featured-wrap.carousel #featured .slides li.current-slide h1,
    .featured-wrap.carousel #featured .slides li.current-slide .entry {
        display: block;
    }
    .featured-wrap.carousel.faded #featured .slides li.current-slide {
    filter: alpha(opacity=@opacity * 100) !important;
    -moz-opacity: 1 !important;
    -khtml-opacity: 1 !important;
        opacity: 1 !important;
    }
    .featured-wrap .controls-container .flex-control-nav {
        bottom: 40px;
        right: 30px;
    }
    .featured-wrap .controls-container .flex-direction-nav {
        top: 30px;
        bottom: auto;
    }
    .featured-wrap .flex-direction-nav {
        position: absolute;
        top: 20px;
        bottom: auto;
        left: auto;
        width: 100%;
    }
    .featured-wrap .flex-direction-nav .prev,
    .featured-wrap .flex-direction-nav .next {
        display: block;
        position: absolute;
        height: 70px;
        width: 30px;
        overflow: hidden;
        text-indent: -999em;
    }

}

/* Move normal width slider navigation elements for high resolutions */
@media only screen and (min-width: 1024px) {

    /* Featured Slider
    ====================================*/
    .featured-wrap .controls-container ul.flex-direction-nav {
        top: 0;
    }
    .featured-wrap .controls-container ul.flex-direction-nav .prev {
        left: -980px;
    }
    .featured-wrap .controls-container ul.flex-direction-nav .next {
        right: -980px;
    }
    .featured-wrap .flex-direction-nav {
        position: absolute;
        top: 20px;
        bottom: auto;
        left: auto;
        width: 100%;
    }
    .featured-wrap .flex-direction-nav .prev,
    .featured-wrap .flex-direction-nav .next {
        position: absolute;
        overflow: visible;
        text-indent: -9999px;
        height: 380px;
        width: 980px;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }
    .featured-wrap .flex-direction-nav .prev {
        background-position: 20px center;
    }
    .featured-wrap:hover .flex-direction-nav .prev {
        background-image: url(images/arrow-prev.png);
        background-repeat: no-repeat;
        background-position: 940px center;
    }
    .featured-wrap .flex-direction-nav .prev:hover {
        background: rgba(255, 255, 255, 0.5);
        background-image: url(images/arrow-prev.png);
        background-repeat: no-repeat;
        background-position: 940px center;
    }

    .featured-wrap .flex-direction-nav .next {
        background-position: 940px center;
    }
    .featured-wrap:hover .flex-direction-nav .next {
        background-image: url(images/arrow-next.png);
        background-repeat: no-repeat;
        background-position: 20px center;
    }
    .featured-wrap .flex-direction-nav .next:hover {
        background: rgba(255, 255, 255, 0.5);
        background-image: url(images/arrow-next.png);
        background-repeat: no-repeat;
        background-position: 20px center;
    }

}

.tribe-events-month-nav {
    width: 400px;
}

.tribe-events-prev-month {
    float:left;
}

select#tribe-events-events-month {
    display: inline;
}

.gun {
    width: 555px;
    height: 492px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

li.gfield {
    background: none;
}

.gform_footer {
    margin: 0 !important;
}