/*
Theme Name: Desktop 2011
Author: Niche Media
Version: 1.0

*/

/* 
  HTML5 ? Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 'Helvetica', 'Arial', sans-serif !important; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #242424; 
  /* set your base font here, to apply evenly */
  font-family: Palatino, Palatino Linotype, Book Antiqua3, serif;  
  background-color:#fefefe; 
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: normal; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #0298d2; text-decoration: none; outline: none;}
a:hover { color: #0298d2; text-decoration: underline; outline: none;}


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #0298d2; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #0298d2; color:#fff; text-shadow: none; }
::selection { background:#0298d2; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #0298d2; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after, .wpcf7:before, .wpcf7:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after, .wpcf7:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix, .wpcf7 { zoom: 1; }


 /* Primary Styles
    Author: Matthew McIntyre
 */

/************************************************************************/
/* Global Styles */
/************************************************************************/

/* Mobile link */
body>p {
	display:none;
}

/* Generic Post styles */
h1, h2, h3, h4, h5, h6 {
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	margin:20px 0;
	line-height:1.25em;
}
h1 {font-size: 26px;}
h2,h3,h4,h5,h6 {font-size: 19px;}

blockquote {
	font-size:19px;
	font-style: italic;
}
blockquote .hoz-rule {
	margin:20px 0;
}

/* Main Structure */
.wrap {
	width:1260px;
	margin:0 auto;
	padding:0 10px;
}
#main {
	width:1282px;
	padding:0;
	border-bottom: 1px solid #8e8e8e;  /*added by radhika*/
}

/*this class added by radhika*/
.bottom_leaderboard{
	width: 1260px;
    margin: 0 auto;
    padding: 10px 10px;
}

#main-top-border {
	height:1px;
	background: #8e8e8e;
	margin:0 10px;
}
#left-col {
	width:320px;
	float:left;
	margin:0 0 40px 0;
}
#content {
	width:640px;
	float:left;
	padding:0 0 40px 0;
	border-right:1px solid #8e8e8e;
	border-left:1px solid #8e8e8e;
}
#right-col {
	width:320px;
	float:left;
	margin:0 0 40px 0;
}
#footer {
	width:100%;
	background: #cecece;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
}
#container {
	position:relative;
}

/* Common */
.block-300 {
	margin:20px 10px 0 10px;
	width:300px;
	float:left;
	position:relative;
}
.block-620 {
	margin:20px 10px 0 10px;
	width:620px;
	position: relative;
}
.il-nav-left, .il-nav-left li, .il-nav-right li {
	float:left;
}
.il-nav-right {
	float:right;
}
.hoz-rule {
	background: url(images/hoz-dot.png) no-repeat right top;	
	padding:1px 0;
	margin:0 0 20px 0;
}
.hoz-rule div {
	height:1px;
	background: #8e8e8e
}
p {
	margin:13px 0;
}
.block-link {
	display:block;
}
.clearleft {
	clear:left;
}
#top-btn {

	position:fixed;
	top:500px;
	right:20px;
	line-height: 14px;
	font-size:14px;
	color:#fefefe;
	background:#4e4e4e;
	padding:24px 19px;
	font-style: italic;
	-moz-border-radius: 31px;
	border-radius: 31px;
}

/* Forms */
.txt-field, textarea, #commentform input, #commentform textarea {
	padding:8px;
	border:none;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	background:#4e4e4e;
	font-size:19px;
	color:#efefef;
	width:234px;
}
.lg-txt-field, #commentform input {
	font-size:19px;
	width:284px;
}
.submit {
	border:none;
}
label {
	display:block;
	margin:20px 0 5px 0;
}
textarea {
	width:284px;
}

/************************************************************************/
/* Wide Styles */
/************************************************************************/
#content #wid-pw-want {
	display:none;
}

#content .side-magazine {
	display:none;
}
.layout960 {
	display:none;
}

/* Submit Form */
#submit-dropdown {
	position: relative;
	display:none;
	width:100%;
}
.submit-left, .submit-right {
	width:290px;
	margin:0 10px 20px 20px;
}
.submit-mid {
	margin:0 0 20px 0;
}
.submit-wrap {
	width:940px;
	margin:20px 0 40px 0;
}
#submit-dropdown .submit-left {
	margin:0 10px 20px 0;
}
#submit-dropdown .submit-mid {
	margin:0 10px 20px 10px;
}
#submit-dropdown .submit-right {
	margin:0 0 20px 10px;
}

.submit-form h4 {
	font-size:13px;
	text-transform: uppercase;
	color:#4e4e4e;
	margin:20px 0 0 0;
}
.first-name {
	width:100px;
	margin:0 10px 0 0;
}
.last-name {
	width:150px;
}
.SI-FILES-STYLIZED label.file-upload
{
  width: 300px;
  height: 36px;
  background: url(images/file-upload.png) no-repeat 0 0;
  display: block;
  overflow: hidden;
  position:relative;
  margin:0 0 5px 0;
}

.SI-FILES-STYLIZED label.file-upload input.file
{
  position: absolute;
  height: 100%;
  width: 101px;
  top:0px;
  left:0px;
  opacity: 0;
  -moz-opacity: 0;
  filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}
.submit-btn, #commentform #submit, #submit, .tdomf_form input[type=submit] {
	display:block;
	font-family: "Lucida Grande", "Lucida Sans Unicode", sans-serif;
	font-size:13px;
	font-weight: bold;
	padding:9px 18px;
	color:#4e4e4e;
	text-transform: uppercase;
	background:#efefef;
	margin:5px 0 0 0;
	width:auto;
	border:none;
}
.submit-btn:hover, #commentform #submit:hover, #submit:hover,.tdomf_form input[type=submit]:hover {
	background: #8e8e8e;
	color:#efefef;
	text-decoration: none;
}
.submit-btn-wrap {
	margin:20px 0;
}

/* TDO mini Forms */
.ajax-loader {
	display:block;
	width:128px;
	margin:10px auto;
}
.tdomf_form fieldset, #submit-dropdown p {
	width:270px !important;
	margin:0 20px 10px 20px;
	padding:0;
}
#submit-page p {
	width:580px;
	margin:0 20px 10px 20px;
}
#submit-dropdown fieldset, #submit-dropdown p {
	float:left;
}
.tdomf_form table {
	clear:both;
	margin:0 0 0 20px;
	width:100%;
}
.tdomf_form table td {
	padding:10px 50px 10px 0;
}
#submit-dropdown .tdomf_form table td input {
	float: right;
}

.tdomf_form textarea, .tdomf_form input[type=text] {
	width:254px;
	padding:8px;
	border:none;
	background: #4e4e4e;
	color:#fefefe;
	font-size:19px;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
}
.tdomf_form label {
font-weight:bold;
	margin:10px 0 0 0;
}
#tdomf_form1 fieldset:nth-child(6) {
	clear:left;
}
.tdomf_form fieldset iframe { 
	overflow: auto;
}
.tdomf_form fieldset legend {
	padding:0 !important;
}


/* Submit Page (non-ajax) */
#content .wrap, #content .submit-wrap {
	width:620px;
	padding:0;
}



/* Header */
.site-header {
	margin:0 10px;
}
#left-col h1 {
	height:104px;
	margin:0;
}
.dt-logo {
	width:278px;
	height:84px;
	background: url(images/layout-sprite.png) 0 -66px;
	margin:20px 10px;
}
.main-nav {
	margin:20px 0;
	line-height: 1.25;
}
.main-nav a, .main-nav span {
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	font-size:17px;
	color:#8e8e8e;
	text-transform: uppercase;
	padding: 2px 5px;
	font-weight: bold;
	
}
.main-nav span {
	color:#cecece;
	position:relative;
	cursor: pointer;
}
.coming-soon {
	visibility: hidden;
	position:absolute;
	font-size:9px;
	color:#fefefe;
	background:#0298d2;
	padding:1px;
}
#nav-directory .coming-soon {
	top:6px;
	left:8px;
	padding:1px 10px;
}
#nav-forum .coming-soon {
	top:6px;
	left:2px;
}
.main-nav span:hover .coming-soon {
	visibility: visible;
}
.main-nav a:hover {
	color:#4e4e4e;
	text-decoration: none;
}
.main-nav .last {
	padding-right:0px;
}
.main-nav .left {
	padding-left:0px;
}
.cat-23-id #nav-news, .cat-24-id #nav-features, .cat-25-id #nav-blogs, .cat-2049-id #nav-want, .cat-2067-id #nav-pwall, .events-archive #nav-events, .events-single #nav-events, .cat-28-id #nav-careers, .page-id-16502 #nav-magazine {
	color:#4e4e4e;
}
.search-form {
	position: relative;
	width:300px;
	*left:-10px;
}
.search-form .txt-field {
	background-color: #cecece;
	color:#4e4e4e;
}
.search-submit {
	width:24px;
	height:24px;
	border:none;
	background:url(images/layout-sprite.png) -96px 0;
	position: absolute;
	right:8px;
	top:6px;
}
.search-submit:hover {
	background-position: -96px -24px;
}


/* Side Blocks */

.side-title, #reply-title, #comments-title {
	color:#4e4e4e;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	font-size:17px;
	text-transform: uppercase;
	line-height:17px;
	margin:0 0 5px 0;
}
.side-title a {
	color:#4e4e4e;
}

/* Job Feed */
.job-listing .article-title {
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	font-weight: bold;
}
.job-description, .job-listing small {
	color:#242424;
	text-decoration: none;
	font-family: Palatino, Palatino Linotype, Book Antiqua3, serif;
	font-weight:normal;
}
.job-listing small {
	clear:left;
	display:block;
}

.job-listing a:hover {
	text-decoration: none;
}
.job-description {
	position: relative;
	margin-top:-10px;
}
.job-description img {
	float:left;
	width:75px;
	height:auto;
	position:relative;
	margin:20px 10px 10px 0px;
}
.job-listing a {
	color:#242424;
}

/* Status Bar */
#status-bar {
	width:100%;
	background:#cecece;
	height:50px;
       margin-top: 19px; /* by radhika */ 
}
.status-wrap {
	padding:0 10px;	
}
.status-social-link a {
	width:32px;
	height:33px;
	margin:8px 3px 0 0;
}

.status-twitter a {background:url(images/layout-sprite.png) 0 0;}
.status-facebook a {background:url(images/layout-sprite.png) -32px 0;}
.status-rss a {background:url(images/layout-sprite.png) -64px 0;}
.status-linkedin a {background:url(images/layout-sprite.png) 0 -150px;margin-right: 12px;}
.status-pinterest a {background:url(images/layout-sprite.png) -32px -150px;}

.status-instagram a {
	background:url(images/layout-sprite.png) -68px -154px no-repeat;
	height:25px;
	margin-top:12px;
	width:25px;
}
.status-instagram a:hover{ background-position:-68px -187px; }

.status-twitter a:hover {background-position:0 -33px;}
.status-facebook a:hover {background-position: -32px -33px;}
.status-rss a:hover {background-position: -64px -33px;}
.status-linkedin a:hover {background-position: 0px -183px;}
.status-pinterest a:hover {background-position: -32px -183px;}
.status-subscribe {
	float:left;
	margin:0 0 0 10px;
	padding:8px 0 6px 10px;
	border-left:1px solid #8e8e8e;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	color:#8e8e8e;
	position: relative;
}
.status-subscribe label {
	text-transform: uppercase;
	font-size:19px;
	margin:0 10px 0 10px;
	position:relative;
	top:3px;
	display:inline;
}
.status-subscribe .txt-field {
	background:#fefefe;
	color:#8e8e8e;
	padding:8px 8px 6px 8px;
	width: 220px;
}
.status-subscribe .submit {
	position:absolute;
	left:215px;
	top:18px;
	width:21px;
	height:16px;
	background:url(images/layout-sprite.png) -155px 0;
	padding:0;
}
.status-subscribe .submit:hover {
	background-position: -155px -16px;
}
.status-links a {
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	color:#8e8e8e;
	font-weight:bold;
	letter-spacing: 1px;
}
.status-links a:hover {
	color:#4e4e4e;
}
.status-link a {
	display:block;
	padding:15px 10px;
}
.status-link {
	padding:0;
	height:50px;
}
.login-link {
	border-right:1px solid #8e8e8e;
}
.drop-nav-wrap {
	overflow:hidden;
	position:absolute;
	top:55px; /* 50px; by radhika*/
	right:0px;
	width:130px;
	z-index:200;
}
.submit-link .status-dropdown {	
	background: #cecece;
	text-align:right;
	-moz-border-radius-bottomright: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}
.submit-link {
	position:relative;
	padding:23px; /*0; by radhika*/
}
.submit-link:hover .hidden {
	display:block !important;
	visibility: visible !important;
}
ul.status-dropdown li {
	float:none;
	padding:0;
}
ul.status-dropdown li a {
	display:block;
	padding:5px 20px;
}
ul.status-dropdown li a#submit-an-event {
	padding:10px 20px 5px 20px;
}
ul.status-dropdown li a#submit-a-project {
	padding:5px 20px 10px 20px;
}

/* Ad Bar */
.top-ads {
	width:940px;
	float:left;
	margin:0 10px 0 0;
}
.leaderboard {
	float:left;
	margin:20px 10px 20px 0;
	position: relative;
	width:728px;
}
.top-house-ad {
	float:right;
	margin:20px 0;
	width:202px;
}
a.advertise {
	color:#8e8e8e;
	font-size:10px;
	position: absolute;
	right:0;
	top:90px;
	text-decoration: none;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
}
.ad-bar{ position:relative; }
.last-tweet {
	width:90px;
	position:absolute;
	top:20px;
	right:10px;
}
.last-tweet-link {
	width:33px;
	height:34px;
	background:url(images/twitter.png) no-repeat 0 0;
	position:absolute;
	top:0;
	right:0;
	cursor: pointer;
}

/* Footer */
#footer nav {
	margin:15px 0;
}
#footer a {
	padding:5px;
	margin:0 5px;
	color:#242424;
}
#footer li:first-child {
	margin:0 5px 0 0;
}
#footer p {
	float:right;
	margin:15px 0;
}

/*Article lists*/
.list-item {
	margin:0 10px 15px 10px; 
	float:left;
}
.article-title {
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
}

/* Small Thumb list */

.sml-list-item {
	width:130px;
	overflow: hidden;
}

.carreer-list-item{
	height: 125px;
}
.sml-article-title {
	color:#242424;
	font-size:11px;
	line-height:15px;
	margin:0;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
}
.list-item a {
	color:#242424;
	text-decoration: none;
} 
.sml-thumb {
	width:130px;
}

/* Large Thumb list */
.lg-list-item {
	width:260px;
	margin:20px 25px 0 25px;
	position:relative;
}

.lg-article-title {
	font-size:17px;
	line-height:21px;
	margin:0;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
}
.lg-article-title a {
	color:#242424;
}
.lg-article-title span {
	text-transform: uppercase;
	color:#4e4e4e;	
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
}
.lg-thumb {
	width:260px;
	margin:0 0 10px 0;
}

/* PWall / Want Side Block */
.pwall-side, .want-side {
	width:140px;
	margin:0 20px 0 0;
	float:left;
}
.want-side {
	margin:0;
}
.pwall-side .sml-list-item, .want-side .sml-list-item {
	margin:0 4px 5px 4px;
}
.pwall-side .sml-list-item:last-child, .want-side .sml-list-item:last-child {
	margin:0 4px 0 4px;
}
.h-overlay {
	position:relative;
}
.overlay {
	color:#fff;
	opacity:0;
	position:absolute;
	top:0px;
	width:100%;
	background:#4e4e4e;
	background: rgba(36,36,36,.7); /* webkit */
}
.overlay h2 {
	color: #efefef;
	padding:10px;
}


/* Side magazine */
.side-magazine {
	position: relative;
}
.side-mag-thumb {
	position:absolute;
	right:10px;
	top:0;
}
.side-mag-thumb img {
	border:1px solid #8e8e8e;
}
.side-mag-info {
	background:#efefef;
	padding:10px;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
}
.profile-title {
	text-transform: uppercase;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
}

.side-mag-info h4 {
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	font-weight: bold;
	font-size:19px;
	text-transform: uppercase;
	width:160px;
	margin:0;
}
.side-mag-info h5 {
	font-size:19px;
	margin:0 0 10px 0;
	width:160px;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
}
.side-mag-info h6 {
	font-family: Palatino, Palatino Linotype, Book Antiqua3, serif;
	font-size:19px;
	width:160px;
	margin:0;
}
a.side-mag-link {
	color:#242424;
}

/* Main Content */

/* Breadcrumbs */
.breadcrumbs .hoz-rule {
	margin:15px 0;
}
.breadcrumbs a, .breadcrumbs span {
	color: #8e8e8e;
	text-decoration: none;
	text-transform: uppercase;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	font-weight:bold;
}
.breadcrumbs a:hover {
	color:#242424;
}
.breadcrumbs span {
	color:#242424;
}
.page-rss {
	float:right;
	width:30px;
	height:31px;
	background:url(images/layout-sprite.png) -176px 0;
	position:relative;
	margin:-8px 0 0 20px;
}
.page-rss:hover {
	background-position: -206px 0;
}

/* Tags */
.tags a {
	text-transform: lowercase;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
}
.tags span {
	color:#4e4e4e;
}
.tag_list {
  padding: 0 10px 0 0;
}

/************************************************************************/
/* Lists */
/************************************************************************/
.latest {
	background: #efefef;
}
.latest .list-item {
	margin-bottom:20px;
}
.latest h3 {
	font-size:13px;
	color:#8e8e8e;
	text-align: center;
	text-transform: uppercase;
	padding:10px 0 0 0;
	margin:0;
}
.latest-article {
	margin:10px 10px 20px 10px;
}

/* Pagination */
#infscr-loading {
	clear:both;
}
.pagination {
	margin:0 10px;
	clear:both;
	padding:20px 0 0 0;
}
.pagination a, .pagination span {
	padding:8px;
	background:#cecece;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin:0 2px;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	color:#4e4e4e;
	text-transform: uppercase;
	text-decoration: none;
}
.pagination .next {
	float:none;
	text-align: left;
}
.pagination a:hover, .pagination .current  {
	background:#4e4e4e;
	color:#fff;
}

/* Archive/ Search list */
.archivelist-item {
	margin:0 0 20px 0;
}
.archivelist-img {
	margin: 0 20px 0 0;
	float:left;
}
.archivelist-details {
	margin:0 0 0 150px;
}
.entry-meta .fn, .vcard a {
	display:inline;
	margin:0;
}
.submit-cta {
	display:block;
	text-align: center;
	margin:0 10px;
	padding:10px 0;
	background: #0298d2;
	background: rgba(002,152,210,.6);
	color:#fefefe !important;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	font-weight: bold;
}
.submit-cta:hover {
	background: rgba(002,152,210,1);
	text-decoration: none;
}

.submit-btn-std {
	display:block;
	text-align: center;
	margin:0 10px;
	padding:10px 0;
	background: #0298d2;
	background: rgba(002,152,210,.6);
	color:#fefefe !important;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	font-weight: bold;
}
.submit-btn-std:hover {
	background: rgba(002,152,210,1);
	text-decoration: none;
}

/* Author Lists */
.author-bio {
	margin:0 20px;
}
.list-avatar-large {
	float:left;
	margin-bottom:20px;
}
.author-info {
	margin-left:150px;
}
.author-info h3 {
	margin-top:0;
}
.author-info h4 {
	text-transform: uppercase;
	color:#8e8e8e;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	font-size:13px;
	margin:0;
}
.page-title {
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	font-size:19px;
	color:#8e8e8e;
	text-transform: uppercase;
	font-style: normal;
}

/************************************************************************/
/* Single Post */
/************************************************************************/
.fb_iframe_widget {
	width:250px;
	display:inline !important;
	float:left;
}
.twitter-share-button {
	float:left;
	display:block;
}
.single-thumb img {
	margin:0;
}
.alignleft {
	float:left;
	margin:20px 20px 20px 0;
}
.alignleft.single-thumb {
	margin:5px 40px 20px 0;
}
.alignright {
	float:right;
	margin:20px 0 20px 20px;
}
.aligncenter, .alignnone {
	margin:20px auto;
}
.wp-caption-text {
	background: #efefef;
	padding:5px;
}
.author-img {
	width:75px;
	margin:0 20px;
	float:right;
}
.single-info {
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	width:464px;
	margin:0 0 0 20px;
	float:left;
	font-weight:bold;
}
.single-title {
	font-size:26px;
	line-height: 1em;
	margin:0 0 20px 0;
}
.single-details {
	color:#8e8e8e;
	margin:0 0 20px 0;
	font-size:100%;
}
.single-details span {
	font-family: Palatino, Palatino Linotype, Book Antiqua3, serif;
	color:#4e4e4e;
}
#content .author a {
	font-family: Palatino, Palatino Linotype, Book Antiqua3, serif;
}
.twitter-like {
	width:56px;
	height:22px;
	background:url(images/layout-sprite.png) -222px -44px;
	float:left; 
	margin:0 10px 0 0;
}
.fb-like {
	width:51px;
	height:22px;
	background:url(images/layout-sprite.png) -170px -44px; 
	float:left;
}
.single-like {
	margin:20px 0 20px 0;
}
.single-content {
	margin:0 20px;
}

/* Want /PW lists */
.r-list-item {
	float:right;
}

/* Project Wall Single */
.project-lead {
	margin:0 20px;
}
#project-images {
	margin:20px 10px;
	list-style: none;
}
.pw-img {
	width:280px;
	height:auto !important;
	margin:0 10px 10px 10px;
	float:left;
	
}
.pw-img img {
	width:280px;
}
.related .side-title strong {
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	font-weight:bold;
}
.video iframe {
	width:100%;
}

/* Comments */
input:-webkit-autofill {
	background: #4e4e4e;
}
#comments {
	clear:both;
}
.comment-notes {
	margin:0 0 10px 0;
}
.comment-form-author {
	width:300px;
	float:left;
	margin:10px 20px 10px 0;
}
.comment-form-email {
	width:300px;
	margin:22px 0 10px 320px;
}
.comment-form-comment #comment {
	width:600px;
}
#commentform label {
	margin:10px 0 5px 0;
	float:left;
}
#comment-form-url {
	width:600px;
}
#commentform .comment-form-url label, #commentform .comment-form-comment label {
	display:block;
	float:none;
}
.required {
	position:relative;
	top:5px;
}
.commentlist, .children {
	margin:20px;
	list-style: none;
}
.children {
	margin:20px 0 20px 20px;
}
.avatar {
	display:block;
	float:left;
}
.comment-meta, .comment-body, .fn {
	margin:0 0 0 70px;
}
.fn {
	display:block;
}
.fn a {
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	color:#8e8e8e;
	font-style: normal;
	font-weight: bold;
}
.comment-meta a {
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	color:#8e8e8e;
	font-style: italic;
}
.reply {
	height:40px;
}
.reply a {
	float: right;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	font-weight: bold;
	color:#8e8e8e;
	text-transform: uppercase;
}
.commentlist #respond {
	position:relative;
}
.depth-1 #respond {
	margin:0 0 20px -20px;
}
.depth-2 #respond {
	margin:0 0 20px -40px;
}
.depth-3 #respond {
	margin:0 0 20px -60px;
}
.comment em {
	margin:0 0 0 20px;
}

/************************************************************************/
/* Magazine Page */
/************************************************************************/
.mag-lead {
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
}
.mag-left {
	width:408px;
	float:left;
	margin:0 20px 0 0;
}
.mag-left h1 {
	font-size:19px;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	font-weight:bold;
	margin:0 0 20px 0;
	text-transform: uppercase;
}
.mag-right {
	height:140px;
}
.mag-right a {
	position: relative;
	top:-50px;
	margin:-50px 0 0 0;
}
.mag-right img  {
	width:150px;
	border: 1px solid #8e8e8e;
}
.mag-foot {
	clear:both;
}
.mag-foot p {
	width:410px;
	float:left;
}
.mag-foot .submit-btn {
	float:right;
	margin:10px 0;
}
.mag-title {
	margin-left:20px;
}
.mag-article-txt {
	width:280px;
	padding:0 20px 0 0;
}

/* Dropdown Forms */
.wpcf7 .thumbnail input {
	width:300px;
}

/* Contact Page */
.page-id-472 .single-content p {
	width:280px;
	float:left;
}

/************************************************************************/
/* BX Slider */
/************************************************************************/
/*
 * To change the color scheme of slider change each 
 * background property for each of the five styles below
 */
/* Home Slider */
#home-slider {
	list-style: none;
}
.bx-wrapper {
	width:620px !important;
	margin-right:0 !important;
	padding:0 !important;
}
.slider-thumb {
	width:260px;
}
.slider-panel {
	width:572px !important;
}
.slider-panel .lg-list-item {
	margin:20px 13px 20px 13px;
	overlfow:hidden;
}
.slider-wrap {
	background:#efefef;
}
.ie6 .slider-wrap, ie7 .slider-wrap, ie8 .slider-wrap {
	height:273px;
	overflow: hidden;
}

/*next button*/
.bx-next {
	position:absolute;
	top:0px;
	right:0px;
	z-index:999;
	width: 25px;
	height: 100%;
	text-indent: -999999px;
	background: #efefef url(images/arrow-r.png) no-repeat center;
}

/*previous button*/
.bx-prev {
	position:absolute;
	top:0px;
	left:-2px;
	z-index:999;
	width: 25px;
	height: 100%;
	text-indent: -999999px;
	background: #efefef url(images/arrow-l.png) no-repeat center;
}

.cat-overlay {
	position:absolute;
	top:10px;
	right:10px;
	font-family: "Helvetica", "Lucida Sans Unicode", sans-serif;
	font-weight:bold;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.cat-overlay a {
	color:#242424;
	padding:1px 5px;
	background:#efefef;
	background:rgba(239,239,239,.7);
}
.cat-overlay a:hover {
	background:#4e4e4e;
	color:#fefefe;
}

/*
 * End color scheme styles
 */


/*next/prev button hover state*/
.bx-next:hover {
	background: #cecece url(images/arrow-rh.png) no-repeat center;
}
.bx-prev:hover {
	background: #cecece url(images/arrow-lh.png) no-repeat center;
}
.bx-window {
	width:572px !important;
	left:23px;
}
.bx-window ul {
	margin:0!important;
}

/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1104;
	display: none;
}

#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url('images/fancybox.png');
}

#fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1100;
	display: none;
}

#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	z-index: 1101;
	outline: none;
	display: none;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
}

#fancybox-content {
	width: 0;
	height: 0;
	padding: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1102;
	border: 0px solid #fff;
}

#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1101;
}

#fancybox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	background: transparent url('images/fancybox.png') -40px 0px;
	cursor: pointer;
	z-index: 1103;
	display: none;
}

#fancybox-error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 14px;
	margin: 0;
}

#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
}

#fancybox-frame {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#fancybox-left, #fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background: transparent url('images/blank.gif');
	z-index: 1102;
	display: none;
}

#fancybox-left {
	left: 0px;
}

#fancybox-right {
	right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}

#fancybox-left-ico {
	background-image: url('images/fancybox.png');
	background-position: -40px -30px;
}

#fancybox-right-ico {
	background-image: url('images/fancybox.png');
	background-position: -40px -60px;
}

#fancybox-left:hover, #fancybox-right:hover {
	visibility: visible; /* IE6 */
}

#fancybox-left:hover span {
	left: 20px;
}

#fancybox-right:hover span {
	left: auto;
	right: 20px;
}

.fancybox-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	width: 20px;
	height: 20px;
	z-index: 1001;
}

#fancybox-bg-n {
	top: -20px;
	left: 0;
	width: 100%;
	background-image: url('images/fancybox-x.png');
}

#fancybox-bg-ne {
	top: -20px;
	right: -20px;
	background-image: url('images/fancybox.png');
	background-position: -40px -162px;
}

#fancybox-bg-e {
	top: 0;
	right: -20px;
	height: 100%;
	background-image: url('images/fancybox-y.png');
	background-position: -20px 0px;
}

#fancybox-bg-se {
	bottom: -20px;
	right: -20px;
	background-image: url('images/fancybox.png');
	background-position: -40px -182px; 
}

#fancybox-bg-s {
	bottom: -20px;
	left: 0;
	width: 100%;
	background-image: url('images/fancybox-x.png');
	background-position: 0px -20px;
}

#fancybox-bg-sw {
	bottom: -20px;
	left: -20px;
	background-image: url('images/fancybox.png');
	background-position: -40px -142px;
}

#fancybox-bg-w {
	top: 0;
	left: -20px;
	height: 100%;
	background-image: url('images/fancybox-y.png');
}

#fancybox-bg-nw {
	top: -20px;
	left: -20px;
	background-image: url('images/fancybox.png');
	background-position: -40px -122px;
}

#fancybox-title {
	font-family: Helvetica;
	font-size: 12px;
	z-index: 1102;
}

.fancybox-title-inside {
	padding-bottom: 10px;
	text-align: center;
	color: #333;
	background: #fff;
	position: relative;
}

.fancybox-title-outside {
	padding-top: 10px;
	color: #fff;
}

.fancybox-title-over {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
	text-align: left;
}

#fancybox-title-over {
	padding: 10px;
	background-image: url(images/fancy_title_over.png);
	display: block;
}

.fancybox-title-float {
	position: absolute;
	left: 0;
	bottom: -20px;
	height: 32px;
}

#fancybox-title-float-wrap {
	border: none;
	border-collapse: collapse;
	width: auto;
}

#fancybox-title-float-wrap td {
	border: none;
	white-space: nowrap;
}

#fancybox-title-float-left {
	padding: 0 0 0 15px;
	background: url('images/fancybox.png') -40px -90px no-repeat;
}

#fancybox-title-float-main {
	color: #FFF;
	line-height: 29px;
	font-weight: bold;
	padding: 0 0 3px 0;
	background: url('images/fancybox-x.png') 0px -40px;
}

#fancybox-title-float-right {
	padding: 0 0 0 15px;
	background: url('images/fancybox.png') -55px -90px no-repeat;
}

/* IE6 */

.fancybox-ie6 #fancybox-close { 
	background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://localhost/desktop/wp/wp-content/themes/desktop2011/images/fancy_close.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancy_nav_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancy_nav_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
.fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_main.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame {
	height: expression(this.parentNode.clientHeight + "px");
}

#fancybox-loading.fancybox-ie6 {
	position: absolute; margin-top: 0;
	top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px');
}

#fancybox-loading.fancybox-ie6 div	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancy_loading.png', sizingMethod='scale'); }

/* IE6, IE7, IE8 */

.fancybox-ie .fancybox-bg { background: transparent !important; }

.fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }



/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}

/*Article lists*/
.list-item-become {
	float:left;
	
}

.list-item-become a {
	color:#242424;
	text-decoration: none;
} 


.lg-list-item-become {
	margin: 15px 10px 0 10px;
	width: 620px;
}

.lg-list-item-become a img {
	float: left;
	width: 100px;
	margin-right: 10px;
}

.pin-it-button {
	float: left;
	width: 107px;
}

div.single-like iframe {
	float: left;
}

div.weekly-news-ticker {
	float:right;width:415px;height: 35px;  white-space: nowrap;overflow:hidden
}

div.weekly-news-ticker ul, div.weekly-news-ticker li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.link-ebook{
	border-radius:5px;
    background:#dce5ec;
    color:#e77c5b !important;
    padding:10px 15px;
    position:absolute;
    font-weight:600;
    -webkit-animation-name:tada;
    animation-name:tada;
    -webkit-animation-duration:1s;
    animation-duration:1s;
    right:190px;
    top:45px;
}
.link-ebook:hover{ text-decoration:none; }
@-webkit-keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}
	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}
	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}