// ************************************************************************ //
//  Copyright GasBuddy Organization Inc                                     //
//  Only for use with the consent of GasBuddy Organization Inc.             //
//  For assistance/questions, please visit www.GasBuddy.com, or email       //
//  feedback@gasbuddy.com                                                   //
// ************************************************************************ //
// TIPS
// ----
// Use the variables in this file to set the look and feel of the output
// Make sure that the files "gasbuddy_preferences_v2.js" and "gasbuddy_gas_prices_v2.js"
//   are on YOUR web server.
// If you are using cascading style sheets, some of the settings in this file
//   could potentially be automatically overridden.

var gb_TableStyle, gb_TableWidth, gb_HeaderTextColor, gb_HeaderBackgroundColor, gb_HeaderTextAlignment, gb_TableBodyTextColor, gb_TableBodyBackgroundColor, gb_TableBodyTextAlignment, gb_FontFamily, gb_FontSize, gb_BorderType, gb_BorderStyle, gb_BorderSize, gb_BorderColor, gb_use_css, gb_use_other;
var gb_table_class, gb_header_tr_class, gb_header_td_class, gb_body_tr_class, gb_body_td_class;

// to use your own custom style sheets, set use_css = 'y' (lower case), 
//	and set each element to its' corresponding class in the stylesheet
//	(i.e. - "td_class" is the class for the TD tag)
gb_use_css = 'n'; 				// set to 'y' to use cascading style sheets
gb_table_class = ''; 				// outer table
gb_header_tr_class = ''; 			// header row
gb_header_td_class = ''; 			// header cells
gb_body_tr_class = '';  			// table body row
gb_body_td_class = ''; 				// table body cells

// if you are NOT using your own custom style sheets, set gb_use_css = 'n' (lower case)
gb_use_other = 'y';				// don't use css
gb_TableStyle = '5'; 				// '4' or '5' column only
gb_TableWidth = '100%'; 			// '100' implies pixels, or '100%' percentages allowed too
gb_HeaderTextColor = '#000000';		// HTML Hex colors, must start with #
gb_HeaderBackgroundColor = '#EBEBEB';	// HTML Hex colors, must start with #
gb_HeaderTextAlignment = 'left';		// 'left', 'center', or 'right'
gb_TableBodyTextColor = '#000000';		// HTML Hex colors, must start with #
gb_TableBodyBackgroundColor = '#FFFFFF';	// HTML Hex colors, must start with #
gb_TableBodyTextAlignment = 'left';		// 'left', 'center', or 'right'
gb_FontFamily = 'Arial';			// Use web-safe font names only
gb_FontSize = '11px';				// Best viewed between '8px' and '16px'
gb_BorderType = 'rows';				// 'all', 'none', 'edge', 'rows', or 'cols'
gb_BorderStyle = 'dotted';			// 'solid', 'dashed', 'dotted', 'double', 'groove', 'ridge', 'inset', 'outset', or 'hidden'
gb_BorderSize = '1px';				//
gb_BorderColor = '#ACACAC';			// HTML Hex colors, must start with #
