@charset "UTF-8";
.master_container {
	background-image: url(../en/img/container_top.png);
	background-repeat: no-repeat;
	background-position: center top;
	height: 480px;
	width: 789px;
	padding-top: 0px;
}
.headercontainer {
	margin: 0px;
	padding: 15px;
}
.bads {
	margin: 0px;
	padding: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
}

.footertext {
	font-family: "Trebuchet MS";
	font-size: 9px;
	color: #CCCCCC;
	text-align: right;
	float: right;
	padding-top: -3px;
	width: 500px;
	padding-right: 5px;
	padding-bottom: 0px;
	font-weight: normal;
}



/* SpryTabbedPanels.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */

/* This is the selector for the main TabbedPanels container. For our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * TabbedPanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * If you want to constrain the width of the TabbedPanels widget, set a
 * width on the TabbedPanels container. By default, the TabbedPanels widget
 * expands horizontally to fill up available space.
 *
 * The name of the class ("TabbedPanels") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabbedPanels container.
 */
.TabbedPanels {
	float: left;
	clear: none; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
	width: 789px;
	margin-top: 12px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-image: url(../en/img/container_bg_tile.gif);
	background-repeat: repeat-y;
	padding: 0px;
}
.starthere {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #000000;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.starthere a {
	color: #000000;
	text-decoration: none;
}

.frequenttext {
	font-family: Tahoma;
	font-size: 10px;
	color: #e03d4f;
	list-style-type: none;
	padding: 0px;
	margin-top: 6px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-weight: normal;
	line-height: 14px;
}


.frequentcontainer {
	width: 210px;
	float: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 90px;
	text-align: right;
	margin: 0px;
}


/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
.TabbedPanelsTabGroup {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 30px;
}

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 0.6em;
	color: #999999;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-image: url(../images/tab_unselected.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	letter-spacing: 0.11em;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
}

/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
.TabbedPanelsTabSelected {
	background-image: url(../images/tabs_no1.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	color: #000066;
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	clear: both;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 23px;
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	width: 752px;
	height: 283px;
}


/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
}

.TabbedPanelsContentCopy {
	padding: 4px;
	background-image: url(images/01rearpanel.jpg);
}
.mainimage {
	float: left;
	margin-top: 8px;
	margin-left: 8px;
}

.TabbedPanelsContentPattern {
	background-image: url(../en/img/bgPreviewPanel.jpg);
	width: 752px;
	height: 283px;
	margin: 0px;
	padding: 0px;
}
.TabbedPanelsTabHover {
	position: relative;
	top: 1px;
	float: left;
	padding: 4px 10px;
	margin: 0px 1px 0px 0px;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 0.6em;
	color: #000000;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-repeat: no-repeat;
	background-position: left top;
	letter-spacing: 0.11em;
}
.subimage1 {
	float: left;
	margin-top: 11px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 21px;
}
.TabbedPanelsContentTop4 {
	background-image: url(../images/blan3k.jpg);
	width: 752px;
	height: 283px;
}
.TabbedPanelsContentRecent {
	width: 752px;
	height: 283px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000033;
	text-indent: 12px;
	background-image: url(../en/img/bgRegularPanel.jpg);
	padding-bottom: 0px;
}
.TabbedPanelsContentViewall {
	width: 752px;
	height: 283px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000033;
	text-indent: 12px;
	background-image: url(../images/blan3k.jpg);
}
.cirrusColumns {
	width: 405px;
	float: left;
	height: 254px;
}
.cirrusColumns2 {
	width: 340px;
	float: left;
	height: 254px;
}
.viewall {
	float: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #2C3A56;
	padding-right: 31px;
	width: 120px;
	margin-top: 7px;
}
.strapline {
	height: 12px;
	width: 300px;
	float: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #8393D1;
	text-align: right;
	margin-right: 4px;
	padding-top: 5px;
	margin-bottom: 0px;
	margin-top: 0px;
	padding-bottom: 0px;
}

.smallpreview {
	float: left;
	height: 127px;
	width: 170px;
	margin: 0px;
	padding: 0px;
}
.daysago {
	height: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #999999; /* show to Mozilla/Safari/Opera */
	_padding-top: 0px; /* show to IE */
	float: left;
	margin: 0px;
	width: 85px;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
}
.page_container {
	margin: auto;
	width: 790px;
	top: 0px;
}

.preview01 {
	margin-left: 14px;
	margin-top: 12px;
	float: left;
}
.comments {
	height: 10px;
	width: 25px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #CC0000;
	padding-right: 27px;
	float: right;
	padding-top: 4px; /* show to Mozilla/Safari/Opera */
	_padding-top: 0px; /* show to IE */
}
.previewOffset {
	margin-left: 14px;
	margin-top: 7px;
}
.largepreview {
	float: left;
	height: 252px;
	width: 402px;
	background-image: url(../images/preview_wyatt.gif);
	background-repeat: no-repeat;
	background-position: 11px 11px;
}
.largepreview_positioner {
	margin-left: 11px;
	margin-top: 11px;
}


.preview_detailbox {
	float: right;
	height: 42px;
	width: 260px;
	filter: Alpha(Opacity=70);
	background-color: #FFFFFF;
	opacity: 0.7;
	padding-right: 0px;
	margin-top: 190px;
	margin-right: 18px;
}
.latestimage {
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	border-left: 1px solid #000000;
	text-align: left;
	margin: 0px;
	clear: left;
	margin-left: 5px;
	margin-right: 5px;
}
	.latestimage:hover {
	border-top: 1px solid #FF3300;
	border-right: 1px solid #FF3300;
	border-bottom: 1px solid #FF3300;
	border-left: 1px solid #FF3300;
}
.latest_thumbs {
	border: 1px solid #2F426A;
}
.devinfo {
	font-family: Calibri;
	font-size: 14px;
	color: #666666;
	float: left;
	margin-top: 30px;
}

.preview_detail_name {
	width: 140px;
	height: 20px;
	float: left;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	color: #000000;
	font-weight: bold;
	margin-top: 10px;
	margin-left: 5px;
	font-size: 18px;
}
.preview_detail_stats {
	width: 80px;
	height: 30px;
	float: right;
	margin-top: 7px;
	margin-right: 5px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #CC3300;
	font-size: 12px;
	font-style: italic;
	padding-left: 14px;
}
.viewall a {
	text-decoration: none;
}
.viewall  a:hover {
	color: #FF0000;
}
.recentimages  {
	float: left;
	padding-left: 30px;
}
.recentimages a {
	text-decoration: none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;

}
.RECENTviewall a {
	text-decoration: none;
}
.RECENTviewall a:hover {
	color: #FF0000;
}
.RECENTviewall {
	float: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #2C3A56;
	padding-right: 31px;
	width: 170px;
	margin-top: 23px;
}
.versionlabel {
	margin-left: 15px;
	width: 300px;
	margin-top: 260px;
	padding-top: 0px;
	height: 20px;
}
.r_version {
	font-family: Arial, Helvetica, sans-serif;
}
body {
	background-color: #343434;
	background-image: url(../en/img/background70.gif);
}



.popular_introtext {
	padding-top: 20px;
	padding-bottom: 20px;
}
.POPULARviewall {
	float: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #2C3A56;
	padding-right: 31px;
	width: 170px;
	margin-top: 23px;
}
.POPULARviewall a {
	text-decoration: none;
}
.POPULARviewall a:hover {
	color: #FF0000;
}
.TabbedPanelsContentPopular {
	width: 752px;
	height: 283px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000033;
	text-indent: 12px;
	background-image: url(../en/img/bgRegularPanel.jpg);
	padding-bottom: 0px;
}
.underlineads {
	float: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #2C3A56;
	padding-right: 180px;
	width: 500px;
	margin-top: 26px;
}
.adsensecontainer {
	float: right;
	width: 470px;
	margin-right: 8px;
	margin-bottom: 0px;
	margin-left: 5px;
	text-align: left;
	padding-top: 14px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
}
.outerheader {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	text-align: right;
	font-size: 9px;
	padding-top: 25px;
	padding-right: 6px;
	padding-bottom: 30px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: -50px;
	margin-left: 0px;
}
.fashion_extend {
	padding-top: 20px;
	padding-bottom: 20px;
	background-repeat: no-repeat;
	background-position: top;
	background-image: url(../en/img/extended_ender.jpg);
}
.frequenttext a {
	list-style-type: none;
	padding: 0px;
	font-weight: normal;
	margin: 0px;
	text-decoration: none;
	color: #e03d4f;
}
.frequenttext a:hover {
	list-style-type: none;
	padding: 0px;
	font-weight: normal;
	margin: 0px;
	text-decoration: none;
	color: #00CCFF;
}
.TabbedPanelsContentCurrentProjects {
	width: 752px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000033;
	text-indent: 12px;
	background-image: url(../en/img/bgXL.jpg);
	background-repeat: no-repeat;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	height: 567px;
	padding: 0px;
}
.whoiskeira {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-indent: 0px;
	margin-left: 40px;
	margin-right: 40px;
	text-align: justify;
	padding: 0px;
	margin-top: 0px;
}

.ProjectContainer {
	height: 91px;
	padding: 0px;
	margin: 0px;
	width: 100%;
}

.CurrentProjectThumbnail {
	margin-left: 20px;
	float: left;
	width: 180px;
}
.CurrentProjectText {
	float: left;
	text-indent: 0px;
	text-align: left;
	padding: 0px;
}
.CurrentProjectsTitle {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	font-style: italic;
	font-weight: bolder;
	color: #666666;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 12px;
	text-indent: 0px;
}
.projecthumb {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 12px;
	padding-left: 30px;
}

.CurrentProjectsText {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	color: #000000;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 12px;
	text-indent: 0px;
}



.TabbedPanelsContentPastProjects {
	width: 752px;
	height: 283px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000033;
	text-indent: 12px;
	background-image: url(../en/img/bgLargePanel.jpg);
	padding-bottom: 0px;
	margin-left: 7px;
}
.footertext a {
	color: #CCCCCC;
	text-decoration: none;
}
.footertext a:hover {
	color: #00CCFF;
	text-decoration: none;
}
.outerheader a {
	color: #CCCCCC;
	text-decoration: none;
}
.outerheader a:hover {
	color: #00CCFF;
	text-decoration: none;
}
.footer_cap {
	float: left;
	height: 15px;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
.lower_recess_text {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-style: italic;
	font-weight: bold;
	margin-left: -300px;
	color: #999999;
	padding-left: 0px;
	margin-top: 12px;
}
.fashioncontainer_text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	margin-left: 35px;
}
.fashion_introtext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	margin-left: 12px;
	margin-top: 0px;
	padding: 0px;
	margin-bottom: 20px;
}
.PreviewThumbsLower {
	margin-left: 14px;
	margin-top: 8px;
	float: left;
}
.TabbedPanelsContentFashion {
	width: 752px;
	height: 283px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000033;
	text-indent: 12px;
	background-image: url(../en/img/bgLargePanel.jpg);
	padding-bottom: 0px;
}
.starthere a:hover {
	color: #00CCFF;
	text-decoration: none;
}
.PreviewThumbsUpper {
	margin-left: 14px;
	margin-top: 11px;
	float: left;
}
.TabbedPanelsContentVitals {
	width: 752px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000033;
	text-indent: 12px;
	background-image: url(../en/img/bgLargePanel.jpg);
	background-repeat: no-repeat;
	height: 286px;
	padding: 0px;
	margin: 0px;
}
.tablegal {
	margin-right: 7px;
}

.restrainer {
	width: 789px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.TabbedPanelsContentGirls {
	width: 752px;
	height: 283px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000033;
	text-indent: 12px;
	background-image: url(../en/img/bgLargePanel.jpg);
	padding-bottom: 0px;
}
.TabbedPanelsContentCurrentProjectsExt {
	width: 752px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000033;
	text-indent: 12px;
	background-image: url(../en/img/bg_3XL.jpg);
	background-repeat: no-repeat;
	padding: 0px;
	margin: 0px;
}
.contactform {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	padding-left: 50px;
	text-indent: 0px;
}
.formfield {
	border: 1px dashed #B2BDEA;
}

.contactbutton {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-indent: 0px;
	border: 1px solid #AAB5E2;
}
.articles {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-left: 0px;
	margin-top: 4px;
	float: left;
	padding-top: 4px;
	padding-left: 0px;
	color: #666666;
}
.articles a {
	color: #3C3C64;
}
.articles a:hover {
	color: #990000;
}
.articles_header {
	float: left;
	clear: none;
	margin-top: 12px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 50px;
	background-image: url(../en/img/container_bg_tile.gif);
	background-repeat: repeat-y;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 50px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	font-style: italic;
	font-weight: bold;
	color: #666666;
}
.article_body {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	margin-left: 100px;
	margin-right: 120px;
	text-align: justify;
	line-height: 20px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.articles_subheader {
	float: left;
	clear: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-image: url(../en/img/container_bg_tile.gif);
	background-repeat: repeat-y;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	font-style: italic;
	font-weight: normal;
	color: #999999;
}
.underlineads_MISSING {
	float: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #2C3A56;
	padding-right: 180px;
	width: 500px;
	margin-top: 26px;
	margin-bottom: 3px;
}
.article_thumb_hspace {
	border-right-width: 30px;
	border-right-style: solid;
	border-top-color: #FAFAF8;
	border-right-color: #FAFAF8;
	border-bottom-color: #FAFAF8;
	border-left-color: #FAFAF8;
}
.articles_NEW {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #666666;
	background-color: #FFFF99;
}

