// As some css properties are not correctly supported by firefox use this file for setting the style of the menu
var layout = new Object;
// ________________________________________________
// _________ Renderer Setup _______________________
layout['geometry'] = 'snowflake';
//Size of the SVG Canvas to use;
layout['renderHeight'] = 800;
layout['renderWidth'] = 1200;
//Enable scaling of the SVG to the actual browser width;
layout['renderScaleToWindowWidth'] = true;
//Interval for Animations (msec)
layout['animInterval'] = 100;
layout['logoWidth'] = 212;
layout['logoHeight'] = 189;
//_________________________________________________
//____________ Node settings ______________________
//font size of the text in node boxes
layout['textFontSize'] = 12;
//node text css style
layout['textFontStyle'] = 'fill:#000000; font-family:Arial, Verdana, Helvetica;';
//line height for multi line text
layout['textLineHeight'] = 15;
//width after which text will be wrapped
layout['maxTextWidth'] = 100;
//Distance of arrow heads from the outer border of node boxes
layout['boxMargin'] = 20;
//Distance between text and node box
layout['boxPadding'] = 5;
//Fill style of the node box
layout['boxFill'] = 'url(#lightBlue)'
//Enable node shadow
layout['boxShadow'] = true;
//Enable rounded node boxes
layout['boxCornerRadius'] = 5;
//background box css style 
layout['boxStyle'] = 'stroke-width: 1.5px; stroke:#A0A0C0;';
//____________________________________________________________
//____________ Arrow settings ________________________________
//starting length of connecting arrows
layout['arrowLengthChange'] = 0.7;
layout['arrowLength'] = 200;
//Ratio of the arrow length for child nodes
layout['arrowColor'] = '#000000';
layout['arrowWidth'] = '2';
//Densitiy of pixels used for the html arrows
layout['htmlArrowPixelDensitiy'] = .25;

//_____________________________________________________________
//______________ Tooltip Settings _____________________________
layout['tooltipWidth'] = 100;
layout['tooltipOffset'] = 35;
layout['tooltipCornerRadius'] = 10;
layout['tooltipFill'] = 'url(#lightYellow)';
layout['tooltipTipFill'] = '#DFD0B0'
layout['tooltipOpacity'] = .9;
layout['tooltipFontSize'] = 15;
layout['tooltipBoxStyle'] = 'font-family:Arial,Helvetica,Verdana';
//Fadeing time in msec
layout['tooltipFadeTime'] = 1000;