/* MED group will put customizations here for Browser Based HTML Help PANEL-page changes

For each panel page, the final CSS to be applied is this file.
i.e. We override company defaults using this file.

index.html
      <link rel="stylesheet" type="text/css" href="style/commons.css">
      <link rel="stylesheet" type="text/css" href="style/header.css">
      <link rel="stylesheet" type="text/css" href="style/panels.css">

contents.html is:
      <link rel="stylesheet" type="text/css" href="style/contents.css">
      <link rel="stylesheet" type="text/css" href="style/commons.css">
      <link rel="stylesheet" type="text/css" href="style/panels.css">

contents-data.html is same.
      <link rel="stylesheet" type="text/css" href="style/contents.css">
      <link rel="stylesheet" type="text/css" href="style/commons.css">
      <link rel="stylesheet" type="text/css" href="style/panels.css">

favorites.html is:
      <link rel="stylesheet" type="text/css" href="style/commons.css">
      <link rel="stylesheet" type="text/css" href="style/panels.css">

search.html is:
      <link rel="stylesheet" type="text/css" href="style/search.css">
      <link rel="stylesheet" type="text/css" href="style/commons.css">
      <link rel="stylesheet" type="text/css" href="style/panels.css">

indexes.html is :
      <link rel="stylesheet" type="text/css" href="style/indexes.css">
      <link rel="stylesheet" type="text/css" href="style/commons.css">
      <link rel="stylesheet" type="text/css" href="style/panels.css">

indexes-data.html is :
      <link rel="stylesheet" type="text/css" href="style/indexes.css">
      <link rel="stylesheet" type="text/css" href="style/commons.css">
      <link rel="stylesheet" type="text/css" href="style/panels.css">

left_tab.html is :
      <link rel="stylesheet" type="text/css" href="style/commons.css">
      <link rel="stylesheet" type="text/css" href="style/header.css">
      <link rel="stylesheet" type="text/css" href="style/panels.css">

*/



/* We need to hide the Title from the nav-panels, we need to define a class to hide it

         <tr class="book-title__row">
            <td height="3%">
               <div class="book-title">Autodesk Flame Help</div>
            </td>
         </tr>

We hide that code using: */

.book-title__row {
    display:none;
}



/* Check if these should be here: they may be for topic pages. */

DIV.ancestry A:link, DIV.ancestry A:visited,
DIV.ancestry A:active, DIV.ancestry A:hover
{
       color: white;
}


/* These are used for Contents and Index:
   from indexes.css and contents.css
   00289C is the dk blue, 7B8EB5 is the light blue
*/
a:link, a:active, a:visited {color: #00289C; text-decoration: none;}
a:hover {color: black; text-decoration: underline;}

/* FYI, we do not override these, they are in contents.css
.toc_normal {}
.toc_selected {font-weight: bold;}
*/





/* Now the indexes.css changes: */

.index__letter_group {background-color: #aaaaaa; font-weight: bold; color: white; margin-bottom: 5pt; margin-top: 5pt; padding-left: 2pt;}

.index_entry {color: black;}

.index_entry__content {margin-left: 0.25in;}


/* Index Changes Sept 16 2008 :  These modifications go along with changes for 'removal of index links on primaries' and 'switch of See/SeeAlso links to be searchable'.

1.                                                                      regular/unhiglighted            highlighted                                Hover
primaries (w/o secondaries) and secondaries that are links use:
index__entry_text                                                       blue, no-underline              white, lt-blue bgcolor, no-underline       YES hover underline all 3
2.
All primaries (w/ secondaries) now have no link, and they use:
index_indents                                                           black, no-underline             white, lt-blue bgcolor, no-underline       no hover ever
3.
primaries (w/o secondaries) and secondaries that are NOT links use:
index__entry_text_see                                                   black, no-underline             white, lt-blue bgcolor, no-underline       no hover ever
*/

/* 1. This is for all index entries that are links,
Do regular, unlightlighted (those 2 same) + highlighted */

/* .index__entry_text {color: black; text-decoration: none;} */

.index__entry_text a:link,
.index__entry_text a:active,
.index__entry_text a:visited {color: #00289C; text-decoration: none;}
.index__entry_text a:hover {color: black; text-decoration: underline;}

.index__entry_text a.unhighlighted:link,
.index__entry_text a.unhighlighted:active,
.index__entry_text a.unhighlighted:visited {color: #00289C; text-decoration: none;}
.index__entry_text a.unhighlighted:hover {color: black; text-decoration: underline;}

.index__entry_text a.highlighted:link,
.index__entry_text a.highlighted:active,
.index__entry_text a.highlighted:visited {color: white; background-color: #7B8EB5; text-decoration: none;}
.index__entry_text a.highlighted:hover {color: white; background-color: #7B8EB5; text-decoration: underline;}

/* 2. This is for all primaries (w/ secondaries). (They now have no link. Still searchable.)
Do regular, unlightlighted (those 2 same) + highlighted */

.index_indents {color: black; font-style: normal;}         /* normal added to override the italics in indexes.css, all three cases */

.index_indents a:link,
.index_indents a:active,
.index_indents a:visited,
.index_indents a:hover {color: black; text-decoration: none; cursor: default;}

.index_indents a.unhighlighted:link,
.index_indents a.unhighlighted:active,
.index_indents a.unhighlighted:visited,
.index_indents a.unhighlighted:hover {color: black; text-decoration: none; cursor: default;}

.index_indents a.highlighted:link,
.index_indents a.highlighted:active,
.index_indents a.highlighted:visited,
.index_indents a.highlighted:hover {color: white; background-color: #7B8EB5; text-decoration: none; cursor: default;}

/* 3. This is for primaries (w/o secondaries) and secondaries that are NOT links. (They are now dead links, so searchable)
Do regular, unlightlighted (those 2 same) + highlighted

Note this is a NEW class that is not in standard html help. */

.index__entry_text_see a:link,
.index__entry_text_see a:active,
.index__entry_text_see a:visited,
.index__entry_text_see a:hover {color: black; text-decoration: none; cursor: default;}

.index__entry_text_see a.unhighlighted:link,
.index__entry_text_see a.unhighlighted:active,
.index__entry_text_see a.unhighlighted:visited,
.index__entry_text_see a.unhighlighted:hover {color: black; text-decoration: none; cursor: default;}

.index__entry_text_see a.highlighted:link,
.index__entry_text_see a.highlighted:active,
.index__entry_text_see a.highlighted:visited,
.index__entry_text_see a.highlighted:hover {color: white; background-color: #7B8EB5; text-decoration: none; cursor: default;}

/* End of Index Changes */




/* General changes: */

body, p, td, input, textarea, select {
        font-family: Verdana, Arial; font-size: 8pt;
        background-color:#dddddd;
}


.content_htmlbody {background-color:#dddddd}

.index_htmlbody {margin: 0pt; background-color:#dddddd}

.search_htmlbody {margin: 0pt; background-color:#dddddd}

.contentTable {background: #dddddd; width: 100%; height: 100%;}





/************** Button class ************************

remove yellow
	BACKGROUND-COLOR: #CE9E08;

*/
.button {
        BORDER-RIGHT: #828282 1px outset;
	BORDER-TOP: #FFFFFF 0px;
	BORDER-LEFT: #FFFFFF 1px;
	WIDTH: 0px;
	BORDER-BOTTOM: #828282 1px outset;
	BACKGROUND-COLOR: #aaaaaa;
	PADDING-RIGHT: 10pt;
	PADDING-LEFT: 10pt;
	PADDING-TOP: 2pt;
	PADDING-BOTTOM: 2pt;
	WHITE-SPACE: nowrap;
	DISPLAY: table-cell;
}
.button:hover {
	BORDER-RIGHT: #828282 1px outset;
	BORDER-TOP: #FFFFFF 0px;
	BORDER-LEFT: #FFFFFF 1px;
	WIDTH: 0px;
	BORDER-BOTTOM: #828282 1px outset;
	BACKGROUND-COLOR: #7B8EB5;
	PADDING-RIGHT: 10pt;
	PADDING-LEFT: 10pt;
	PADDING-TOP: 2pt;
	PADDING-BOTTOM: 2pt;
}
a.button {
	FONT-WEIGHT: bold;
	FONT-SIZE: 9pt;
	COLOR: white;
	TEXT-ALIGN: center;
	TEXT-DECORATION: none
}

a.button:hover {
	FONT-WEIGHT: bold;
	FONT-SIZE: 9pt;
	COLOR: white;
	TEXT-ALIGN: center;
	TEXT-DECORATION: none
}


/* TOC classes from commons - add one pixel top bottom */
.topic_opened_toc_image {
	background:transparent url(../images/book-opened.gif) no-repeat top left;
	padding-top:2px;
	padding-bottom:2px;
	padding-left:10px;
	padding-right:10px;
	height:14px;
}

.topic_closed_toc_image {
	background:transparent url(../images/book-closed.gif) no-repeat top left;
	padding-top:2px;
	padding-bottom:2px;
	padding-left:10px;
	padding-right:10px;
	height:14px;
}

.topic_toc_image {
	background:transparent url(../images/page.gif) no-repeat top left;
	padding-top:2px;
	padding-bottom:2px;
	padding-left:9px;
	padding-right:9px;
	height:14px;
}

.empty_toc_image {
	/* background:transparent url(../images/void.gif) no-repeat center left; */
	padding-top:2px;
	padding-bottom:2px;
	padding-left:9px;
	padding-right:9px;
	height:14px;
}

.plus_toc_image {
	background:transparent url(../images/plus.gif) no-repeat top left;
	padding-top:1px;
	padding-bottom:1px;
	padding-left:8px;
	padding-right:8px;
	height:14px;
}

.minus_toc_image {
	background:transparent url(../images/minus.gif) no-repeat top left;
	padding-top:1px;
	padding-bottom:1px;
	padding-left:8px;
	padding-right:8px;
	height:12px;
}

.toc_entry {
	padding:2px;
	float:none;
}

.tree_entry_title {
}

/* end TOC classes */



/* Change for Index/Search customization - overrides Align Left in search.css and indexes.css */

.searchPhrase {text-align: left; font-weight:bold;}

/* Search Tip link */
.searchPhrase a {
  font-weight: normal;
}

.moveover {
	padding-left:82px;
}


/* End of File */
