/*
Theme Name: The Stylish City
Theme URI: http://www.thestylishcity.com
Author: Bindra Infotech
Author URI: http://www.bindrainfotech.com
Description: 
Version: 
*/


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;
}
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;text-decoration:none }
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; }
input, select, textarea {border:1px solid #D6D6D6;color:#000000;}

/*
 *
 * Base Typography 
 *
 */
body { font:13px sans-serif; *font-size:small;  }
select, input, textarea, button { font:99% sans-serif; }
pre, code, kbd, samp { font-family: monospace, sans-serif; }

/*
 *
 * Base Styles 
 *
 */
body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #646464; 
  font:13px arial;
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}
/* 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: bold; }
/* 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: #607890; }
a:hover { color: #036; }
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: #f0dddd; }
/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
/*::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }*/  
/*::selection { background:#FF5E99; color:#fff; text-shadow: none; } */  
/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 
/* 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;}

/*
 *
 * Nonsemantic Base Styles 
 *
 */
/* 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 {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 
.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }

/*
 *
 * 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; } */
}

/*
 *
 * Base Print Styles, inline to save the HTTP request
 *
 */
@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; }
}

/*
 *
 * Structure
 *
 */
 #header {position:relative;width:1000px;height:108px;margin:0 auto;text-align:center; background:#FFFFFF;}
.sign_in {position:absolute;right:0;bottom:0;font:bold 12px georgia;color:#000;}
.sign_in a:link, .sign_in a:visited {font:11px verdana;color:#000;text-decoration:none;}
.sign_in a:hover, .sign_in a:active {font:11px verdana;color:#5F1649;text-decoration:underline;}


#content {width:670px;}


.center_title {text-align:center;padding:35px 0 30px 0;font:bold 25px arial;color:#eC2327;}

.cat_title {text-align:center;padding:35px 0 30px 0;font:bold 17px arial;color:#eC2327;}
.date_title {text-align:left;padding:0px 0 0px 0;font:12px arial;}
.center_title1 {text-align:center;padding:0px 0 0px 0;font:bold 25px arial;color:#eC2327;}
.center_sub_title {text-align:left;font:bold 16px arial;color:#eC2327;}
.center_title_cont {text-align:center;padding:50px 0 30px 0;font:bold 25px arial;color:#eC2327;}
.center_title a:link, .center_title a:visited {font:bold 20px arial !important;color:#eC2327 !important;text-decoration:none !important;}
.center_title a:hover, .center_title a:active {font:bold 20px arial !important;color:#5F1649 !important;text-decoration:none !important;}
.cat_title a:link, .cat_title a:visited {font:bold 17px arial !important;color:#eC2327 !important;text-decoration:none !important;}
.cat_title a:hover, .cat_title a:active {font:bold 17px arial !important;color:#5F1649 !important;text-decoration:none !important;}

.line {width:493px;height:16px;margin:0 auto;border-bottom:1px solid #eC2327;font:11px arial;color:#eC2327;}
.line2 {height:16px;margin:0 auto 20px;border-bottom:1px solid #eC2327;font:11px arial;color:#eC2327;}
.line3 {height:8px;margin:0 auto 8px;border-bottom:1px solid #DEDEDE;font:11px arial;color:#DEDEDE;}
.line4 {height:8px;margin:0 auto 8px;border-bottom:1px double #DEDEDE;font:11px arial;color:#DEDEDE;}
.happened {float:left;}
.date {float:right;}

.inner_padding {padding-left:20px;text-align:justify; background:#FFFFFF}
.inner_padding a:link,.inner_padding a:visited {font:12px/12px arial;color:#4D4D4D;text-decoration:none;}
.inner_padding a:hover, .inner_padding a:active {font:12px/12px arial;color:#eC2327;text-decoration:underline;}

.text_box a:link, .text_box a:visited, .cat_page a:link,.cat_page a:visited {font:12px/12px arial;color:#eC2327;text-decoration:underline;}
.text_box a:hover, .text_box a:active, .cat_page a:hover, .cat_page a:active {font:12px/12px arial;color:#4D4D4D;text-decoration:underline;}
.text_box1 a:link, .text_box1 a:visited, .cat_page a:link,.cat_page a:visited {font:12px/12px arial;color:#eC2327;text-decoration:underline;}
.text_box1 a:hover, .text_box1 a:active, .cat_page a:hover, .cat_page a:active {font:12px/12px arial;color:#4D4D4D;text-decoration:underline;}

#page {
	display: block;
}
#primary {
	float: left;
	margin: 0 -240px 0 0;
	width: 100%;
}

#main_content 
{
background:#FFFFFF;
}
#main .widget-area {
	float: right;
	overflow: hidden;
	width: 220px;
}
#colophon {
	clear: both;
	display: block;
	width: 100%;
	margin:0px;
	padding:0px;
}



/* Alignment */
.alignleft {
	display: inline;
	float: left;
}
.alignright {
	display: inline;
	float: right;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/*
 *
 * Header
 *
 */
#site-title {
	font-size: 2em;
	font-weight: bold;
	margin: .67em 0;
}
#site-description {
	font-size: 1em;
	font-weight: normal;
	margin: 0 0 1em;
}




/*
 *
 * Content
 *
 */
#content nav {
	display: block;
	overflow: hidden;
}
#content nav .nav-previous {
	float: left;
	width: 50%;
}
#content nav .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
#content #nav-above {
	display: none;
}
.paged #content #nav-above,
.single #content #nav-above {
	display: block;
}
#nav-below {
	margin: 1em 0 0;
}
.page-link {
	margin: 0 0 1em;
}
.filters td {
height:0px;
}

.ui-datepicker-trigger img
{
vertical-align:baseline;
}

/*
 *
 * Images
 *
 */
/*
Resize images to fit the main content area.
- Applies only to images uploaded via WordPress by targeting size-* classes.
- Other images will be left alone. Use "size-auto" class to apply to other images.
*/
img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
.widget-area img {
	max-width: 100%; /* When images are too wide for containing element, force them to fit. */
	height: auto; /* Override height to match resized width for correct aspect ratio. */
}
img.alignleft {
	margin-right: 3px;
}
img.alignright {
	margin-left: 3px;
}
.wp-caption {
	padding: .5em;
	text-align: center;
}
.wp-caption img {
	margin: .25em;
}
.wp-caption .wp-caption-text {
	margin: .5em;
}

/* Forms - Class for labelling required form items */
.required {
	color: #cc0033;
}


/*
 *
 * Comments
 *
 */
article.comment {
	display: block;
}
#respond input[type=text] {
	float: left;
	margin: 0 1em 0 0;
	width: 60%;
}
#respond .comment-form-comment label {
	display: none;
}
#respond textarea {
	margin: 0 1em 1em 0;
	float: left;
	width: 80%;
}
#respond .form-allowed-tags {
	clear: both;
	width: 80%;
}
#respond .form-allowed-tags code {
	display: block;
}



/*
 *
 * Footer
 *
 */
#colophon {
	padding: 0 0 0;
}

/* Style for Usual tabs */
/* Style for Usual tabs */

#usual1 {
 height:61px;
overflow:hidden;
}
.usual {
  background:#000000;
  color:#111;
  padding:0px 0px;
  width:1000px;
  *height:20px;
  *overflow:hidden;
}
.usual ul {padding-left:25px;padding-right:25px; margin: 0px;  overflow:hidden;}

.usual li { list-style:none; float:left;  }
.usual ul a {
  display:block;
  padding:0px 25px;
  text-decoration:none!important;
  font:16px arial;
  letter-spacing:2px;
  margin-top:1px;
  color:#FFF;
  background:#000000;
    height:30px;
	line-height:26px;

}

.usual ul a {
    background: none repeat scroll 0 0 #000000;
    color: #FFFFFF;
    display: block;
    font: 16px/26px arial;
    height: 30px;
    letter-spacing: 2px;
    margin-top: 1px;
    padding: 0 12px;
    text-decoration: none !important;
}

.usual ul {
    margin: 0;
    overflow: hidden;
    padding-left: 12px;
    padding-right: 12px;
}


.usual ul a:hover {
  color:#FFF;
  background:#000;
  }
.usual ul a.selected {
  color:#fff;
  background:#000;
  cursor:default;
    height:30px;
  }
  
  
.usual div {
  padding:5px 0px 5px 0px;
  padding-left:20px;padding-right:0px;
  padding-top:5px;
  *margin-top:0px;
  text-align:left;
  clear:both;
  height:20px;
  overflow:hidden;
  background:#f2f2f2;
  font:10pt Arial;
    width:980px;
	color:#000000;
	font-weight:bold;

}

#navigation {
				font-family: Arial, sans-serif;
				text-transform: uppercase;
				list-style-type: none;
				font-size: 17px;
				height: 32px;
				list-style: none;
				padding-left:0px;
				letter-spacing:1px;
							
				
			}
			#navigation ul {
							list-style: none;margin: 0px; padding: 0 0 0 0px;
			}
			#navigation li {
				float: left;
				position: relative;
				padding-top:0px;
				padding-bottom:0px;
				margin: 0;	
			}
			#navigation li:hover
			{
			background:#f0512a;
			color:#FFFFFF;
			}
			#navigation li a {
				text-decoration: none;
				display: block;
				padding-top:4px;
				padding-right:28px;
				padding-left:29px;
				color: #ffffff;
				height:32px;
			}
			#navigation li a:hover, #navigation li a:active, #navigation li.active a {
background:#f0512a;
color:#FFFFFF;
			}
			

#menu_bar{
width:1000px;
height:32px;
background: #000000;
border-bottom: solid 3px #f0512a;
}











#header1 .Menu {
    position: relative;
    text-align: center;
	background: #000000;
	border-bottom: solid 3px #f0512a;
    width: 1000px;
	height: 32px;
	font-size:12px;
}

#header1 .Menu ul {
							list-style: none;margin: 0px; padding: 0 0 0 0px;
			}

#header1 .Menu LI {
    display: inline;
    padding: 0 3px;
}
#header1 .Menu LI A {
    color: #FFFEFE;
    line-height: 28px;
	font-family:arial;
	font-size: 17px;
    padding-right:28px;
				padding-left:28px;
height:32px;
				padding-top:5px; padding-bottom:8px;
}
#header1 .Menu LI A:hover, #header1 .Menu LI A.active {
    background: -moz-linear-gradient(center top , #F91921 0%, #EA1B1E 30%, #f0512a 100%) repeat scroll 0 0 transparent;
    color: #FFFFFF;
    text-shadow: 0 1px 0 #AC080C;
}
#header1 .Menu LI DIV {
  
   background-color:#FFFFFF ;filter:alpha(opacity=0);opacity:.9;
    border-top: 2px solid #f0512a;
    box-shadow: 0 1px 3px #666666;
    color: #000000;
    display: none;
    left: 0;
    opacity: 0.95;
    padding-left: 10px;
    position: absolute;
    text-align: left;
    top: 30px;
	width:990px;
    z-index: 99999999;
}
#header1 .Menu LI DIV A {
    color: #000000;
    line-height: normal;
    padding: 0;
		font-size:12px;
}
#header1 .Menu LI DIV A:hover, #header1 .Menu LI DIV DL DD.active A {
    background: none repeat scroll 0 0 transparent;
    color: #EA1D23;
    text-shadow: none;
					height:32px;

}
#header1 .Menu LI DIV DL {
    display: inline;
    float: left;
    padding: 20px;
    width: 200px;

}
#header1 .Menu LI DIV DL DT {
    color: #EA1D23;
    font-family: Georgia,"Times New Roman",Times,serif;
    font-size: 18px;
    padding-bottom: 5px;
		padding-left:5px;
}



#header1 .Menu LI DIV DL DD {
    border-top: 1px dotted #666666;
    margin-top: 5px;
    overflow: hidden;
    padding-top: 5px;
	padding-left:5px;
    width: 100%;
}
#header1 .Menu LI DIV DL.featured {
    width: 460px;
}
#header1 .Menu LI DIV DL.featured DD {
    padding-top: 20px;
}
#header1 .Menu LI DIV DL.featured .thumb {
    border-width: 2px;
    display: inline;
    float: left;
    height: 117px;
    margin-right: 10px;
    width: 145px;
}

#header1 .Menu LI DIV DL.featured .thumb img {
    border-width: 2px;
    height: 117px;
    width: 145px;
}
#header1 .Menu LI DIV DL.featured .a-title {
    font-family: Georgia,"Times New Roman",Times,serif;
    font-size: 18px;
}
#header1 .Menu LI DIV DL.featured .a-excerpt {
    font-size: 11px;
    line-height: 17px;
    margin-top: 6px;
}
#header1 .Menu LI.hover {
}
#header1 .Menu LI.hover A {
    background: -moz-linear-gradient(center top , #F91921 0%, #EA1B1E 30%, #BD0B11 100%) repeat scroll 0 0 transparent;
    text-shadow: 0 1px 0 #AC080C;
}
#header1 .Menu LI.hover DIV {
    display: block;
}
#header1 .Menu LI.hover DIV A {
    background: none repeat scroll 0 0 transparent;
    text-shadow: none;
}













.usual div a{ color:#000000; text-decoration:none;font-weight:bold;padding-right:0px; }

.mosaic {font-weight:normal}
.mosaic-txt {color:#6A6A6A;text-decoration:none;font-size:11px;font-family:arial;padding:2px; display:block;}


#category-post p {font-family:arial;font-size:11px;line-height:12px;color:#6A6A6A}

.category-post h3,.post-summary h3 {
font-size:21px;
font-family:arial;
margin-top:0px;
margin-bottom:10px;
color:#000000;
font-weight:400;
line-height:1.1em;
letter-spacing:0.03em;
}

.category-post h3 a {
font-size:20px;
text-decoration:none;
font-family:arial;
text-align:left;
color:#000000;
font-weight:400;
line-height:1.1em;
letter-spacing:0.03em;
}

.category-post h444 {
font-size:13px;
line-height:1.1em;
letter-spacing:0.03em;
font-weight:400;
margin-bottom:8px;
}

.full-post h3 {
font-size:17px;
font-weight:700;
padding:15px 0;
}

.category-post {
display:block;
min-height:235px;
height:1%;

}

.category-post img.post-img {
float:right;
margin:0 0 0 10px;
}

.category-post p {
margin-bottom:10px;
line-height:20px;
}

.category-post a.more-link:hover {
border:none;
}

#sales  td{
height:0px;
line-height:18px;
padding:0px;
}
#sales  th{
height:60px;
line-height:18px;
padding:5px;
}
#sales  td .sales{
height:50px;
line-height:18px;
padding:5px;
}

#content {background:#FFFFFF;}
#content p {padding:0 0 15px 0;}

#sales thead tr .filters th{
height:0px;

}

.utwtags a:link, .utwtags a:visited {text-transform:uppercase;font-size:11px;font-weight:bold;;color: #a73013;}

.invite_links_first {padding-bottom:7px;padding-top:3px;padding-left:10px;}
.invite_links {padding:7px 0;border-top:1px dashed #D6D6D6; padding-bottom:7px;padding-top:3px;padding-left:10px;}

footer a {color:#f6f6f6;}
footer a:hover {color:#f6f6f6;}

#elle .wp-polls {font-size:10px;}
#elle input  {font-size:10px;}
#elle a, #elle a:active, #elle a:visited { color: #cccccc; }


#twitter_multi_div {
height:100px;width:170px;background:url(http://thevoguecity.com/wp-content/themes/thevoguecity/images/twitter-bg.jpg) no-repeat 0 0;}
ul#twitter_multi_update_list {list-style-type:none; padding-left:0px;margin-left:5px;margin-right:5px;margin-top:0px;font-family:arial;font-size:11px;border-bottom:1px dashed #CCCCCC;color:#646464;}
#twitter_multi_update_list li{border-bottom:1px dashed #CCCCCC;padding-top:8px;padding-bottom:8px;text-align:center}
#twitter_multi_update_list a {color: #527299;font-size: 11px;text-decoration:none}
#twitter_multi_update_list #twitter-link a {color:#646464;margin-right:20px; text-decoration:none;font-size:10px;}


.twitterwidget-title {
display:none;
}
.widget_twitter ul li {border-bottom:1px dashed #CCCCCC;padding-top:8px;padding-bottom:8px;text-align:center}
.widget_twitter a {color: #527299;font-size: 11px;text-decoration:none}
.widget_twitter .entry-content a {color: #A73013;font-size: 11px;text-decoration:none}
.widget_twitter .entry-meta a {color: #527299;font-size: 11px;text-decoration:none}
.widget_twitter ul {list-style-type:none; padding-left:0px;margin-left:5px;margin-right:5px;margin-top:0px;font-family:arial;font-size:11px;border-bottom:1px dashed #CCCCCC;color:#646464;}

.widget_twitter .time-meta {display: block;}
.form-allowed-tags {
font-size:10px;
}

#comments #respond h3#reply-title {
font-size:15px;
font-variant:small-caps;
padding-top:20px;
}

.comment-form-comment
{
padding: 0 0;
}
.social-sidebar {
    background: none repeat scroll 0 0 #F8F8F8;
    border-radius: 1em 0 0 1em;
    left: 30px;
    padding: 7px 15px 15px;
    position: fixed;
    width: 50px;
}

@media screen and (max-width: 1152px){
.social-sidebar {
  display:none;
}
}

@font-face {

    font-family: arial-black;

    src: local('Arial Black');

}

@font-face {

    font-family: helvetica-neu;

    src: local(HelveticaNeueLTStd-Lt_0), url('http://thestylishcity.com/wp-content/themes/thestylishcity/fonts/HelveticaNeueLTStd-Lt_0.otf');

}