@CHARSET "UTF-8";

/** 
 * Interaction Element Styles
 * 
 * Buttons, actions, wizard and other user interaction elements.
 *
 * Buttons
 * Content Actions
 * Other Interaction Elements
 * 
 * @version 1.0
 * @lastmodified 2010-10-04 11:00
 * @author ONEsite AH
 * 
 */


/* 

Buttons 

*/

/** Generic */
button {
	cursor: pointer;
	width: auto;
	overflow: visible;
}

/** Basic Button */
.oneButtonGlobal {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background: #FFFFFF url(/resources/images/buttons/button_bg.png) repeat-x scroll center bottom;
	border:1px solid #cdd0d5;
	border: 1px solid rgba(0, 0, 0, 0.2);
	color: #2C3034;
	cursor: pointer;
	display: inline-block;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	height: 26px;
	line-height: 25px;
	margin: 0 2px;
	padding: 0 10px;
	white-space: nowrap;
}
.oneButtonGlobal span {
	display: block;
}
.oneButtonGlobal:hover {
	cursor:pointer;
	text-decoration:none;
	color:#2c3034;
	border:1px solid #909397;
	border:1px solid rgba(0,0,0,0.3);
}


/*

Content Actions 

*/

.contentActionRating button,
.contentAction button {
	cursor: pointer;
}
.contentActionRating button,
.interactiveButton,
.star_rating {
	border: 0 none; 
	height: 16px; 
	width: 16px;
}

/** Aggregation Star Rating */

.do_rating_div button {
	border: 0 none;
	display: inline-block;
	height: 16px;
	width: 16px;
}
.do_rating_div button:focus {
	outline: none;
}
.do_rating_div button::-moz-focus-inner {
	border: 0;
}

/** Star Rating */
.star_rating_empty {
	background:url(/resources/images/icons/16-star-empty.png) no-repeat;
}
.star_rating_half {
	background:url(/resources/images/icons/16-star-half.png) no-repeat;
}
.star_rating_whole {
	background:url(/resources/images/icons/16-star-full.png) no-repeat;
}

/** Thumb Rating */
.thumbs_up_rating_button {
	background:url(/resources/images/icons/16-thumbUp.png) no-repeat;
}
.thumbs_down_rating_button {
	background:url(/resources/images/icons/16-thumbDown.png) no-repeat;
}

/** Number of Ratings */
.do_rating_div {
	margin-bottom: 3px;
}
.num_of_ratings {
	font-size: 11px;
}


/** Favorites */
.favorite-actions {
    position: relative;
}
.favorite-actions .favorite-icon {
    display: block;
    float: left;
    height: 16px;
	width: 16px;
}
.favorite-actions .favorite-text {
    margin: 0 0 0 5px;
}
.favorite-actions .favorite-tooltip {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.7);
    border: 1px solid #000000;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    bottom: 30px;
    color: #FFFFFF;
    left: 50%;
    margin-left: -106px;
    padding: 4px 8px;
    position: absolute;
    white-space: nowrap;
}
.favorite .favorite-icon{
	background:url(/resources/images/icons/16-favorite.png) no-repeat;
}
.not-favorite .favorite-icon {
	background:url(/resources/images/icons/16-favorite-empty.png) no-repeat;
}
.busy .favorite-icon {
    background:url(/resources/images/icons/square-loading.gif) no-repeat;
}

/** Featured Content */
.featured-content {
	background:url(/resources/images/icons/16-featured-on.png) no-repeat;
}
.not-featured-content {
	background:url(/resources/images/icons/16-featured-off.png) no-repeat;
}

/** Send2Friend */
.sendtofriend_button {
	background:url(/resources/images/icons/16-send2friend.png) no-repeat;
	border: 0 none;
	height: 16px;
	width: 16px;
}

/** Content Flagging */
.content_flag_button {
	background:url(/resources/images/icons/16-report.png) no-repeat;
	border: 0 none;
	height: 16px;
	width: 16px;
}
.content_flag_button span {
	display: none;
}

/** Moderation */
.moderationIcn {
	background:url(/resources/images/icons/16-moderation.png) no-repeat;
}

/** RSS */
.rssButton {
	background:url(/resources/images/icons/16-rss.png) no-repeat;
}

/* 

Comments

*/

/** Content Flagging */
.commentIcons .content_flag_button {
	float: right; /* Adjusts Placement */
}


/* 

Other Interaction Elements 

*/

/** User Setup Wizard */

.setupWizStepMenu .wizNumTitle {float: left;}
.setupWizStepMenu .wizStepLinks {float: right;}

.oneStepList {
	list-style-type: none;
	list-style-position: outside;
	height: 50px;
	margin: 10px 0;
	padding: 0;
}
.oneStep {
	display:inline;
	list-style-type:none;
}
.oneStep .oPart {
	float: left;
	height: 50px;
}
.oneStep .oContent {
	font-size: 15px;
	margin: 17px 10px 0;
}
.oneStep .WizNumTitle {
	font-weight: bold;
	margin-bottom:1px;
}
.oneStep .oPart {
	background: url(/resources/images/wizard/wizArrows.png) 0 0 no-repeat;
	float: left;
	height: 50px;
}
.oneStep .oMiddle {
	background: url(/resources/images/wizard/wizStripe-Gray.png);
}
.oneStep .oPoint {
	background-position: -30px 0;
	width:21px;
}
.oneStepPrevious .oPoint {
	background-position: -51px 0;
}
.oneStepFirst .oBack {
	width: 3px;
}
.oneStep .oBack {
	background-position: -24px 0;
}
.oneStepSelected .oBack {
	background-position: -51px 0;
}
.oneStepSelectedFirst .oBack {
	background-position: -21px 0;
}
.oneStepSelected .oMiddle {
	background: url(/resources/images/wizard/wizStripe.png);
}
.oneStepSelected .oPoint {
	background-position: 0 0;
}
.oneStepSelectedNext .oPoint {
	background-position: -51px 0;
}
.oneStepLast .oPoint {
	background-position: -74px 0;
}
.oneStepSelectedLast .oPoint {
	background-position: -100px 0;
}
.oneStepSelected .wizNumTitle,
.oneStepSelected .wizDescription,
.oneStepSelected a {
	color:#FFFFFF;
	font-weight: bold;
}
