<?xml version="1.0"?>
<styles>

<!-- 
This xml file allows you to change almost all of the styles found in the tvstationViewerEmbed_styles.css file at 
runtime without having to recompile in Flex. Note this feature is in [beta] and was not mentioned in the release 
for v0.5.2 because it's highly experimental and has not been fully tested with all the styles available. This is 
not a commercial product and we are not liable for any damages as a result from using this tool. However we 
decided to include it for those who want to mess around with it and possibly use it for their viewers. Some few 
limitations to note is that you can't change icons or images that were embedded using Flash CS4 and you can't 
embed any new fonts without having to recompile in Flex.

The available tags are "Style" and "styleItem". The "Style" tag is the main tag that holds each target style 
component. This tag accepts one attribute "id" which holds the style definition you want to affect.
Inside the main tag you can nest "styleItem" tags to specify what styles you want to change. The "styleItem" 
tag accepts three attributes:
		
styleName: The target style you want to change for the given style definition
type: The style type you want to change. The available values are:
			
	1. string
	2. boolean
	3. number
	4. array
	5. color - You can either specify "#" or "0x" hex values or literals (aqua, gray, navy, silver, black, 
		   green, olive, teal, blue, lime, purple, white, fuchsia, maroon, red, yellow, orange, pink, 
		   hotpink, and brown are currently supported)

arrayType: If you specify an array and the array is not string type value then you can specify a different type 
	   for each item in the array by setting the arrayType attribute

To activate this xml file take off the underscores so that the name of the file is "viewerStyles.xml" and the system 
should grab it. We already provided some quick samples below. You can add the rest of the styles found in the css
file as needed.
-->
	<Style id=".generalText">
		<styleItem styleName="fontFamily" type="string">MyriadPro</styleItem>
		<styleItem styleName="fontLookup" type="string">embeddedCFF</styleItem>
		<styleItem styleName="fontSize" type="number">11</styleItem>
		<styleItem styleName="color" type="color">black</styleItem>
	</Style>

	<Style id=".initBGStyle">
		<styleItem styleName="backgroundColor" type="color">white</styleItem>
	</Style>

	<Style id=".initTitleLabelStyle">
		<styleItem styleName="fontFamily" type="string">MyriadPro</styleItem>
		<styleItem styleName="fontLookup" type="string">embeddedCFF</styleItem>
		<styleItem styleName="fontSize" type="number">25</styleItem>
		<styleItem styleName="fontWeight" type="string">bold</styleItem>
		<styleItem styleName="color" type="color">black</styleItem>
	</Style>

	<Style id=".initStatusLabelStyle">
		<styleItem styleName="fontFamily" type="string">MyriadPro</styleItem>
		<styleItem styleName="fontLookup" type="string">embeddedCFF</styleItem>
		<styleItem styleName="fontSize" type="number">11</styleItem>
		<styleItem styleName="fontStyle" type="string">italic</styleItem>
		<styleItem styleName="color" type="color">black</styleItem>
	</Style>

	<Style id=".nowPlayingText">
		<styleItem styleName="fontFamily" type="string">MyriadPro</styleItem>
		<styleItem styleName="fontLookup" type="string">embeddedCFF</styleItem>
		<styleItem styleName="fontSize" type="number">14</styleItem>
		<styleItem styleName="textAlign" type="string">left</styleItem>
		<styleItem styleName="color" type="color">white</styleItem>
	</Style>

	<Style id=".mainBackgroundSkin">
		<styleItem styleName="backgroundColor" type="color">white</styleItem>
	</Style>

	<Style id=".mainBackgroundSkin2">
		<styleItem styleName="backgroundColor" type="color">black</styleItem>
		<styleItem styleName="borderStyle" type="string">solid</styleItem>
		<styleItem styleName="borderColor" type="color">black</styleItem>
		<styleItem styleName="cornerRadius" type="number">5</styleItem>
		<styleItem styleName="paddingTop" type="number">5</styleItem>
		<styleItem styleName="paddingBottom" type="number">5</styleItem>
		<styleItem styleName="paddingLeft" type="number">5</styleItem>
		<styleItem styleName="paddingRight" type="number">5</styleItem>
	</Style>

	<Style id=".mainContainer">
		<styleItem styleName="backgroundColor" type="color">black</styleItem>
		<styleItem styleName="borderStyle" type="string">solid</styleItem>
		<styleItem styleName="borderColor" type="color">black</styleItem>
		<styleItem styleName="cornerRadius" type="number">0</styleItem>
		<styleItem styleName="paddingTop" type="number">0</styleItem>
		<styleItem styleName="paddingBottom" type="number">0</styleItem>
		<styleItem styleName="paddingLeft" type="number">0</styleItem>
		<styleItem styleName="paddingRight" type="number">0</styleItem>
	</Style>

	<Style id=".subContainers">
		<styleItem styleName="backgroundColor" type="color">black</styleItem>
		<styleItem styleName="borderStyle" type="string">solid</styleItem>
		<styleItem styleName="borderColor" type="color">black</styleItem>
		<styleItem styleName="borderThickness" type="number">1</styleItem>
		<styleItem styleName="paddingTop" type="number">0</styleItem>
		<styleItem styleName="paddingBottom" type="number">0</styleItem>
		<styleItem styleName="paddingLeft" type="number">0</styleItem>
		<styleItem styleName="paddingRight" type="number">0</styleItem>
	</Style>
	
	<Style id=".schedulePlayerControlsScrubberSkin">
		<styleItem styleName="trackSkin" type="string">skins/slider_trackSkin.jpg</styleItem>
	</Style>
</styles>
