@charset "UTF-8";

/* SpryTabbedPanels.css - Revision: Spry Preview Release 1.4 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */
/* This is the selector for the main TabbedPanels container. For our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * TabbedPanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * If you want to constrain the width of the TabbedPanels widget, set a
 * width on the TabbedPanels container. By default, the TabbedPanels widget
 * expands horizontally to fill up available space.
 *
 * The name of the class ("TabbedPanels") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabbedPanels container.
 */
ul,li
{
	list-style:none;
}

.extralefttab
{
	float:left;
	font-size:2px;
	width:21px;
	list-style:none;
	padding-top:6px;
	height:23px;
}

.tabbedpanels
{
	margin:0;
	padding:0;
	float:left;
	clear:none;
	width:100%;
/* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}

/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
.tabbedpanelstabgroup
{
	margin:0;
	padding:0;
	background:url(http://poccdn.com/images/blue-bar1.jpg) left top no-repeat;
	width:490px;
	height:33px;
}

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.grad-bar
{
	background:url(http://poccdn.com/images/blue-gra.jpg) no-repeat;
	clear:both;
	min-height:200px;
	height:auto!important;
	height:200px;
	margin-left:5px;
}

.tabbedpanelstab
{
	position:relative;
	font-size:12px;
	margin-top:6px;
	text-decoration:none;
	padding:4px 0 0 12px;
	height:23px;
	padding-right:28px;
/*extra right padding to account for curved right edge of tab image*/
	background:url(http://poccdn.com/images/SpryAssets/r_curve.png) 100% top no-repeat;
/*give illusion of shifting 1px down vertically*/
	color:#fff;
	display:block;
	margin-left:-18px;
/*shift tabs 20px to the left so they overlap*/
	left:18px;
	font-weight:700;
	float:left;
	text-decoration:none;
	cursor:pointer;
}

/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
.tabbedpanelstabhover
{
	color:#bcd9f3;
}

/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
.tabbedpanelstabselected
{
	color:#000;
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.tabbedpanelstab a
{
	text-decoration:none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.tabbedpanelscontentgroup
{
	clear:both;
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.tabbedpanelscontent
{
}

/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.tabbedpanelscontentvisible
{
}

/* Vertical Tabbed Panels
 *
 * The following rules override some of the default rules above so that the
 * TabbedPanels widget renders with its tab buttons along the left side of
 * the currently active content panel.
 *
 * With the rules defined below, the only change that will have to be made
 * to switch a horizontal tabbed panels widget to a vertical tabbed panels
 * widget, is to use the "VTabbedPanels" class on the top-level widget
 * container element, instead of "TabbedPanels".
 */
/* This selector floats the TabGroup so that the tab buttons it contains
 * render to the left of the active content panel. A border is drawn around
 * the group container to make it look like a list container.
 */
.vtabbedpanels .tabbedpanelstabgroup
{
	float:left;
	position:relative;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.vtabbedpanels .tabbedpanelstab
{
	float:none;
	margin:0;
	border-top:none;
	border-left:none;
	border-right:none;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.vtabbedpanels .tabbedpanelstabselected
{
}

/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.vtabbedpanels .tabbedpanelscontentgroup
{
	clear:none;
	float:left;
	padding:0;
}


/*
* jQuery UI CSS Framework
* Copyright (c) 2009 AUTHORS.txt (http://ui.jquery.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
* To view and modify this theme, visit http://ui.jquery.com/themeroller/?ffDefault=Arial,sans-serif&fwDefault=bold&fsDefault=1.3em&cornerRadius=.4em&bgColorHeader=cc0000&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=15&borderColorHeader=cc0000&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=eeeeee&fcContent=333333&iconColorContent=cc0000&bgColorDefault=eeeeee&bgTextureDefault=04_highlight_hard.png&bgImgOpacityDefault=100&borderColorDefault=d8dcdf&fcDefault=004276&iconColorDefault=cc0000&bgColorHover=f6f6f6&bgTextureHover=04_highlight_hard.png&bgImgOpacityHover=100&borderColorHover=cdd5da&fcHover=111111&iconColorHover=cc0000&bgColorActive=ffffff&bgTextureActive=01_flat.png&bgImgOpacityActive=65&borderColorActive=eeeeee&fcActive=cc0000&iconColorActive=cc0000&bgColorHighlight=fbf8ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcd3a1&fcHighlight=555555&iconColorHighlight=004276&bgColorError=eee7e7&bgTextureError=08_diagonals_thick.png&bgImgOpacityError=55&borderColorError=cc0000&fcError=cc0000&iconColorError=cc0000&bgColorOverlay=a6a6a6&bgTextureOverlay=09_dots_small.png&bgImgOpacityOverlay=65&opacityOverlay=40&bgColorShadow=333333&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=10&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
*/


/* Component containers
----------------------------------*/
.ui-widget { font-family: Arial,sans-serif; font-size: 1.3em; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 1em; }
.ui-widget-header { border: 1px solid #cc0000; background: #cc0000 url(http://images.searchenginenews.com/jqui/ui-bg_highlight-soft_15_cc0000_1x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
.ui-widget-header a { color: #ffffff; }
.ui-widget-content { border: 1px solid #eeeeee; background: #ffffff url(http://images.searchenginenews.com/jqui/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #333333; }
.ui-widget-content a { color: #333333; }

/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default { border: 1px solid #d8dcdf; background: #eeeeee url(http://images.searchenginenews.com/jqui/ui-bg_highlight-hard_100_eeeeee_1x100.png) 50% 50% repeat-x; font-weight: bold; color: #004276; outline: none; }
.ui-state-default a { color: #004276; text-decoration: none; outline: none; }
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus { border: 1px solid #cdd5da; background: #f6f6f6 url(http://images.searchenginenews.com/jqui/ui-bg_highlight-hard_100_f6f6f6_1x100.png) 50% 50% repeat-x; font-weight: bold; color: #111111; outline: none; }
.ui-state-hover a { color: #111111; text-decoration: none; outline: none; }
.ui-state-active, .ui-widget-content .ui-state-active { border: 1px solid #eeeeee; background: #ffffff url(http://images.searchenginenews.com/jqui/ui-bg_flat_65_ffffff_40x100.png) 50% 50% repeat-x; font-weight: bold; color: #cc0000; outline: none; }
.ui-state-active a { color: #cc0000; outline: none; text-decoration: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight, .ui-widget-content .ui-state-highlight {border: 1px solid #fcd3a1; background: #fbf8ee url(http://images.searchenginenews.com/jqui/ui-bg_glass_55_fbf8ee_1x400.png) 50% 50% repeat-x; color: #555555; }
.ui-state-error, .ui-widget-content .ui-state-error {border: 1px solid #cc0000; background: #eee7e7 url(http://images.searchenginenews.com/jqui/ui-bg_diagonals-thick_55_eee7e7_40x40.png) 50% 50% repeat; color: #cc0000; }
.ui-state-error-text, .ui-widget-content .ui-state-error-text { color: #cc0000; }
.ui-state-disabled, .ui-widget-content .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
.ui-priority-primary, .ui-widget-content .ui-priority-primary { font-weight: bold; }
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }

/* Icons
----------------------------------*/

/* states and images */
.ui-icon { width: 16px; height: 16px; background-image: url(http://images.searchenginenews.com/jqui/ui-icons_cc0000_256x240.png); }
.ui-widget-content .ui-icon {background-image: url(http://images.searchenginenews.com/jqui/ui-icons_cc0000_256x240.png); }
.ui-widget-header .ui-icon {background-image: url(http://images.searchenginenews.com/jqui/ui-icons_ffffff_256x240.png); }
.ui-state-default .ui-icon { background-image: url(http://images.searchenginenews.com/jqui/ui-icons_cc0000_256x240.png); }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(http://images.searchenginenews.com/jqui/ui-icons_cc0000_256x240.png); }
.ui-state-active .ui-icon {background-image: url(http://images.searchenginenews.com/jqui/ui-icons_cc0000_256x240.png); }
.ui-state-highlight .ui-icon {background-image: url(http://images.searchenginenews.com/jqui/ui-icons_004276_256x240.png); }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(http://images.searchenginenews.com/jqui/ui-icons_cc0000_256x240.png); }

/* positioning */
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-off { background-position: -96px -144px; }
.ui-icon-radio-on { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-tl { -moz-border-radius-topleft: .4em; -webkit-border-top-left-radius: .4em; }
.ui-corner-tr { -moz-border-radius-topright: .4em; -webkit-border-top-right-radius: .4em; }
.ui-corner-bl { -moz-border-radius-bottomleft: .4em; -webkit-border-bottom-left-radius: .4em; }
.ui-corner-br { -moz-border-radius-bottomright: .4em; -webkit-border-bottom-right-radius: .4em; }
.ui-corner-top { -moz-border-radius-topleft: .4em; -webkit-border-top-left-radius: .4em; -moz-border-radius-topright: .4em; -webkit-border-top-right-radius: .4em; }
.ui-corner-bottom { -moz-border-radius-bottomleft: .4em; -webkit-border-bottom-left-radius: .4em; -moz-border-radius-bottomright: .4em; -webkit-border-bottom-right-radius: .4em; }
.ui-corner-right {  -moz-border-radius-topright: .4em; -webkit-border-top-right-radius: .4em; -moz-border-radius-bottomright: .4em; -webkit-border-bottom-right-radius: .4em; }
.ui-corner-left { -moz-border-radius-topleft: .4em; -webkit-border-top-left-radius: .4em; -moz-border-radius-bottomleft: .4em; -webkit-border-bottom-left-radius: .4em; }
.ui-corner-all { -moz-border-radius: .4em; -webkit-border-radius: .4em; }

/* Overlays */
.ui-widget-overlay { background: #a6a6a6 url(http://images.searchenginenews.com/jqui/ui-bg_dots-small_65_a6a6a6_2x2.png) 50% 50% repeat; opacity: .40;filter:Alpha(Opacity=40); }
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #333333 url(http://images.searchenginenews.com/jqui/ui-bg_flat_0_333333_40x100.png) 50% 50% repeat-x; opacity: .10;filter:Alpha(Opacity=10); -moz-border-radius: 8px; -webkit-border-radius: 8px; }
/*
* jQuery UI CSS Framework
* Copyright (c) 2009 AUTHORS.txt (http://ui.jquery.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
*/

/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ui-helper-clearfix { display: inline-block; }
/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix { height:1%; }
.ui-helper-clearfix { display:block; }
/* end clearfix */
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }


/* Interaction Cues
----------------------------------*/
.ui-state-disabled { cursor: default !important; }


/* Icons
----------------------------------*/

/* states and images */
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
/* Accordion
----------------------------------*/
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
.ui-accordion li {display: inline;}
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em 2.2em; }
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; }
.ui-accordion .ui-accordion-content-active { display: block; }
/* Datepicker
----------------------------------*/
.ui-datepicker { width: 17em; padding: .2em .2em 0; }
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
.ui-datepicker .ui-datepicker-prev { left:2px; }
.ui-datepicker .ui-datepicker-next { right:2px; }
.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
.ui-datepicker .ui-datepicker-next-hover { right:1px; }
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px;  }
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
.ui-datepicker .ui-datepicker-title select { float:left; font-size:1em; margin:1px 0; }
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
.ui-datepicker select.ui-datepicker-month, 
.ui-datepicker select.ui-datepicker-year { width: 49%;}
.ui-datepicker .ui-datepicker-title select.ui-datepicker-year { float: right; }
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0;  }
.ui-datepicker td { border: 0; padding: 1px; }
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi { width:auto; }
.ui-datepicker-multi .ui-datepicker-group { float:left; }
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
.ui-datepicker-row-break { clear:left; width:100%; }

/* RTL support */
.ui-datepicker-rtl { direction: rtl; }
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
    display: none; /*sorry for IE5*/
    display/**/: block; /*sorry for IE5*/
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 200px; /*must have*/
    height: 200px; /*must have*/
}
/* Dialog
----------------------------------*/
.ui-dialog { position: relative; padding: .2em; width: 300px; }
.ui-dialog .ui-dialog-titlebar { padding: .5em .3em .3em 1em; position: relative;  }
.ui-dialog .ui-dialog-title { float: left; margin: .1em 0 .2em; } 
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
.ui-dialog .ui-dialog-content { border: 0; padding: .5em 1em; background: none; overflow: auto; }
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
.ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; }
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }
/* Progressbar
----------------------------------*/
.ui-progressbar { height:2em; text-align: left; }
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
/* Resizable
----------------------------------*/
.ui-resizable { position: relative;}
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0px; }
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0px; }
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0px; height: 100%; }
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0px; height: 100%; }
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
/* Slider
----------------------------------*/
.ui-slider { position: relative; text-align: left; }
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: 1%; display: block; border: 0; }

.ui-slider-horizontal { height: .8em; }
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
.ui-slider-horizontal .ui-slider-range-max { right: 0; }

.ui-slider-vertical { width: .8em; height: 100px; }
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
.ui-slider-vertical .ui-slider-range-max { top: 0; }
/* Tabs
----------------------------------*/
.ui-tabs {padding: .2em;}
.ui-tabs .ui-tabs-nav { padding: .2em .2em 0 .2em;  position: relative; }
.ui-tabs .ui-tabs-nav li { float: left; border-bottom: 0 !important; margin: 0 .2em -1px 0; padding: 0; list-style: none; }
.ui-tabs .ui-tabs-nav li a { display:block; text-decoration: none; padding: .5em 1em; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected {  padding-bottom: .1em; border-bottom: 0; }
.ui-tabs .ui-tabs-panel { padding: 1em 1.4em;  display: block; border: 0; background: none; }
.ui-tabs .ui-tabs-hide { display: none !important; }
#facebox .b {
  background:url(http://poccdn.com/plugins/facebox/b.png);
}

#facebox .tl {
  background:url(http://poccdn.com/plugins/facebox/tl.png);
}

#facebox .tr {
  background:url(http://poccdn.com/plugins/facebox/tr.png);
}

#facebox .bl {
  background:url(http://poccdn.com/plugins/facebox/bl.png);
}

#facebox .br {
  background:url(http://poccdn.com/plugins/facebox/br.png);
}

#facebox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  text-align: left;
}

#facebox .popup {
  position: relative;
}

#facebox table {
  border-collapse: collapse;
}

#facebox td {
  border-bottom: 0;
  padding: 0;
}

#facebox .body {
  padding: 10px;
  background: #fff;
  width: 370px;
}

#facebox .loading {
  text-align: center;
}

#facebox .image {
  text-align: center;
}

#facebox img {
  border: 0;
  margin: 0;
}

#facebox .footer {
  border-top: 1px solid #DDDDDD;
  padding-top: 5px;
  margin-top: 10px;
  text-align: right;
}

#facebox .tl, #facebox .tr, #facebox .bl, #facebox .br {
  height: 10px;
  width: 10px;
  overflow: hidden;
  padding: 0;
}

#facebox_overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  height:100%;
  width:100%;
}

.facebox_hide {
  z-index:-100;
}

.facebox_overlayBG {
  background-color: #000;
  z-index: 99;
}

* html #facebox_overlay { /* ie6 hack */
  position: absolute;
  height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

body,html
{
	background-color:#ccc;
	color:#000;
	font-family:verdana,Arial, Helvetica, sans-serif;
	font-size:12px;
	font-style:normal;
	line-height:16px;
	margin:0;
	padding:0;
}

*
{
	margin:0;
	padding:0;
}

#wraper
{
	margin:0 auto;
	padding:0;
	width:100%;
}

img,img
{
	border:none;
	outline:none;
}

#container
{
	background:url(http://poccdn.com/images/bg.jpg) repeat-y;
	margin:0 auto;
	width:992px;
}

#header
{
	margin:0 13px;
	width:966px;
}

#middle
{
	clear:both;
	margin:0 13px;
	width:966px;
}

a,img
{
	border:0;
	outline:0;
}

a
{
	color:#2062b4;
	font-weight:700;
	text-decoration:none;
}

a:hover
{
	color:#2062b4;
	font-weight:700;
	text-decoration:underline;
}

.top
{
	background:url(http://poccdn.com/images/top-curve.jpg) left top no-repeat;
	height:110px;
	width:966px;
}

.top-blue
{
	background:url(http://poccdn.com/images/top-blue.jpg) repeat-x;
	font-size:2px;
	height:7px;
}

.top-curve
{
	background:url(http://poccdn.com/images/top-curve.jpg) left top no-repeat;
	height:28px;
}

.top_logo
{
	float:left;
	padding:15px 0 0 20px;
	width:730px;
}

.top_logoright
{
	padding:15px 0 0;
}

.top_login
{
	margin-top: 5px;
	/*margin-right: .7em;*/
	width: 215px;
}

.top_login input[type=text],.top_login input[type=password] {width: 200px;}
.top_login input[type=submit] {margin-right: 1em;}
.top_login b
{
	font-size: 16px;
	font-weight: bold;
	display: block;
	margin-bottom: 1em;
	float: left;
}

.top_login .help { margin-left: 10px; font-size: 10px; }
.top_login form
{
	font-size: 14px;
}

.top_login label
{
	display: block;
	width: 75px;
	float: left;
}







.toplinks
{
	float:right;
	font-size:12px;
	line-height:25px;
	padding-right:25px;
	text-align:left;
	width:150px;
}

.topfonts
{
	color:#333;
	display:inline;
	float:left;
	padding-left:115px;
	padding-top:10px;
}

.toplinks a
{
	color:#0f4272;
	text-decoration:none;
}

.toplinks a:hover
{
	color:#0f4272;
	text-decoration:underline;
}

.logo
{
	float:left;
	height:73px;
	padding-left:22px;
	padding-top:15px;
	width:320px;
}

.planet-logo
{
	float:right;
}

.logotxt
{
	color:#124A82;
	float:left;
	font:bold 14px Arial, Helvetica, sans-serif;
	padding-left:57px;
}

.menu-left
{
	background:url(http://images.searchenginenews.com/menu-l-side.jpg) no-repeat;
	float:left;
	height:36px;
	width:11px;
}

.menu-right
{
	background:url(http://images.searchenginenews.com/menu-r-side.jpg) no-repeat;
	float:right;
	height:36px;
	width:11px;
}

.menublack
{
	background:url(http://poccdn.com/images/blackmenu.jpg) repeat-x;
	float:left;
	font-size:12px;
	font-weight:700;
	height:36px;
	margin:0;
	text-align:left;
	width:100%;
	/*margin-bottom: 10px;*/
}

.menublack ul
{
	list-style-type:none;
	margin:0;
	padding:0;
	margin-left: 10px;
}

.menublack ul li
{
	/*background:url(http://images.searchenginenews.com/center-menu.jpg) right center no-repeat;*/
	display:inline;
	float:left;
	position:relative;
	border-right: 1px solid gray;
}

ul li.last
{
	border-right: none;
}



.menublack ul li a
{
	color:#fff;
	display:block;
	margin:0;
	padding:8px 16px 11px 17px;
	padding:8px 13px 10px 9px;
	text-align:center;
	text-decoration:none;
}

.menublack ul li a:hover
{
	background:url(http://poccdn.com/images/blue-menu.jpg) left top repeat-x;
	color:#fff;
	margin:0;
	text-decoration:none;
}

.textfield
{
	background:url(http://poccdn.com/images/input_bg.gif) repeat-x;
	border:1px solid #005aaa;
	height:15px;
	margin-right:1em;
	margin-top:.5em;
	padding:0;
}

.down-menu
{
	clear:both;
	/*height:38px;*/
	width:970px;
}

.intro
{
	color:#124A82;
	float:left;
	font-family:Arial, Helvetica, sans-serif;
	font-size:15px;
	font-weight:700;
	padding-left:20px;
	/*padding-top:7px;*/
	padding-bottom:7px;
}

.search-wraper
{
	float:left;
	padding-left:620px;
}

.search
{
	float:right;
	margin:0;
	padding:0;
}


.ic_s
{
	background:url(http://poccdn.com/images/ic_search1.gif) left top no-repeat;
	height:26px;
	margin-left:875px;
	padding:0;
	position:absolute;
	top:150px;
	width:22px;
}

.center
{
	padding-left:2px;
	width:966px;
}

.center-left
{
	float:left;
	padding-top:12px;
	width:700px;
	background-color: #fff;
}

.center-right
{
	float:left;
	padding-top:12px;
	width:249px;
	background-color: #fff;
}

.greybar
{
	background:url(http://poccdn.com/images/grey-bar-top.jpg) no-repeat;
	height:32px;
	padding-left:5px;
	width:239px;
}

.greybar-midd
{
	background:url(http://poccdn.com/images/grey-bar-mid.jpg) repeat-y;
	width:258px;
}

.greybar-bot
{
	background:url(http://poccdn.com/images/grey-bar-bot.jpg) no-repeat;
	font-size:2px;
	height:9px;
	padding-bottom:10px;
	padding-left:5px;
	width:258px;
}

.white-text
{
	color:#FFF;
	font-family:Arial, Helvetica, sans-serif;
	font-size:15px;
	font-weight:700;
	padding-left:20px;
	padding-top:8px;
}

.white-text-big
{
	color:#FFF;
	font-family:Arial, Helvetica, sans-serif;
	font-size:18px;
	font-weight:700;
	line-height:25px;
	padding-top:4px;
	text-align: center;
}

.book
{
	float:left;
	/*padding-top:7px;*/
}

.book_box
{
	padding-top: 1em;
}
.blue-text
{
	color:#146098;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:700;
	line-height:17px;
	padding:10px 9px;
}

.blue-text-ul
{
	color:#146098;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:700;
	list-style:outside;
	margin-bottom: 0;
}

.blue-text-ul li
{
	background:url(http://poccdn.com/images/checkmark.png) 2px 13px no-repeat;
	line-height:12px;
	list-style:none;
	padding-left:24px;
	padding-right:4px;
	padding-top:13px;
}

.blue-text-arrow
{
	color:#146098;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:700;
	list-style:outside;
	margin:0;
	text-decoration:none;
}

.blue-text-arrow li
{
	background:url(http://poccdn.com/images/blue-arrow.jpg) 5px 17px no-repeat;
	line-height:1.3em;
	list-style:none;
	padding-left:24px;
	padding-right:4px;
	padding-top:13px;
	width:210px;
}

.black-text
{
	color:#333;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:400;
	line-height:17px;
	padding:5px 9px 10px;
}

.black-text1
{
	color:#333;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:400;
	line-height:17px;
	padding:5px 9px 10px;
}

.bluebar
{
	background:url(http://poccdn.com/images/blue-bar.jpg) no-repeat;
	height:33px;
	padding-left:5px;
	width:693px;
}

.bluebar1
{
	background:url(http://poccdn.com/images/blue-bar1.jpg) no-repeat;
	height:33px;
	padding-left:5px;
	width:693px;
}

.bluebar-midd
{
	background:url(http://poccdn.com/images/blue-line.jpg) repeat-y;
	width:693px;
}

.bluebar-bott
{
	background:url(http://poccdn.com/images/line-bottom.jpg) no-repeat;
	font-size:2px;
	height:11px;
	width:693px;
}

.grey-line
{
	background:url(http://poccdn.com/images/grey-line.jpg) repeat-x;
	font-size:0;
	height:1px;
	width:675px;
}

.icon
{
	float:left;
	height:65px;
	text-align:center;
	width:60px;
}

.icon-small
{
	float:left;
	height:45px;
	text-align:center;
	width:60px;
}

.icon-bar
{
	padding-top:5px;
	width:610px;
}

.blue-text-icon
{
	color:#146098;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:700;
	line-height:10px;
	padding-right:9px;
	padding-top:5px;
}

.grad-bar
{
	background:url(http://poccdn.com/images/blue-gra.jpg) no-repeat;
}

.black-arrow
{
	background:url(http://poccdn.com/images/black-arrow.jpg) no-repeat;
	float:left;
	height:15px;
	margin-left:4px;
	margin-top:9px;
	width:15px;
}

.bold-text
{
	color:#3A3A3A;
	font-family:verdana,Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:30px;
	padding-left:5px;
}

.questmark
{
	background:url(http://poccdn.com/images/q-mark.jpg) 18px center no-repeat;
	float:left;
	height:20px;
	margin-top:5px;
	width:40px;
}

.ques-blue-text-
{
	color:#146098;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:700;
	line-height:13px;
	padding:7px 9px 10px;
}

.print
{
	background:url(http://poccdn.com/images/print.jpg) no-repeat;
	border-top:1px solid #c2c2c2;
	float:left;
	height:195px;
	margin-left:5px;
	padding-left:1px;
	padding-top:5px;
	width:173px;
}

.red-text
{
	color:#F70400;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:700;
	margin-left:8px;
	padding-top:20px;
	text-decoration:underline;
}

.current-text
{
	float:left;
	padding-top:7px;
	width:470px;
}

.membership
{
	/*float:left;*/
	padding-left:10px;
	padding-right:20px;
	padding-top:10px;
	/*width:520px;*/
}

.seoinlogo
{
	float:left;
	height:58px;
	width:338px;
}

.join
{
	float:left;
	margin-right:5px;
	padding-top:7px;
}

#footer
{
	background:url(http://images.searchenginenews.com/footer-bar.jpg) no-repeat;
	clear:both;
	color:#FFF;
	margin-left:13px;
	width:966px;
}

.footer-text
{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	padding-top:10px;
	text-align:center;
}

.freeseo
{
	background:url(http://poccdn.com/images/im_freeseo.PNG) left top no-repeat;
	height:81px;
	margin-left:185px;
	margin-top:-30px;
	position:absolute;
	width:74px;
}

#ufabook, #ufabook_login
{
	margin:.5em;
}

#ufabook_login
{
	margin-bottom:2em;
}

.cat_tab
{
	margin-top:6px;
}

.cat_tab_last
{
	white-space:nowrap;
}

.resultrowone
{
	background-color:#fff;
}

.resultrowtwo
{
	background-color:#eee;
}

#search_results
{
	border-collapse:collapse;
	margin-top:20px;
	width:100%;
}

#search_results th
{
background-color: #eee;
}
#search_results td
{
	padding:1em;
}

#loginbox
{
	padding:1em;
}

.fieldset
{
	padding:.5em;
}

.fieldset input,.fieldset select
{
	margin-bottom:.5em;
}

ul.updates
{
	/*margin-top:.5em;*/
	padding-bottom:1em;
	margin-left: 0;
	padding-left: 0;
}

ul.updates li
{
	padding-bottom:.5em;
	padding-left:1em;
	list-style-type: decimal;
	list-style-position: inside;
	list-style-image: url(http://poccdn.com/images/bullets/updates.png);
}

.tabbedpanelstab
{
	color:#ccf;
}

.tabbedpanelstabselected
{
	color:#fff;
}

.search_ghost
{
	background:url(http://poccdn.com/images/input_bg.gif) repeat-x;
	border:1px solid #005aaa;
	color:#aaa;
	font-style:italic;
	height:15px;
	margin-right:1em;
	margin-top:.5em;
	padding:0;
}

.search_normal
{
	background:url(http://poccdn.com/images/input_bg.gif) repeat-x;
	border:1px solid #005aaa;
	color:#000;
	height:15px;
	margin-right:1em;
	margin-top:.5em;
	padding:0;
}

input#keywords
{
	width: 190px;
	font-size: 14px;
}

ul.toc_bytes, ul.toc_featured
{
	list-style-type: none;
	padding: 0;
	margin: 0;
	margin-left: 10px;
}

ul.toc_bytes li
{
	background-image: url(http://poccdn.com/images/toc-bytes.png);
	background-repeat: no-repeat;
	background-position: 0 .3em;
	padding-left: 43px;
	line-height: 2.5em;
}

ul.toc_featured li
{
	background-image: url(http://poccdn.com/images/toc-featured.png);
	background-repeat: no-repeat;
	background-position: 0 .3em;
	padding-left: 45px;
	line-height: 2em;
}

ul.toc_bytes li a, ul.toc_featured li a
{
	background-color:#fff;
	color:#146098;
}

.toc_article_excerpt
{
	margin-left: 1em;
	margin-right: 1em;

}

.print_and_run p {padding-top: 1.5em;}
.print_and_run
{
	background-image: url(http://poccdn.com/images/print-icon_33.png);
	background-repeat: no-repeat;
	background-position: left 41%;
	padding-left: 4.5em;
	min-height: 42px;
	padding-top: 0;
}
.grad-bar
{
	min-height: 0;
}

.pnr_article_separator
{
	margin-bottom: 100px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 1em;
}

.u_google, .u_adwords, .u_adsense, .u_yahoo, .u_msn
{
	background-repeat: no-repeat;
	background-position: left 41%;
	padding-left: 100px;
	padding-top: 7px;
	/*padding-bottom: 10px;*/
	line-height: 2em;
	height: 40px;
}

.u_google b, .u_adwords b, .u_adsense b, .u_yahoo b, .u_msn b
{
	display: none;
}

.u_google
{
	background-image: url(http://poccdn.com/images/se-logos/sm-logos/google-logo_100x41.gif);
}

.u_adwords
{
	background-image: url(http://poccdn.com/images/se-logos/sm-logos/adwords-logo_90x32.gif);
}
.u_adsense
{
	background-image: url(http://poccdn.com/images/se-logos/sm-logos/adsense-logo_90x32.gif);
}

.u_yahoo
{
	background-image: url(http://poccdn.com/images/se-logos/sm-logos/YahooSearchMarketing_logo2_90x24.png);
}
.u_msn
{
	background-image: url(http://poccdn.com/images/se-logos/bing.png);
}
#admin
{
	position: absolute;
	top: 0;
	left: 0;
}

.login_error
{
	margin-bottom: 1em;
	font-weight: bold;
	color: yellow;
	border: 2px solid #f55;
	padding: .5em;
	background-color: #d55;
}

#articlebody h1 {margin-bottom: 1em;}

/* SEARCH STYLES */
.search-top {background:url(http://images.searchenginenews.com/search-top-grad.jpg) repeat-x left top; height:24px; padding:50px 10px 10px 10px; }
.search-top-left { color:#333333; font-size:14px; font-family:Arial, Helvetica, sans-serif; font-weight:bold; float:left; }
.search-top-left a{ color:#CC0000; text-decoration:none; }
.search-top-left a:hover{ color:#000000; text-decoration:underline; }
.search-top-right { color:#333333; font-size:14px; font-family:Arial, Helvetica, sans-serif; font-weight:bold; text-align:right; }

.search-text-top {padding-top:10px; padding-left:10px; padding-right:10px; padding-bottom:10px;}
.date-bg {background:url(http://images.searchenginenews.com/date-bg.jpg) no-repeat left top; width:97px; height:17px; padding:5px 5px 5px 5px; float:left; font-weight:bold; color:#666666; margin-right:10px; font-size:11px;}
.search-inner-text { padding-left:115px;}
.search-inner-text h6{color:#0066CC; font-size:13px; font-weight:bold; text-decoration:underline; padding-bottom:10px;}
.search-inner-text h6 a{color:#0066CC; font-size:13px; font-weight:bold; text-decoration:underline;}
.search-inner-text h6 a:hover{color:#0066CC; font-size:13px; font-weight:bold; text-decoration:underline;}
.search-light-blue-box { background-color:#F7FAFD; padding-top:5px;  height:30px; padding-left:10px; padding-bottom:5px; }
.search-cate-warper { clear:both;}
.search-icon {float:left; padding-right:10px;}
.search-icon-text { font-weight:bold; font-size:13px; color: #000000; padding-top:9px; }
.google-list-wraper {padding-top:15px; padding-left:40px;}
.google-list ul{ padding-bottom:5px;}
.google-list li{ list-style:none; color:#2062B4; font-weight:bold; font-size:12px; padding-bottom:5px;}
.google-list li a{ list-style:none; color:#2062B4; font-weight:bold; font-size:12px; padding-bottom:5px; text-decoration:none;}
.google-list li a:hover{ list-style:none; color:#2062B4; font-weight:bold; font-size:12px; padding-bottom:5px; text-decoration:underline;}
.search-bottom-grad {background:url(http://images.searchenginenews.com/search-bottom-grad.jpg) repeat-x left top; height:85px; padding-top:35px; text-align:center; padding-left:300px;}
.search-box-wraper { float:left;}
.search-boxes ul{ text-align:center; }
.search-boxes li{ list-style:none; display:inline;  margin-right:2px; font-size:12px; line-height:normal; }
.search-boxes li a{height:14px; width:18px; border:#B7D0E7 1px solid; background:#FFFFFF; list-style:none; text-decoration:none;  display: inline-block;  font-size:12px; line-height:normal; padding:3px;}
.search-boxes li a:hover{height:14px; width:18px;  border:#B7D0E7 1px solid; background:#E9F2FA; list-style:none;  text-decoration:underline; display: inline-block; font-size:12px; line-height:normal; padding:3px;}
.search-next { width:80px; float:left; }
.paginate {text-align: right; margin: 3em;}

/*.fd_results {text-align: center;}*/
.fd_results
{
	border-bottom:1px solid #EEEEEE;
	padding-bottom:1em;
	padding-left:1em;
	text-align:left;
}

.date-bg {text-align: center;}

/* END SEARCH STYLES */


/* contact forms */
#contact_form h1 {margin-bottom: 1em; color: #196297;}
#contact_form label {width: 6em; display: block; float: left;}
#contact_form {margin-left: 1.7em;}
#contact_form p {margin-bottom: 1em;}

/*Glossary*/
/*.content-wraper { margin:10px 10px 10px 9px;}
.top-main {height:49px; width:951px; clear:both;}
.top-search-c { background:url(http://images.searchenginenews.com/seo_glossary_c-t.jpg) repeat-x left top; height:36px; font-family:Verdana, Arial, Helvetica, sans-serif ; font-size:18px; font-weight:bold; color:#FFFFFF; text-align:center; float:left; width:783px; text-decoration:underline; line-height:19px; padding-top:13px; padding-bottom:0px; }
.top-search-l {background:url(http://images.searchenginenews.com/seo_glossary_l-t.jpg) no-repeat; height:49px; width:92px; float:left;}
.top-search-r {background:url(http://images.searchenginenews.com/seo_glossary_r-t.jpg) no-repeat; height:49px; width:76px; float:left;}

.top-middle { background:#336DAD; padding:10px 0px 10px 0px;  clear:both;}
.top-middle-text {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:14px; color:#FFFFFF; text-align:center; line-height:18px;}
.search-icon {background:url(http://images.searchenginenews.com/seo_glossary_search.jpg) no-repeat; width:97px; height:79px; float:left;}
.spacer {padding-right:25px;}
.form-outer {float:left; padding-left:10px; padding-right:10px; padding-top:15px;}
.search-form { height:26px; width:555px; font-size:19px; padding-top:7px;}
.button-outer {padding-top:17px; padding-left:10px;}

.no-bg {background:url(http://images.searchenginenews.com/no-background.jpg) repeat-x left top; height:53px; clear:both;}
.no-box {background:url(http://images.searchenginenews.com/no-box-middle.jpg) repeat-x left top; border-left:#AACBCB 1px solid; border-right: #6AA4A5 1px solid; border-bottom:#AACBCB 1px solid; display: inline; padding:3px 5px 2px 5px;  height:14px; margin:0px 2px 0px 2px;  }
.no-box a{ font-family:Arial, Helvetica, sans-serif; color:#497878; font-size:13px; text-decoration:none;}
.no-box a:hover{ font-family:Arial, Helvetica, sans-serif; color:#497878; font-size:13px;text-decoration:none;}

.org-heading  ul{  width:951px; }
.org-heading  li{background:url(http://images.searchenginenews.com/orange-bar.jpg) repeat-x left top; border:#FFCC00 1px solid; float:left; height:20px; padding:5px 0px 0px 10px; font-size:13px; color:#000000; margin:0px 1px 0px 1px;  font-weight:bold; }
.org-top {padding-top:13px;}
.org-top-1 { width:125px;}
.org-top-2 { width:713px;}
.org-top-3 {width:70px; text-align:center;}

.blue-bg { width:949px; font-size:12px; background-color:#EEF7F7; clear:both; overflow:hidden;}
.blue-middle{ width:949px; clear:both;}
.blue-middle li{   float:left; padding-left:10px; display:block; }
.blue-li-1 {width:128px; color:#930000; font-size:13px; font-weight:bold; border-top:#FFFFFF 2px solid; padding-top:5px;}
.blue-li-2 {width:710px; color:#000000; border-right:#FFFFFF 2px solid; border-left:#FFFFFF 2px solid; border-top:#FFFFFF 2px solid; line-height:18px; padding-top:5px; padding-bottom:5px; padding-right:5px;}
.blue-li-3 {width:70px; text-align:center; border-top:#FFFFFF 2px solid; padding-top:5px;}

.no-bg-2 {background:url(http://images.searchenginenews.com/no-background-2.jpg) repeat-x left top; height:53px; clear:both;}
.feedback-bg { text-align:center; background:url(http://images.searchenginenews.com/feedback-bg.jpg) #EEF7F7 no-repeat 230px 20px;  height:213px; padding:20px 20px 20px 20px; }
.feedback-text { color:#003366; font-size:15px; padding-top:15px;}
.feedback-form {width:479px; height:120px;  padding-left:10px;}
.feedback-form-outer {padding:15px 0px 0px 28px;}
.feedback-button {padding-top:7px; padding-left:20px;}
.no-bg-list {padding-top:20px; text-align:center; padding-bottom:5px;}
*/
.content-wraper { margin:10px 10px 10px 9px;}
.top-main {height:49px; width:951px; clear:both;}
.top-search-c { background:url(http://poccdn.com/images/seo_glossary_c-t.jpg) repeat-x left top; height:36px; font-family:Verdana, Arial, Helvetica, sans-serif ; font-size:18px; font-weight:bold; color:#FFFFFF; text-align:center; float:left; width:783px; text-decoration:underline; line-height:19px; padding-top:13px; padding-bottom:0px; }
.top-search-l {background:url(http://poccdn.com/images/seo_glossary_l-t.jpg) no-repeat; height:49px; width:92px; float:left;}
.top-search-r {background:url(http://poccdn.com/images/seo_glossary_r-t.jpg) no-repeat; height:49px; width:76px; float:left;}

.top-middle { background:#336DAD; padding:0px;  clear:both;width:951px;}
.top-middle-text {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:14px; color:#FFFFFF; text-align:center; line-height:18px;}
.search-icon {background:url(http://images.searchenginenews.com/seo_glossary_search.jpg) no-repeat; width:97px; height:79px; float:left;}
.spacer {padding-right:25px;}
.form-outer {float:left; padding-left:10px; padding-right:10px; padding-top:15px;}
.search-form { height:26px; width:555px; font-size:19px; padding-top:7px;}
.button-outer {padding-top:17px; padding-left:10px;}

.no-bg {background:url(http://poccdn.com/images/no-background.jpg) repeat-x left top; height:53px; clear:both;width:951px;}
.no-box {background:url(http://poccdn.com/images/no-box-middle.jpg) repeat-x left top; border-left:#AACBCB 1px solid; border-right: #6AA4A5 1px solid; border-bottom:#AACBCB 1px solid; display: inline; padding:3px 5px 2px 5px;  height:14px; margin:0px 2px 0px 2px;  }
.no-box a{ font-family:Arial, Helvetica, sans-serif; color:#497878; font-size:13px; text-decoration:none;}
.no-box a:hover{ font-family:Arial, Helvetica, sans-serif; color:#497878; font-size:13px;text-decoration:none;}

/*.org-heading  ul{  width:951px; }
.org-heading  li{background:url(http://images.searchenginenews.com/orange-bar.jpg) repeat-x left top; border:#FFCC00 1px solid; float:left; height:20px; padding:5px 0px 0px 10px; font-size:13px; color:#000000; margin:0px 1px 0px 1px;  font-weight:bold; }
.org-top {padding-top:2px;}
.org-top-1 { width:125px;}
.org-top-2 { width:713px;}
.org-top-3 {width:70px; text-align:center;}
*/

.org-heading ul{  width:951px; }
.org-heading li{background:url(http://poccdn.com/images/orange-bar.jpg) repeat-x left top; border:#FFCC00 1px solid; float:left; height:20px; padding:5px 0px 0px 10px; font-size:13px; color:#000000; margin:0px 1px 0px 1px;  font-weight:bold; }
.org-top {padding-top:13px;}
.org-top-1 { width:125px;}
.org-top-2 { width:794px;}
.org-top-3 {width:70px; text-align:center;}


.blue-bg { width:949px; font-size:12px; background-color:#EEF7F7; clear:both; overflow:hidden;}
.blue-middle{ width:949px; clear:both;}
.blue-middle li{   float:left; padding-left:10px; display:block; }
.blue-li-1 {width:128px; color:#930000; font-size:13px; font-weight:bold; border-top:#FFFFFF 2px solid; padding-top:5px;}
.blue-li-2 {width:710px; color:#000000; border-right:#FFFFFF 2px solid; border-left:#FFFFFF 2px solid; border-top:#FFFFFF 2px solid; line-height:18px; padding-top:5px; padding-bottom:5px; padding-right:5px;}
.blue-li-3 {width:70px; text-align:center; border-top:#FFFFFF 2px solid; padding-top:5px;}

.no-bg-2 {background:url(http://poccdn.com/images/no-background-2.jpg) repeat-x left top; height:53px; clear:both;}
.feedback-bg { text-align:center; background:url(http://images.searchenginenews.com/feedback-bg.jpg) #EEF7F7 no-repeat 230px 20px;  height:213px; padding:20px 20px 20px 20px; }
.feedback-text { color:#003366; font-size:15px; padding-top:15px;}
.feedback-form {width:479px; height:120px;  padding-left:10px;}
.feedback-form-outer {padding:15px 0px 0px 28px;}
.feedback-button {padding-top:7px; padding-left:20px;}
.no-bg-list {padding-top:20px; text-align:center; padding-bottom:5px;}
.glossary-find {height:50px;color:yellow;font-size:140%;font-weight:bold;}
.glossary-find img{vertical-align: middle;}

/* end glossary */

ol.seoservices > li
{
	list-style-type: upper-alpha;
	list-style-position: outside;
	margin-bottom: 1em;
}

ol.seoservices
{
	margin-left: 2em;
}

ul.seoservices > li
{
	list-style-type: decimal;
	list-style-position: outside;
	margin-bottom: 1em;
}

ul.seoservices
{
	margin-left: 2em;
}

.archive_wrapper h1
{
	margin-bottom: 1em;
	margin-top: 2.5em;
	color:#196297;

}

a.loginbox_link {color: #FF9900; font-weight: bold;}

#senewspeek h1
{
	line-height: 1.2em;
	margin-bottom: .5em;
}

#senewspeek h2
{
	line-height: 1.2em;
	margin-bottom: .5em;
}

#senewspeek img
{
	margin-right: 1em;
}

#senewspeek p
{
	margin-bottom: 1em;
	font-size: 16px;
}

#senewspeek ul
{
	margin-bottom: 1em;
}

#senewspeek ul li
{
	margin-left: 2em;
}

#senewspeek .red_tri_bullet li
{
	list-style:disc outside url("http://poccdn.com/images/red_arrow_bullet.gif");
}

#senewspeek .yellow_arrow_bullet li
{
	list-style:disc outside url("http://www.searchenginehelp.com/images/gold-arow.png");
	font-weight: bold;
}

#senewspeek .redstar2 li
{
	list-style:disc outside url("http://poccdn.com/images/redstar2.gif");
	margin-bottom: 1em;
}

#senewspeek .greenarrow li
{
	list-style:disc outside url("http://www.searchenginehelp.com/images/greenarrow.png");
	margin-bottom: 1em;
}

#senewspeek .greenplus li
{
	list-style:disc outside url("http://poccdn.com/images/bullets/greenplus.png");
	margin-bottom: 1em;
}

#senewspeek .redstar2 li, #senewspeek .redstar2 li p
{
	font-size: 14px;
}

#senewspeek .testimonial
{
	border: 1px solid gray;
	background-color: beige;
	padding: .5em;
	margin: .5em;
}

#senewspeek .guarantee_headline span
{
	background-color: yellow;
}

#senewspeek .guarantee_text
{
	/*font-weight: bold;*/
}

pre.code {
	font-size: 12px;
	padding: 0;
	margin: 0;
	margin-bottom: 1em;
	font-weight: bold;
	background: #f0f0f0;
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	line-height: 18px; /*--Height of each line of code--*/
	background: url(http://poccdn.com/images/pre_bg_b.gif); /*--Background of lined paper--*/
	width: 600px;
	overflow: auto; /*--If the Code exceeds the width, a scrolling is available--*/
	overflow-Y: hidden;  /*--Hides vertical scroll created by IE--*/
}
pre.code code {
	margin: 0 0 0 40px;  /*--Left Margin--*/
	padding: 0;
	display: block;
	line-height: 1.5em;
}

#peek_testimonials p {line-height: 1.24em;}

#subscription_expired h2, #auto_login h2
{
	font-size: 16px;
}
#subscription_expired h2, #subscription_expired p, #auto_login h2, #auto_login p
{
	/*margin-left: 15px;*/
	margin-bottom: 1em;
}

#auto_login
{
	height: 160px;
	padding: 1em;
	width: 350px;
	padding-right: 125px;
	background-image:url(http://poccdn.com/images/se-news_model_fullbody.gif);
	background-position: right;
	background-repeat:no-repeat;
}

.updated_article
{
	background-color: #fff;
	padding: 2px;
	margin: 1em auto;
	border: 4px solid #B7E0FF;
	font-size: 12px;
	width: 480px;
}
.updated_article_inner
{
	padding: .5em;
	margin: 0;
	background-color: #EDF5FE;
}

.fast_track-ul
{
	margin-bottom: 0 !important;
}

#submit_status
{
	height: 24px;
	margin-left: 32px;
	display: none;
}

#error_types label
{
	width: 10em;
	padding-bottom: 1em;
}

#pending_errors
{
	border: 1px solid gray;
	padding: .5em;
	margin-bottom: 1em;
	display: none;
}

#pending_errors ol
{
	margin-left: 20px;
}

#pending_errors ol li
{
	border-bottom:1px solid gray;
	padding-bottom:1em;
	padding-top: 1em;
}


/* Customer Service Contact */
.bluebar-inn { background:url(http://poccdn.com/images/blue-bar.jpg) no-repeat; width:100%; height:33px; float:left; width:963px; line-height:33px; padding: 10px 0 0 15px;}

/*SEO Agency Services CSS Start*/
.seo-header { float:left; padding-top:10px; padding-bottom:1px;}
.seo-header div{ float:left;}
.page-header { text-align:center;height:33px; background: url(http://poccdn.com/images/serv-images/ttl_c.gif) left top repeat-x; font-size:18px; font-weight:bold; color:#FFFFFF; width:930px; line-height:33px; padding:0px 0 0 15px;}
/*.page-header { text-align:center;height:33px; background: url(http://images.searchenginenews.com/serv-images/ttl_c.gif) left top repeat-x; font-size:18px; font-weight:bold; color:#FFFFFF; width:930px; line-height:33px; padding:0px 0 0 15px;}*/
.ag-services-box {/*width:900px;*/ padding-top:10px; float:left; padding-bottom:10px; border-bottom:1px solid #f0f0f0;margin: 0 4em;}
.ag-services-box1 {width:960px; padding-top:10px; float:left; padding-bottom:10px;}
.ag-services-title{/*color:#146098;*/ font-size:15px; font-weight:bold; line-height:10px; }
.ag-services-ico1{ background:url(http://poccdn/images/serv-images/seo_agency_icon1.jpg) 24px top no-repeat; float:left; width:70px; height:45px;}
.ag-services-ico2{ background:url(http://poccdn/images/serv-images/seo_agency_icon2.jpg) 24px top no-repeat; float:left; width:70px; height:45px;}
.ag-services-ico3{ background:url(http://poccdn/images/serv-images/seo_agency_icon3.jpg) 24px top no-repeat; float:left; width:70px; height:45px;}
.ag-services-ico4{ background:url(http://poccdn/images/serv-images/seo_agency_icon4.jpg) 24px top no-repeat; float:left; width:70px; height:45px;}
.ag-services-ico5{ background:url(http://poccdn/images/serv-images/seo_agency_icon5.jpg) 24px top no-repeat; float:left; width:70px; height:45px;}
.ag-services-txt{ font-size:14px; float:left; width:700px; padding-left:15px;}
.ag-services-txt a{ text-decoration:underline; font-size:12px; /*color:#000;*/}
/*.ag-services-txt a:visited{ font-size:12px; color:#000;}
.ag-services-txt a:hover{ font-size:12px; color:#000; text-decoration:none;}*/

.contact-form-container {clear:both; padding:15px 15px 0px 15px; width:650px; /*margin-left: 10px;*/margin:auto;}
.contact-form-header {float:left;}
.contact-form-header div{ float:left;}
.contact-text-header { height:25px; background:url(http://poccdn.com/images/con_ttl_c.jpg) left top repeat-x; font-size:12px; font-weight:bold; color:#FFFFFF; width:622px; line-height:25px; padding:0px 0 0 10px;}
.contact-text-header a{ font-size:12px; font-weight:bold; color:#FFFFFF; text-decoration:underline;}
.contact-text-header a:visited{ font-size:12px; font-weight:bold; color:#FFFFFF; text-decoration:underline;}
.contact-text-header a:hover{ font-size:12px; font-weight:bold; color:#FFFFFF; text-decoration:none;}
.contact-form-mid {background-color:#ebebeb; border-left:1px solid #d1d1d1; border-right:1px solid #d1d1d1; padding-top:10px; float:left; width:648px;}
.contact-form-mid label{display:block; float:left; font-size:12px; font-weight:bold; padding:3px 10px 0 30px; width:170px;}
.contact-form-fields{padding:7px 0px; border-bottom:1px solid #fff;}
.contact-form-fields1{padding:7px 0px;}
.contact-btn-submit{padding:3px 5px; background-color:#176598; color:#FFFFFF; font-size:12px; font-weight:bold; width:120px; border:0px; margin-left: 32px;}
.contact-form-bot {float:left; font-size:2px; padding-bottom:10px;}
.contact-form-botm{float:left; background:url(http://poccdn.com/images/con_bot_c.jpg) left top repeat-x; width:632px; font-size:2px; height:9px;}
.contact-form-bot div{ float:left; font-size:2px;}
.ag-services-ul {font-family:Verdana, Arial, Helvetica, sans-serif; /*font-size:12px;*/ font-weight:normal; color:#000; list-style:outside; padding-left:30px;margin-top:.5em;}
.ag-services-ul li{ padding-top:5px; list-style:disc; padding-left:10px; line-height:15px; }

/*SEO Agency Services CSS end*/

/*Customer Contact CSS Start*/
.contact-box {width:960px; padding-top:15px; float:left; padding-bottom:10px; background:#fff url(http://poccdn.com/images/contact_mid_bg.jpg) left top repeat-x;}
.contact-ico{ float:left; width:130px; font-size:2px; padding:0px 0px 0px 25px;}
.contact-info-txt{ font-size:12px; float:left; padding-left:15px; color:#010101;}
.contact-info-txt label{ float:left; font-weight:bold; padding-right:10px; width:80px; display:block; clear:both; color:#146098;}
.contact-cnt {width:951px; padding-top:15px; padding-left:25px; clear:both; font-size:12px;}
.contact-cnt a{ font-size:12px; color:#146098;}
.contact-cnt a:visited{ font-size:12px; color:#146098;}
.contact-cnt a:hover{ font-size:12px; color:#146098; text-decoration:none;}

/*Customer Contact CSS end*/

/*error report CSS Start*/

.error-header { float:left; padding-top:10px; padding-bottom:1px;}
.error-header div{ float:left;}
.errorpage-header { height:33px; background:url(http://poccdn.com/images/ttl_c.gif) left top repeat-x; font-size:18px; font-weight:bold; color:#FFFFFF; width:930px; line-height:33px; padding:0px 0 0 15px;}
.error-services-box {width:940px; padding:10px; float:left;}
.error-services-inn-box {width:945px; margin:0px 0 10px 10px !important; margin-left:5px; float:left;  border:1px solid #d3dde4; display:none;}
.error-services-title{color:#146098; font-size:13px; font-weight:bold; line-height:35px;}
.error-services-title a{color:#146098; font-size:13px; text-decoration:underline;}
.error-services-title a:hover{color:#146098; font-size:13px; text-decoration:none;}

.error-services-ico1{ background:url(http://poccdn.com/images/icon-8.jpg) 10px top no-repeat; float:left; width:55px; height:45px;}
.report-cnt {width:900px; padding-top:5px;  padding-left:25px; clear:both; font-size:12px; text-align:justify;}
.report-cnt a{ font-size:12px; color:#146098;}
.report-cnt a:visited{ font-size:12px; color:#146098;}
.report-cnt a:hover{ font-size:12px; color:#146098; text-decoration:none;}

.ttl_error-report{background:url(http://poccdn.com/images/error_title.jpg) left top repeat-x; color:#146098; font-size:13px; font-weight:bold; width:930px; height:34px; line-height:34px; padding-left:15px;}
.error_form_box {background:url(http://poccdn.com/images/error_text.jpg) left top repeat-x; color:#010101; font-size:13px; width:930px; padding:5px 0px 6px 15px; float:left;}
.error_txt{ font-size:12px; float:left; width:850px; line-height:18px; padding:7px 0px;}
.error_txt_l{ font-size:12px; float:left; width:150px;}
.error_txt_r{ font-size:12px; float:left; width:700px;}

.pending_box {background:url(http://poccdn.com/images/error_text.jpg) left bottom repeat-x; color:#010101; font-size:13px; width:920px; margin-top:2px; padding:5px 0px 6px 25px; float:left;}
.pending_box p { font-size:12px; float:left; line-height:18px; padding:7px 0px;}

.contact-form-fields1 textarea { margin-left: 30px; margin-top: 15px; width: 585px; height: 200px;}
/*error report CSS end*/


		#modal_info_notice
		{
			background-color: #F8F7CB;
			background-image: url(http://poccdn.com/images/infonotices/chick-build7-466.jpg);
			background-repeat: no-repeat;
		}

		#modal_info_notice p, #modal_info_notice ul
		{
			margin-bottom: 7px;
			font-size: 15px;
		}

		#modal_info_notice a
		{
			text-decoration: underline;
			color: #2062b4;
		}

		#modal_info_notice ul
		{
		list-style-position: inside;
		margin-left: 30px;
		}

		#modal_info_notice li
		{
		list-style-type: disc;
		}

		#modal_info_notice img
		{
		 float: left; display: block; margin-bottom:53px; margin-right:1em;
		}

		#modal_info_notice .formbutton
		{
			font-size: 15px;
		}

		#modal_info_notice .msg_body
		{
			/*background-color: #fff;*/
			padding-top: 1em;
			width: 400px;
			height: 201px;
			margin-left: 100px;
		}

		#alert_ssi_article_link
		{
			width: 486px;
			/*margin-right: 40px;*/
			margin-top: 44px;
			float: right;
		}

		#alert_ssi_article_link p
		{
			line-height: 2em;
		}

		#alert_ssi_article_link a
		{
			font-size: 17px;
			text-decoration: underline;
		}

		.ssi_seoi_img
		{
			float: right;
			/*width: 221px;*/
			margin-left: 10px;
		}

   .ui-widget {font-size: 15px;}

   .ui-widget-header {background-color: navy; border-color: navy;}

   .ui-widget-content a { color: #2062b4;}

   .membership-container *{ margin:0px; padding:0px;}
.membership-container *:focus{outline:none!important;}
.membership-container img { border:0 }
.membership-container ol, ul, li { list-style:none; }
.membership-container .clear{clear:both; display:block; height:0px; overflow:hidden; zoom:1}
.membership-container .hide{display:none}
.membership-container .float-right{float:right}
.membership-container .float-left{float:left}
.membership-container .no-border{border:none!important}
.membership-container .break10{height:10px; width:auto; line-height:10px; overflow:hidden}
.membership-container .break5{height:5px; width:auto}
.membership-container .break20{height:20px; width:auto; line-height:20px}
.membership-container br{line-height:10px}

.membership-container{width:966px; overflow:hidden; position:relative; background:#b3d2ff; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; line-height:14px}
.membership-container h1{text-indent:-9999px; background:#fff url(http://poccdn.com/images/membership-box/membership-plans-header.jpg) top center no-repeat; width:100%; height:70px; display:block; overflow:hidden; margin:0px; padding:0px; line-height:70px}
.membership-boxes{background:#b3d2ff url(http://poccdn.com/images/membership-box/membership-gradient-back.jpg) top left repeat-x}
.membership-box{
	float: right; margin-right: 20px;
	width:309px; /*background:transparent url(http://poccdn.com/images/membership-box/membership-gradient-back.jpg) repeat-x;*/ padding:0px 6px; display:inline}
.membership-box ul{margin:0em;margin-left: 0em;width:297px; background:url(http://poccdn.com/images/membership-box/box-tile.png) repeat-y; padding-top:5px}
.membership-box ul li{list-style:none;  background:url(http://poccdn.com/images/membership-box/arrow-list.gif) 15px 2px no-repeat; padding:0px 10px 10px 30px;}
.membership-box ul li.plus{background:none; padding:0px 10px 4px 16px}
.membership-box h2 span{display:none}
.membership-box .button-plan{background:url(http://poccdn.com/images/membership-box/box-bottom.png) bottom center no-repeat; width:297px; height:95px;}
.membership-box .button-plan a span{display:none}
.membership-box .basic-h2{margin:0em;width:297px; height:111px; background:url(http://poccdn.com/images/membership-box/basic-header.png) no-repeat;}
.membership-box .premium-h2{width:297px; height:111px; background:url(http://poccdn.com/images/membership-box/premium-header.png) no-repeat;}
.membership-box .elite-h2{width:297px; height:111px; background:url(http://poccdn.com/images/membership-box/elite-header.png) no-repeat;}
.membership-box .button-plan a.basic-link{background:url(http://poccdn.com/images/membership-box/link-basic.png) no-repeat; width:256px; height:80px; display:block; margin-left:18px; cursor:pointer}
.membership-box .button-plan a.premium-link{background:url(http://poccdn.com/images/membership-box/link-premium.png) no-repeat; width:256px; height:80px; display:block; margin-left:18px; cursor:pointer}
.membership-box .button-plan a.elite-link{background:url(http://poccdn.com/images/membership-box/link-elite.png) no-repeat; width:256px; height:80px; display:block; margin-left:18px; cursor:pointer}


.greencheck li
{
	list-style:disc outside url("http://poccdn.com/images/green_check.gif");
	margin-left:1.3em;
}


.greenarrow li
{
	list-style:disc outside url("http://poccdn.com/images/greenarrow-20x20.gif");
	margin-left:1.3em;
}

.smgreenarrow li
{
	list-style:disc outside url("http://poccdn.com/images/bullets/greenarrow.png");
	margin-left:1.3em;
}

