/*<meta />*/

@import url('Variables.css');					/* Variable definitions for fonts and colors */

@import url('Fonts.css');						/* Font face commands to load  Roboto and Roboto Condensed */

@import url('HelpStyles.css');					/* Main help styles */

@import url('Notifications.css'); 				/* Three types of notifications. Currently only using the Note ("To display this page...") */

@import url('HelpStyles-DocBoxes.css'); 		/* Doc boxes styles */

@import url('HelpStyles-LandingPage.css');		/* Landing page styles */

@import url('HelpStyles-SearchResults.css');	/* Microcontent search results styles */
@namespace MadCap url(http://www.madcapsoftware.com/Schemas/MadCap.xsd);


/* HelpStyles-WebCRD.css */
/**** WebCRD Help Style Sheet ****/
/**** This style sheet imports the standard HelpStyles.css, and contains overrides for WebCRD-specific help styles ****/
/**** 11/29/21 Added styling for task aid topics  -- links at the top of the topic and Return to Top link ****/
/**** 2/21/22 Add font size override for micro-content so that all content (even if not in <p> tag will be the body font size ****/
/**** 2/17/23 Replace yellow toggler arrows with gray; replace toggler hover yellow with gray ****/

MadCap|toggler:hover
{
	color: var(--rsa-gray);
}

MadCap|toggler
{
	color: #000;
	mc-open-image: url('../Images/_HelpImages/toggle-open.png');
	mc-closed-image: url('../Images/_HelpImages/toggle-closed.png');
}



/* Micro-content font size over-ride for any li that are not already in <p> tags */
.micro-response li {
font-size: 14pt;
}


/* Works with the custom script on the Help master pages to provide a full-size image from the thumbnail */
/* when a topic is printed from WebHelp (either with the Print button or CTRL+P */
.print-only-image
{
	display: none; 	/* Makes sure the print image doesn't show up in the HTML output */
}

/**** Styling for Task Aid Topic (screen-only) "In this task aid topic" links ****/
.toc-container{
	background-color:var(--rsa-purple-bg);
	padding:1em 1.5em;
	font-size:14pt;
	margin-top:1.5em;
	display:inline-block;
}
.toc-container h5{
	font-size:14pt;
	color:var(--rsa-purple);
	margin: 0 0 .5em;
}
.toc-list{
	list-style:none;
	margin:0;
}
.toc-return{
	font-style:italic;
	color:var(--rsa-purple);
	font-weight:bold;
	font-size:12pt;
	text-decoration:none;
	margin-bottom:1em;
	margin-top:0;
	display:inline-block;
}


.ta-h3-styling{
	color:var(--rsa-purple);
	font-size:20pt;
	margin-bottom:0;	
}

@media print
{
	/* change hyperlink and Xref colors to black so that they don't look clickable when printing from a Help topic */

	a,
	a:link
	{
		color: #000000;	/* black */
		text-decoration: none;
	}

	MadCap|xref
	{
		text-decoration: none;
		font-weight: normal;
		color: #000000;	/* black */
	}

	.print-only-image
	{
		/* The print image should be visible when you click "print:" */
		display: block;
		margin-top: 5px;
		margin-bottom: 5px;
		border-style: solid;
		border-width: 2px;
		title: none;
		background-image: none;
	}

	.print-only-link
	{
		/* The Xref text should be visible when you click "print:" */
		display: block;
	}

	.MCPopupThumbnailLink
	{
		/*Remove the thumbnail image in the HTML5 output */
		display: none;
	}
}
