﻿
/* This file is intended to contain rules that will allow "skinning" of your manual by changeing the colors, fonts and background images. You should not place any rules here
that modify positioning or size or other layout properties*/

body
{
  /*these are the standard fallbacks that are design approved for the majority of the supported devices.*/
  font-family:Segoe UI Regular,HelveticaNeue, Droid Sans, Arial, Sans-Serif;
  
  background-image: url("bg_100.png") !important;
  background-position: fixed;
  background-repeat: no-repeat;  

  color:#ebebeb; /*xboxwhite*/
  background-color:#222222;
}

.logo
{
	background: url("logo.png");
    background-size: 80px 60px;
    background-repeat: no-repeat;	
	width: 80px;
	height: 60px;
}


#version_txt {
	float: left;
	font-size: .5em;
	margin-top: 10em;
	color: #666;
}

.contentPanel
{
	background-color: rgba(0, 0, 0, 0.6);
	
}

/* Deal with some obvious right-side clipping issues */
article .helpContent {
    width: 85%;
}

.navLinks a {
    border-bottom: 4px solid rgba(235, 235, 235, 0.2);
    outline: 4px solid rgba(235, 235, 235, 0.1);
}

/*this would for example override the white background and text color on active links*/
.pageButton:hover, .contentPanel a:hover
{
    /*background-color: #ee4036;
    color:#222;*/
}

/*and this would modify the focus outline*/
a:focus, a:hover, button:focus, button:hover
{
   /*outline:thick double #ee4036;*/
}


article a.articleTitle, article a.articleTitle:visited 
{
    color:#6b6b6b;
}

ul.social_list li {
	padding: 1em;
}
ul.social_list li span {
	margin-right: 1em;
}
.CapcomUnityImage_RGB235
{
    background: url("./social-media-icons-square.png") no-repeat scroll 0px -47px rgba(0, 0, 0, 0);
    display: inline-block;
    height: 47px;
    vertical-align: middle;
    width: 47px;
}
.FacebookImage_RGB235
{
    background: url("./social-media-icons-square.png") no-repeat scroll 0px 0px rgba(0, 0, 0, 0);
    display: inline-block;
    height: 47px;
    vertical-align: middle;
    width: 47px;
}
.TwitterImage_RGB235
{
    background: url("./social-media-icons-square.png") no-repeat scroll -94px -47px rgba(0, 0, 0, 0);
    display: inline-block;
    height: 47px;
    vertical-align: middle;
    width: 47px;
}
.YouTubeImage_RGB235
{
    background: url("./social-media-icons-square.png") no-repeat scroll -94px -94px rgba(0, 0, 0, 0);
    display: inline-block;
    height: 47px;
    vertical-align: middle;
    width: 47px;
}


/*Here's an example of using this file to skin based upon a media query, in this case it will work on smartglass tablet devices
 Note: this is a duplicate of the media query used inline in the html to load tablet.css for the index page*/
@media (orientation:landscape) and (max-height: 900px),
(orientation:landscape) and (min-height: 1081px),
(orientation:landscape) and (max-width: 1430px) and (min-height: 901px) and (max-height: 1080px),
(orientation:landscape) and (min-width: 1930px) and (min-height: 901px) and (max-height: 1080px)
{
   /*This would add a background image to the content panel in tablets only. Note: you need an additional selector to give this rule 
   enough weight to override the existing in tablet.css*/ 
  .articles  article:not(.helpMenu) .contentPanel 
    {
        /*background: url("Forza_Left.png") no-repeat transparent 24px 60px;*/
    }
}

