Question

Joomla module outside of template

Asked by: WhiteMafiosi

Anyone know how to move a Joomla module/Component outside of template? I hav a webpage www.newutd.no where I want banners to be displayed on the right side, outside of template. The module I have choosen is called FlexBanner. How can I move this? :)

The index.php contains the following code

ar<?php
defined('_JEXEC') or die('Restricted access'); // no direct access
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'functions.php';
$document = null;
if (isset($this))
  $document = & $this;
$baseUrl = $this->baseurl;
$templateUrl = $this->baseurl . '/templates/' . $this->template;
artxComponentWrapper($document);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
 <head>
  <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<jdoc:include type="head" />
  <link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/system.css" type="text/css" />
  <link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/general.css" type="text/css" />
 
  <link rel="stylesheet" type="text/css" href="<?php echo $templateUrl; ?>/css/template.css" />
  <!--[if IE 6]><link rel="stylesheet" href="<?php echo $templateUrl; ?>/css/template.ie6.css" type="text/css" media="screen" /><![endif]-->
  <!--[if IE 7]><link rel="stylesheet" href="<?php echo $templateUrl; ?>/css/template.ie7.css" type="text/css" media="screen" /><![endif]-->
  <script type="text/javascript" src="<?php echo $templateUrl; ?>/script.js"></script>
 </head>
<body>
<div id="art-page-background-simple-gradient">
</div>
<div id="art-main">
<div class="art-Sheet">
    <div class="art-Sheet-tl"></div>
    <div class="art-Sheet-tr"></div>
    <div class="art-Sheet-bl"></div>
    <div class="art-Sheet-br"></div>
    <div class="art-Sheet-tc"></div>
    <div class="art-Sheet-bc"></div>
    <div class="art-Sheet-cl"></div>
    <div class="art-Sheet-cr"></div>
    <div class="art-Sheet-cc"></div>
    <div class="art-Sheet-body">
<div class="art-Header">
    <div class="art-Header-png"></div>
    <div class="art-Header-jpeg"></div>
 
</div>
<jdoc:include type="modules" name="user3" />
<jdoc:include type="modules" name="banner1" style="artstyle" artstyle="art-nostyle" />
<?php echo artxPositions($document, array('top1', 'top2', 'top3'), 'art-block'); ?>
<div class="art-contentLayout">
<?php if (artxCountModules($document, 'left')) : ?>
<div class="art-sidebar1"><?php echo artxModules($document, 'left', 'art-block'); ?>
</div>
<?php endif; ?>
<div class="art-<?php echo artxGetContentCellStyle($document); ?>">
 
<?php
  echo artxModules($document, 'banner2', 'art-nostyle');
  if (artxCountModules($document, 'breadcrumb'))
    echo artxPost(null, artxModules($document, 'breadcrumb'));
  echo artxPositions($document, array('user1', 'user2'), 'art-article');
  echo artxModules($document, 'banner3', 'art-nostyle');
?>
<?php if (artxHasMessages()) : ?><div class="art-Post">
    <div class="art-Post-body">
<div class="art-Post-inner">
<div class="art-PostContent">
 
<jdoc:include type="message" />
 
</div>
<div class="cleared"></div>
 
</div>
 
    </div>
</div>
<?php endif; ?>
<jdoc:include type="component" />
 
<?php echo artxModules($document, 'banner4', 'art-nostyle'); ?>
<?php echo artxPositions($document, array('user4', 'user5'), 'art-article'); ?>
<?php echo artxModules($document, 'banner5', 'art-nostyle'); ?>
</div>
<?php if (artxCountModules($document, 'right')) : ?>
<div class="art-sidebar2"><?php echo artxModules($document, 'right', 'art-block'); ?>
</div>
<?php endif; ?>
 
</div>
<div class="cleared"></div>
 
<?php echo artxPositions($document, array('bottom1', 'bottom2', 'bottom3'), 'art-block'); ?>
<jdoc:include type="modules" name="banner6" style="artstyle" artstyle="art-nostyle" />
<div class="art-Footer">
 <div class="art-Footer-inner">
  <?php echo artxModules($document, 'syndicate'); ?>
  <div class="art-Footer-text">
  <?php if (artxCountModules($document, 'copyright') == 0): ?>
<p>Copyright &copy; 2009 ---.<br/>
All Rights Reserved.</p>
 
  <?php else: ?>
  <?php echo artxModules($document, 'copyright', 'art-nostyle'); ?>
  <?php endif; ?>
  </div>
 </div>
 <div class="art-Footer-background"></div>
</div>
 
    </div>
</div>
<div class="cleared"></div>
<p class="art-page-footer"><a href="http://www.artisteer.com/?p=joomla_templates">Joomla template</a> created with Artisteer.</p>
</div>
 
</body> 
</html>

                                  
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:

Select allOpen in new window

This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.

Subscribe now for full access to Experts Exchange and get

Instant Access to this Solution

  • Plus...
  • 30 Day FREE access, no risk, no obligation
  • Collaborate with the world's top tech experts
  • Unlimited access to our exclusive solution database
  • Never be left without tech help again

Subscribe Now

Asked On
2009-08-05 at 12:43:48ID24629354
Tags

Joomla

,

CMS

,

Module

,

Css

,

html

Topics

Web-Based CMS

,

Joomla

,

Web Languages/Standards

,

Cascading Style Sheets (CSS)

Participating Experts
1
Points
500
Comments
21

Trusted by hundreds of thousands everyday for fast, accurate and reliable tech support.

  • "The time we save is the biggest benefit of Experts Exchange to Warner Bros. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange." Mike Kapnisakis, Warner Bros.
  • "Our team likes having a resource that is more secure than just using Google and most experts using this service really know their stuff. It's nice to look here first versus using Google." Dayna Sellner, Lockheed Martin
  • "Anytime that I've been stumped with a problem, 9 out of 10 times Experts Exchange has either the accepted solution or an open discussion of the potential solution to the problem." Kenny Red, eBay Inc.

See what Experts Exchange can do for you.

Got a question?

We've got the answer.

Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.

Screenshot of Experts Exchange Knowledgebase

Need individual assistance?

Our experts are ready to help.

If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.

Screenshot of Experts Exchange Knowledgebase

Want to learn from the best?

Read articles from industry experts.

Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.

Screenshot of an Article

Working on a long term project?

Store your work and research.

Save solutions to your questions, answers you’ve discovered through searching plus helpful articles in your personal knowledgebase for easy future access.

Screenshot of Experts Exchange Knowledgebase

Access the answers to your technology questions today.

Subscribe Now

30-day free trial. Register in 60 seconds.

What Makes Experts Exchange Unique?

Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Trusted by the world's most respected brands.

image of each brand's logo

Faithfully serving IT professionals since 1996.

Experts Exchange Logo

Try it out and discover for yourself.

Subscribe Now

30-day free trial. Register in 60 seconds.

Related Solutions

  1. How to insert flash banner in Joomla 1.5
    Hi Trying to get flash banner to work on www.itfixng.com I have read through the forum and fell over this answer http://www.experts-exchange.com/Software/Server_Software/Content_Management/WebBased_CMS/Q_23964241.html?sfQueryTermInfo=1+10+banner+flash+joomla I would like t...
  2. Image banner changing for Joomla Template development
    Hi all, I'm new to developing Joomla template. Below are the screenshots of a rough layout boxes I have created. I need a left navigation which servces as an drop down or accordian menu. As for the Image Banner / Flash Banner, I need to ask is there any possible to change it ...
  3. Rotating banner on Joomla site
    Is there a way to disable banner rotation on a Joomla site. The one that shows batterflies and the Frog.

Free Tech Articles

  1. WARNING: 5 Reasons why you should NEVER fix a computer for free.
    It is in our nature to love the puzzle. We are obsessed. The lot of us. We love puzzles. We love the challenge. We thrive on finding the answer. We hate disarray. It bothers us deep in our soul. W...
  2. SCCM OSD Basic troubleshooting
    SCCM 2007 OSD is a fantastic way to deploy operating systems, however, like most things SCCM issues can sometimes be difficult to resolve due to the sheer volume of logs to sift through and the dispe...
  3. Migrate Small Business Server 2003 to Exchange 2010 and Windows 2008 R2
    This guide is intended to provide step by step instructions on how to migrate from Small Business Server 2003 to Windows 2008 R2 with Exchange 2010. For this migration to work you will need the fo...
  4. Create a Win7 Gadget
    This article shows you how to create a simple "Gadget" -- a sort of mini-application supported by Windows 7 and Vista. Gadgets can be dropped anywhere on the desktop to provide instant information, ...
  5. Outlook continually prompting for username and password
    There have been a lot of questions recently regarding Outlook prompting for a username and password whilst using Exchange 2007. There are a few reasons why this would happen and I will try to cover t...
  6. Backup Exchange 2010 Information Store using Windows Backup
    There seems to be quite a lot of confusion around the ability to backup Exchange 2010 using the built in Windows Backup feature. This stems from the omission of this feature prior to Exchange 2007 s...

Cloud Class Webinars

  1. Avoiding Bugs in Microsoft Access
    Alison Balter takes and in-depth look at avoiding bugs in Access. In this webinar you will learn about using the immediate window to debug your applications, invoking the debugger, using breakpoints to troubleshoot, stepping through code, setting the next statement to execute, ...
  2. Top 10 Best New Features in Visio 2010
    Scott Helmers gives live demonstrations of the top 10 new features in Visio 2010. This webinar will teach you how to create compelling diagrams by adding shapes to the page with a single click, linking the shapes in a diagram to data in Excel (or SQL Server, or SharePoint), ...
  3. IT Consultant Business Secrets Revealed
    Michael Munger, Experts Exchange tech pro and IT consultant, pulls back the curtain on his very successful businesses and answers question on every IT consultant and business owner should know about. He shares secrets on what he did to solve the 5 most common problems in IT, ...
  4. Disaster Recovery and Business Continuity
    Quest CTO, Mike Billon, gives an overview of the steps involved in building a dunamic disaster recovery plan. Through case studies and an examination of software/hardware tooles for monitoring and testing, you'll gain a better understandin of where you are, where you want ...
  5. Organize Your Visio Diagrams with Containers and Lists
    Scott Helmers uses cross functional flowcharts, wireframe diagrams, data graphic legends and seating charts to teach you: how to ustilize all three new structured diagram components in Visio 2010, the best practices for organizeing shapes in previous version of Visio, how to organize ...
  6. How to Us Objects, Properties, Events and Methods in Microsoft Access
    Alison Dalter gives an in-depbth look at objects, properties, events and methods in Microsoft Access. In this webinar you will learn about using the object browser, referring to objects, working with properties and methods, working with object variables, understanding the ...

Join the Community

Give a Little. Get a Lot.

Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.

Join the Community

Answers

 

by: rowbyPosted on 2009-08-05 at 12:57:55ID: 25027429

Hi WhiteMafiosi,

Just so I understand it you want the banners to be to the right of the module that is titled  "Neste kamp", Siste kamper,and the "Vote" module?

You want the banner to be in the right "margin", where nothing is now?

Well you might try doing that with a Module Class Suffix.  You might give the module you want to be in the right area unique Module Class Suffix that you will find in the module itself.

Are you familiar with css?  If so you would then try giving the unique style a negative margin, such as -200px.

Is this something you might want to try?

Rowby

 

by: rowbyPosted on 2009-08-05 at 12:59:43ID: 25027455

more specifically a -200px rignt margin, and then probably  minus left margin -- something like -20px or whatever it takes to move that new banner module into the position you want it to be.

 

by: WhiteMafiosiPosted on 2009-08-05 at 13:07:27ID: 25027544

Hi rowby!

You are correct regarding the position of the module :)
I dont have much experience in hmt/php development so I need someone to help me on the way with the coding of the module!?

What code do I need to "call" the module? I assume I need to insert the code in the index.php for the template? Or do I hardcode it directy to the index.php of the joomla installation? :)

 

by: WhiteMafiosiPosted on 2009-08-05 at 14:03:30ID: 25028066

I have added a module class suffix called _flexbanner for the module I want on the right. Is this the correct code to insert into template? I cannot get the module to show.

table.moduletable_flexbanner th {
  font-size        : small;
  font-weight      : bold;
  color            : #888;
  background      : #FFF;
  text-align      : right;
  padding-left    : 3px;
  padding-right    : 20px;
  letter-spacing  : -1px;
  border-bottom    : 2px solid #999999;
}

Before I edited the CSS it looked like this

/* begin Page */
 
/* Generated with Artisteer version 2.2.0.17981, file checksum is FCFEE751. */
 
body
{
	margin: 0 auto;
	padding: 0;
	background-color: #FCFCFD;
}
 
#art-main
{
	position: relative;
	width: 100%;
	left: 0;
	top: 0;
}
 
 
 
 
 
#art-page-background-simple-gradient
{
	position: absolute;
	background-image: url('../images/Page-BgSimpleGradient.jpg');
	background-repeat: repeat-x;
	top:0;
	width: 100%;
	height: 500px;
}
 
.cleared
{
	float: none;
	clear: both;
	margin: 0;
	padding: 0;
	border: none;
	font-size:1px;
}
 
 
form
{
	padding:0 !important;
	margin:0 !important;
}
 
table.position
{
	position: relative;
	width: 100%;
	table-layout: fixed;
}
/* end Page */
 
/* begin Box, Sheet */
.art-Sheet
{
	position:relative;
	z-index:0;
	margin:0 auto;
	width: 800px;
	min-width:27px;
	min-height:27px;
}
 
.art-Sheet-body
{
	position: relative;
	z-index:1;
	padding: 5px;
}
 
.art-Sheet-tr, .art-Sheet-tl, .art-Sheet-br, .art-Sheet-bl, .art-Sheet-tc, .art-Sheet-bc,.art-Sheet-cr, .art-Sheet-cl
{
	position:absolute;
	z-index:-1;
}
 
.art-Sheet-tr, .art-Sheet-tl, .art-Sheet-br, .art-Sheet-bl
{
	width: 26px;
	height: 26px;
	background-image: url('../images/Sheet-s.png');
}
 
.art-Sheet-tl
{
	top:0;
	left:0;
	clip: rect(auto, 13px, 13px, auto);
}
 
.art-Sheet-tr
{
	top: 0;
	right: 0;
	clip: rect(auto, auto, 13px, 13px);
}
 
.art-Sheet-bl
{
	bottom: 0;
	left: 0;
	clip: rect(13px, 13px, auto, auto);
}
 
.art-Sheet-br
{
	bottom: 0;
	right: 0;
	clip: rect(13px, auto, auto, 13px);
}
 
.art-Sheet-tc, .art-Sheet-bc
{
	left: 13px;
	right: 13px;
	height: 26px;
	background-image: url('../images/Sheet-h.png');
}
 
.art-Sheet-tc
{
	top: 0;
	clip: rect(auto, auto, 13px, auto);
}
 
.art-Sheet-bc
{
	bottom: 0;
	clip: rect(13px, auto, auto, auto);
}
 
.art-Sheet-cr, .art-Sheet-cl
{
	top: 13px;
	bottom: 13px;
	width: 26px;
	background-image: url('../images/Sheet-v.png');
}
 
.art-Sheet-cr
{
	right:0;
	clip: rect(auto, auto, auto, 13px);
}
 
.art-Sheet-cl
{
	left:0;
	clip: rect(auto, 13px, auto, auto);
}
 
.art-Sheet-cc
{
	position:absolute;
	z-index:-1;
	top: 13px;
	left: 13px;
	right: 13px;
	bottom: 13px;
	background-color: #F9FAFB;
}
 
 
.art-Sheet
{
	margin-top: 30px !important;
}
 
#art-page-background-simple-gradient, #art-page-background-gradient, #art-page-background-glare
{
	min-width:800px;
}
 
/* end Box, Sheet */
 
/* begin Header */
div.art-Header
{
	margin: 0 auto;
	position: relative;
	z-index:0;
	width: 790px;
	height: 140px;
}
 
div.art-Header-png
{
	position: absolute;
	z-index:-2;
	top: 0;
	left: 0;
	width: 790px;
	height: 140px;
	background-image: url('../images/Header.png');
	background-repeat: no-repeat;
	background-position: left top;
}
 
div.art-Header-jpeg
{
	position: absolute;
	z-index:-1;
	top: 0;
	left: 0;
	width: 790px;
	height: 140px;
	background-image: url('../images/Header.jpg');
	background-repeat: no-repeat;
	background-position: center center;
}
/* end Header */
 
/* begin Menu */
/* menu structure */
 
.art-menu a, .art-menu a:link, .art-menu a:visited, .art-menu a:hover
{
	text-align:left;
	text-decoration:none;
	outline:none;
	letter-spacing:normal;
	word-spacing:normal;
}
 
.art-menu, .art-menu ul
{
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}
 
.art-menu li
{
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;
	position: relative;
	z-index: 5;
	background:none;
}
 
.art-menu li:hover
{
	z-index: 10000;
	white-space: normal;
}
 
.art-menu li li
{
	float: none;
}
 
.art-menu ul
{
	visibility: hidden;
	position: absolute;
	z-index: 10;
	left: 0;
	top: 0;
	background:none;
}
 
.art-menu li:hover>ul
{
	visibility: visible;
	top: 100%;
}
 
.art-menu li li:hover>ul
{
	top: 0;
	left: 100%;
}
 
.art-menu:after, .art-menu ul:after
{
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.art-menu, .art-menu ul
{
	min-height: 0;
}
 
.art-menu ul
{
	background-image: url(../images/spacer.gif);
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
}
 
.art-menu ul ul
{
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
 
 
 
 
 
/* menu structure */
 
.art-menu
{
	padding: 4px 2px 0px 2px;
}
 
.art-nav
{
	position: relative;
	height: 29px;
	z-index: 100;
}
 
.art-nav .l, .art-nav .r
{
	position: absolute;
	z-index: -1;
	top: 0;
	height: 29px;
	background-image: url('../images/nav.png');
}
 
.art-nav .l
{
	left: 0;
	right:0px;
}
 
.art-nav .r
{
	right: 0;
	width: 790px;
	clip: rect(auto, auto, auto, 790px);
}
 
 
/* end Menu */
 
/* begin MenuItem */
.art-menu ul li
{
	clear: both;
}
 
.art-menu a
{
	position:relative;
	display: block;
	overflow:hidden;
	height: 25px;
	cursor: pointer;
	text-decoration: none;
	margin-right: 1px;
	margin-left: 1px;
}
 
 
.art-menu a .r, .art-menu a .l
{
	position:absolute;
	display: block;
	top:0;
	z-index:-1;
	height: 75px;
	background-image: url('../images/MenuItem.png');
}
 
.art-menu a .l
{
	left:0;
	right:11px;
}
 
.art-menu a .r
{
	width:422px;
	right:0;
	clip: rect(auto, auto, auto, 411px);
}
 
.art-menu a .t 
{
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
	color: #000000;
	padding: 0 2px;
	margin: 0 11px;
	line-height: 25px;
	text-align: center;
}
 
.art-menu a:hover .l, .art-menu a:hover .r
{
	top:-25px;
}
 
.art-menu li:hover>a .l, .art-menu li:hover>a .r
{
	top:-25px;
}
 
.art-menu li:hover a .l, .art-menu li:hover a .r
{
	top:-25px;
}
.art-menu a:hover .t
{
	color: #000000;
}
 
.art-menu li:hover a .t
{
	color: #000000;
}
 
.art-menu li:hover>a .t
{
	color: #000000;
}
 
 
.art-menu a.active .l, .art-menu a.active .r
{
	top: -50px;
}
 
.art-menu a.active .t
{
	color: #000000;
}
 
 
/* end MenuItem */
 
/* begin MenuSubItem */
.art-menu ul a
{
	display:block;
	text-align: center;
	white-space: nowrap;
	height: 20px;
	width: 180px;
	overflow:hidden;
	line-height: 20px;
	margin-right: auto;
 
 
	background-image: url('../images/subitem-bg.png');
	background-position: left top;
	background-repeat: repeat-x;
	border-width: 0px;
	border-style: solid;
}
 
.art-nav ul.art-menu ul span, .art-nav ul.art-menu ul span span
{
	display: inline;
	float: none;
	margin: inherit;
	padding: inherit;
	background-image: none;
	text-align: inherit;
	text-decoration: inherit;
}
 
.art-menu ul a, .art-menu ul a:link, .art-menu ul a:visited, .art-menu ul a:hover, .art-menu ul a:active, .art-nav ul.art-menu ul span, .art-nav ul.art-menu ul span span
{
	text-align: left;
	text-indent: 12px;
	text-decoration: none;
	line-height: 20px;
	color: #000000;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
}
 
.art-menu ul ul a
{
	margin-left: auto;
}
 
.art-menu ul li a:hover
{
	color: #000000;
	background-position: 0 -20px;
}
 
.art-menu ul li:hover>a
{
	color: #000000;
	background-position: 0 -20px;
}
 
.art-nav .art-menu ul li a:hover span, .art-nav .art-menu ul li a:hover span span
{
	color: #000000;
}
 
.art-nav .art-menu ul li:hover>a span, .art-nav .art-menu ul li:hover>a span span
{
	color: #000000;
}
 
 
/* end MenuSubItem */
 
/* begin ContentLayout */
.art-contentLayout
{
	position: relative;
	margin-bottom: 0px;
	width: 790px;
}
/* end ContentLayout */
 
/* begin Box, Block */
.art-Block
{
	position:relative;
	z-index:0;
	margin:0 auto;
	min-width:1px;
	min-height:1px;
}
 
.art-Block-body
{
	position: relative;
	z-index:1;
	padding: 0px;
}
 
 
 
.art-Block
{
	margin: 10px;
}
 
/* end Box, Block */
 
/* begin BlockHeader */
.art-BlockHeader
{
	position:relative;
	z-index:0;
	height: 30px;
	padding: 0 8px;
	margin-bottom: 0px;
}
 
.art-BlockHeader .t
{
	height: 30px;
	color: #000000;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	white-space : nowrap;
	padding: 0 6px;
	line-height: 30px;
}
 
.art-BlockHeader .l, .art-BlockHeader .r
{
	display:block;
	position:absolute;
	z-index:-1;
	height: 30px;
	background-image: url('../images/BlockHeader.png');
}
 
.art-BlockHeader .l
{
	left:0;
	right:9px;
}
 
.art-BlockHeader .r
{ 
	width:790px;
	right:0;
	clip: rect(auto, auto, auto, 781px);
}
 
 
 
 
/* end BlockHeader */
 
/* begin Box, BlockContent */
.art-BlockContent
{
	position:relative;
	z-index:0;
	margin:0 auto;
	min-width:19px;
	min-height:19px;
}
 
.art-BlockContent-body
{
	position: relative;
	z-index:1;
	padding: 8px;
}
 
.art-BlockContent-tr, .art-BlockContent-tl, .art-BlockContent-br, .art-BlockContent-bl, .art-BlockContent-tc, .art-BlockContent-bc,.art-BlockContent-cr, .art-BlockContent-cl
{
	position:absolute;
	z-index:-1;
}
 
.art-BlockContent-tr, .art-BlockContent-tl, .art-BlockContent-br, .art-BlockContent-bl
{
	width: 18px;
	height: 18px;
	background-image: url('../images/BlockContent-s.png');
}
 
.art-BlockContent-tl
{
	top:0;
	left:0;
	clip: rect(auto, 9px, 9px, auto);
}
 
.art-BlockContent-tr
{
	top: 0;
	right: 0;
	clip: rect(auto, auto, 9px, 9px);
}
 
.art-BlockContent-bl
{
	bottom: 0;
	left: 0;
	clip: rect(9px, 9px, auto, auto);
}
 
.art-BlockContent-br
{
	bottom: 0;
	right: 0;
	clip: rect(9px, auto, auto, 9px);
}
 
.art-BlockContent-tc, .art-BlockContent-bc
{
	left: 9px;
	right: 9px;
	height: 18px;
	background-image: url('../images/BlockContent-h.png');
}
 
.art-BlockContent-tc
{
	top: 0;
	clip: rect(auto, auto, 9px, auto);
}
 
.art-BlockContent-bc
{
	bottom: 0;
	clip: rect(9px, auto, auto, auto);
}
 
.art-BlockContent-cr, .art-BlockContent-cl
{
	top: 9px;
	bottom: 9px;
	width: 18px;
	background-image: url('../images/BlockContent-v.png');
}
 
.art-BlockContent-cr
{
	right:0;
	clip: rect(auto, auto, auto, 9px);
}
 
.art-BlockContent-cl
{
	left:0;
	clip: rect(auto, 9px, auto, auto);
}
 
.art-BlockContent-cc
{
	position:absolute;
	z-index:-1;
	top: 9px;
	left: 9px;
	right: 9px;
	bottom: 9px;
	background-color: #FFFFFF;
}
 
 
.art-BlockContent-body
{
	color:#000000;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
	line-height: 200%;
}
 
.art-BlockContent-body a:link
{
	color: #000000;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: underline;
}
 
.art-BlockContent-body a:visited, .art-BlockContent-body a.visited
{
	color: #000000;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: underline;
}
 
.art-BlockContent-body a:hover, .art-BlockContent-body a.hover
{
	color: #646478;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: none;
}
 
.art-BlockContent-body ul
{
	list-style-type: none;
	color: #3F5469;
	margin:0;
	padding:0;
}
 
.art-BlockContent-body li
{
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
}
 
 
/* end Box, BlockContent */
 
/* begin Box, Post */
.art-Post
{
	position:relative;
	z-index:0;
	margin:0 auto;
	min-width:1px;
	min-height:1px;
}
 
.art-Post-body
{
	position: relative;
	z-index:1;
	padding: 0px;
}
 
 
 
.art-Post
{
	margin: 0px;
}
 
/* Start images */
a img
{
	border: 0;
}
 
.art-article img, img.art-article
{
	margin: 1em;
}
 
.art-metadata-icons img
{
	border: none;
	vertical-align: middle;
	margin:2px;
}
/* Finish images */
 
/* Start tables */
 
.art-article table, table.art-article
{
	border-collapse: collapse;
	margin: 1px;
	width:auto;
}
 
.art-article table, table.art-article .art-article tr, .art-article th, .art-article td
{
	background-color:Transparent;
}
 
.art-article th, .art-article td
{
	padding: 2px;
	border: solid 1px #0E1D25;
	vertical-align: top;
	text-align:left;
}
 
.art-article th
{
	text-align:center;
	vertical-align:middle;
	padding: 7px;
}
 
/* Finish tables */
/* end Box, Post */
 
/* begin PostHeaderIcon */
.art-PostHeaderIcon-wrapper
{
	text-decoration:none;
	margin: 0.2em 0;
	padding: 0;
	font-weight:normal;
	font-style:normal;
	letter-spacing:normal;
	word-spacing:normal;
	font-variant:normal;
	text-decoration:none;
	font-variant:normal;
	text-transform:none;
	text-align:left;
	text-indent:0;
	line-height:inherit;
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
}
 
.art-PostHeaderIcon-wrapper, .art-PostHeaderIcon-wrapper a, .art-PostHeaderIcon-wrapper a:link, .art-PostHeaderIcon-wrapper a:visited, .art-PostHeaderIcon-wrapper a:hover
{
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
}
 
/* end PostHeaderIcon */
 
/* begin PostHeader */
.art-PostHeader a:link
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  text-decoration: none;
  text-align: left;
  color: #000000;
}
 
.art-PostHeader a:visited, .art-PostHeader a.visited
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  text-decoration: none;
  text-align: left;
  color: #000000;
}
 
.art-PostHeader a:hover, .art-PostHeader a.hovered
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  text-decoration: underline;
  text-align: left;
  color: #000000;
}
/* end PostHeader */
 
/* begin PostIcons */
.art-PostHeaderIcons
{
	padding:1px;
}
 
.art-PostHeaderIcons, .art-PostHeaderIcons a, .art-PostHeaderIcons a:link, .art-PostHeaderIcons a:visited, .art-PostHeaderIcons a:hover
{
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 10px;
	font-style: italic;
	font-weight: normal;
	color: #000000;
}
 
.art-PostHeaderIcons a, .art-PostHeaderIcons a:link, .art-PostHeaderIcons a:visited, .art-PostHeaderIcons a:hover
{
	margin:0;
}
 
.art-PostHeaderIcons a:link
{
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-style: italic;
	font-weight: normal;
	text-decoration: underline;
	color: #000000;
}
 
.art-PostHeaderIcons a:visited, .art-PostHeaderIcons a.visited
{
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: underline;
	color: #000000;
}
 
.art-PostHeaderIcons a:hover, .art-PostHeaderIcons a.hover
{
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: none;
	color: #000000;
}
/* end PostIcons */
 
/* begin PostContent */
/* Content Text Font & Color (Default) */
body
{
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
  font-size: 11px;
  font-style: normal;
  font-weight: normal;
  color: #000000;
}
 
.art-PostContent
{
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
  text-align: left;
  margin-left: 0px;
  margin-right: 0px;
  line-height: 150%;
  color: #000000;
}
 
/* Start Content link style */
/*
The right order of link pseudo-classes: Link-Visited-Hover-Focus-Active.
http://www.w3schools.com/CSS/css_pseudo_classes.asp
http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states/
*/
a
{
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
  text-decoration: underline;
  color: #000000;
}
 
/* Adds special style to an unvisited link. */
a:link
{
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
  text-decoration: underline;
  color: #000000;
}
 
/* Adds special style to a visited link. */
a:visited, a.visited
{
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
  text-decoration: underline;
  color: #000000;
}
 
/* :hover - adds special style to an element when you mouse over it. */
a:hover, a.hover
{
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
  text-decoration: none;
  color: #000000;
}
 
/* Finish Content link style */
 
/* Resert some headings default style & links default style for links in headings*/
h1, h2, h3, h4, h5, h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited
{
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
}
 
 
/* Start Content headings Fonts & Colors  */
h1, h1 a, h1 a:link, h1 a:visited, h1 a:hover
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  font-size: 18px;
  font-style: normal;
  font-weight: bold;
  text-align: left;
  color: #000000;
}
 
h2, h2 a, h2 a:link, h2 a:visited, h2 a:hover
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  font-size: 16px;
  text-align: left;
  color: #000000;
}
 
h3, h3 a, h3 a:link, h3 a:visited, h3 a:hover
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  text-align: left;
  color: #000000;
}
 
h4, h4 a, h4 a:link, h4 a:visited, h4 a:hover
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  font-size: 14px;
  text-align: left;
  color: #000000;
}
 
h5, h5 a, h5 a:link, h5 a:visited, h5 a:hover
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  font-size: 12px;
  text-align: left;
  color: #000000;
}
 
h6, h6 a, h6 a:link, h6 a:visited, h6 a:hover
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  font-size: 11px;
  text-align: left;
  color: #000000;
}
/* Finish Content headings Fonts & Colors  */
 
 
/* end PostContent */
 
/* begin PostBullets */
/* Start Content list */
ol, ul
{
	color: #000000;
	margin:1em 0 1em 2em;
	padding:0;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
}
 
li ol, li ul
{
	margin:0.5em 0 0.5em 2em;
	padding:0;
}
 
li 
{
	margin:0.2em 0;
	padding:0;
}
 
ul
{
	list-style-type: none;
}
 
ol
{
	list-style-position:inside;
	
}
 
 
 
/* Finish Content list */
/* end PostBullets */
 
/* begin PostQuote */
/* Start blockquote */
blockquote p
{
	color:#000000;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-align: left;
}
 
blockquote
{
		border:solid 1px #E9E9E9; 
		margin:10px 10px 10px 50px;
	padding:5px 5px 5px 28px;
	background-color:#E9E9E9;
	background-image:url('../images/PostQuote.png');
	background-position:left top;
	background-repeat:no-repeat;
}
 
 
/* Finish blockuote */
/* end PostQuote */
 
/* begin Button */
.art-button-wrapper .art-button
{
	display:inline-block;
	width: auto;
	outline:none;
	border:none;
	background:none;
	line-height:23px;
	margin:0 !important;
	padding:0 !important;
	overflow: visible;
	cursor: default;
	text-decoration: none !important;
	z-index:0;
}
 
.art-button-wrapper
{
	display:inline-block;
	position:relative;
	height: 23px;
	overflow:hidden;
	white-space: nowrap;
	width: auto;
	z-index:0;
}
 
.art-button-wrapper .art-button
{
	display:block;
	height: 23px;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
	white-space: nowrap;
	text-align: left;
	padding: 0 7px !important;
	line-height: 23px;
	text-decoration: none !important;
	color: #306482 !important;
}
 
input, select
{
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
}
 
.art-button-wrapper.hover .art-button, .art-button:hover
{
	color: #FFF3E1 !important;
	text-decoration: none !important;
}
 
.art-button-wrapper.active .art-button
{
	color: #F2F5F7 !important;
}
 
.art-button-wrapper .l, .art-button-wrapper .r
{
	display:block;
	position:absolute;
	z-index:-1;
	height: 69px;
	background-image: url('../images/Button.png');
}
 
.art-button-wrapper .l
{
	left:0;
	right:7px;
}
 
.art-button-wrapper .r
{
	width:415px;
	right:0;
	clip: rect(auto, auto, auto, 408px);
}
 
.art-button-wrapper.hover .l, .art-button-wrapper.hover .r
{
	top: -23px;
}
 
.art-button-wrapper.active .l, .art-button-wrapper.active .r
{
	top: -46px;
}
 
 
/* end Button */
 
/* begin Footer */
.art-Footer
{
	position:relative;
	z-index:0;
	overflow:hidden;
	width: 790px;
	margin: 5px auto 0px auto;
}
 
.art-Footer .art-Footer-inner
{
	height:1%;
	position: relative;
	z-index: 0;
	padding: 20px;
	text-align: center;
}
 
 
 
.art-rss-tag-icon
{
	position: relative;
	display:block;
	float:left;
	background-image: url('../images/livemarks.png');
	background-position: center right;
	background-repeat: no-repeat;
	margin: 0 5px 0 0;
	height: 32px;
	width: 32px;
}
 
 
 
 
.art-Footer .art-Footer-text p
{
	margin: 0;
}
 
.art-Footer .art-Footer-text
{
	display:inline-block;
	color:#000000;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	letter-spacing: 1px;
}
 
.art-Footer .art-Footer-text a:link
{
	text-decoration: none;
	color: #2F617F;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: underline;
}
 
.art-Footer .art-Footer-text a:visited
{
	text-decoration: none;
	color: #41576C;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: underline;
}
 
.art-Footer .art-Footer-text a:hover
{
	text-decoration: none;
	color: #1E3F52;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: none;
}
/* end Footer */
 
/* begin PageFooter */
.art-page-footer, .art-page-footer a, .art-page-footer a:link, .art-page-footer a:visited, .art-page-footer a:hover
{
	font-family:Arial;
	font-size:10px;
	letter-spacing:normal;
	word-spacing:normal;
	font-style:normal;
	font-weight:normal;
	text-decoration:underline;
	color:#5096BE;
}
 
.art-page-footer
{
	margin:1em;
	text-align:center;
	text-decoration:none;
	color:#6987A5;
}
/* end PageFooter */
 
/* begin LayoutCell */
.art-contentLayout .art-sidebar1
{
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	float: left;
	overflow: hidden;
	width: 189px;
}
/* end LayoutCell */
 
/* begin LayoutCell */
.art-contentLayout .art-content
{
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	float: left;
	overflow: hidden;
	width: 411px;
}
.art-contentLayout .art-content-sidebar1
{
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	float: left;
	overflow: hidden;
	width: 600px;
}
.art-contentLayout .art-content-sidebar2
{
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	float: left;
	overflow: hidden;
	width: 600px;
}
.art-contentLayout .art-content-wide
{
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	float: left;
	overflow: hidden;
	width: 789px;
}
/* end LayoutCell */
 
/* begin LayoutCell */
.art-contentLayout .art-sidebar2
{
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	float: left;
	overflow: hidden;
	width: 189px;
}
/* end LayoutCell */
 
 
 
.art-contentLayout li
{
	float: none;
}
 
table.moduletable th
{
	font-size: 140%;
	padding: .5em 0em;
}
 
#footer
{
	text-align: center;
}
 
.breadcrumbs
{
	display: block;
	padding: .7em 0em;
}
 
.contentpaneopen span.small, .contentpaneopen td.createdate, .contentpaneopen td.modifydate
{
	font-size: 75%;
	padding-bottom: 1em;
}
 
.column_separator 
{
	padding-left: .4em;
}
 
.pagination span
{
	padding: 2px;
}
 
.pagination a
{
	padding: 2px;
}
 
div.offline
{
	background: #fffebb;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1.2em;
	padding: 5px;
}
 
span.pathway
{
	display: block;
	margin: 0 20px;
	height: 16px;
	line-height: 16px;
	overflow: hidden;
}
 
/* headers */
table.moduletable th, legend
{
	margin: 0;
	font-weight: bold;
	font-family: Helvetica,Arial,sans-serif;
	font-size: 1.5em;
	padding-left: 0px;
	margin-bottom: 10px;
	text-align: left;
}
 
/* form validation */
.invalid
{
	border-color: #ff0000;
}
 
label.invalid
{
	color: #ff0000;
}
 
 
/** overlib **/
 
.ol-foreground
{
	background-color: #f6f6f6;
}
 
.ol-background
{
	background-color: #666;
}
 
.ol-textfont
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}
 
.ol-captionfont
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #f6f6f6;
	font-weight: bold;
}
 
.ol-captionfont a
{
	color: #0B55C4;
	text-decoration: none;
	font-size: 12px;
}
 
/* spacers */
span.article_separator
{
	display: none;
}
 
.column_separator
{
	padding-left: 10px;
}
 
td.buttonheading img
{
	border: none;
}
 
.clr
{
	clear: both;
}
 
div#maindivider
{
	border-top: 1px solid #ddd;
	margin-bottom: 10px;
	overflow: hidden;
	height: 1px;
}
 
table.blog span.article_separator
{
	display: none;
}
 
/* edit button */
.contentpaneopen_edit
{
	float: left;
}
 
/* table of contents */
table.contenttoc
{
	margin: 5px;
	border: 1px solid #ccc;
	padding: 5px;
	float: right;
}
 
table.contenttoc td
{
	padding: 0 5px;
}
 
 
/* content tables */
td.sectiontableheader
{
	background: #efefef;
	color: #333;
	font-weight: bold;
	padding: 4px;
	border-right: 1px solid #fff;
}
 
tr.sectiontableentry0 td,
tr.sectiontableentry1 td,
tr.sectiontableentry2 td
{
	padding: 4px;
}
 
td.sectiontableentry0,
td.sectiontableentry1,
td.sectiontableentry2
{
	padding: 3px;
}
 
 
/* content styles */
table.contentpaneopen, table.contentpane
{
	margin: 0;
	padding: 0;
	width: auto;
}
 
table.contentpaneopen li
{
	margin-bottom: 5px;
}
 
table.contentpaneopen fieldset
{
	border: 0;
	border-top: 1px solid #ddd;
}
 
table.contentpaneopen h3
{
	margin-top: 25px;
}
 
table.contentpaneopen h4
{
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
}
 
.highlight
{
	background-color: #fffebb;
}
 
/* module control elements */
table.user1user2 div.moduletable
{
	margin-bottom: 0px;
}
 
div.moduletable, div.module
{
	margin-bottom: 25px;
}
 
div.module_menu h3
{
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #eee;
	margin: -23px -4px 5px -5px;
	padding-left: 10px;
	padding-bottom: 2px;
}
 
div.module_menu
{
	margin: 0;
	padding: 0;
	margin-bottom: 15px;
}
 
div.module_menu div div div
{
	padding: 10px;
	padding-top: 30px;
	padding-bottom: 15px;
	width: auto;
}
 
div.module_menu div div div div
{
	background: none;
	padding: 0;
}
 
div.module_menu ul
{
	margin: 10px 0;
	padding-left: 20px;
}
 
div.module_menu ul li a:link, div.module_menu ul li a:visited
{
	font-weight: bold;
}
 
#leftcolumn div.module
{
	padding: 0 10px;
}
 
#leftcolumn div.module table
{
	width: auto;
}
 
/* forms */
table.adminform textarea
{
	width: 540px;
	height: 400px;
	font-size: 1em;
	color: #000099;
}
 
div.search input
{
	width: 145px;
	border: 1px solid #ccc;
	margin: 15px 0 10px 0;
}
 
form#form-login
{
	text-align: left;
}
 
form#form-login fieldset
{
	border: 0 none;
	margin: 0;
	padding: 0.2em;
}
 
form#form-login ul
{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
 
form#form-login ul li
{
	background-image: none;
	padding: 0;
}
 
#modlgn_username, #modlgn_passwd
{
	width: 90%;
}
 
#form-login-username, #form-login-password, #form-login-remember
{
	display: block;
	margin: 0;
}
 
form#com-form-login
{
	text-align: left;
}
 
form#com-form-login fieldset
{
	border: 0 none;
	margin: 0;
	padding: 0.2em;
}
 
form#com-form-login ul
{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
 
form#com-form-login ul li
{
	background-image: none;
	padding: 0;
}
 
/* thumbnails */
div.mosimage
{
	margin: 5px;
}
 
div.mosimage_caption {
	font-size: .90em;
	color: #666;
}
 
div.caption
{
	padding: 0 10px 0 10px;
}
 
div.caption img
{
	border: 1px solid #CCC;
}
 
div.caption p
{
	font-size: .90em;
	color: #666;
	text-align: center;
}
 
/* Parameter Table */
table.paramlist
{
	margin-top: 5px;
}
 
table.paramlist td.paramlist_key
{
	width: 128px;
	text-align: left;
	height: 30px;
}
 
div.message
{
	font-weight: bold;
	font-size: 14px;
	color: #c30;
	text-align: center;
	width: auto;
	background-color: #f9f9f9;
	border: solid 1px #d5d5d5;
	margin: 3px 0px 10px;
	padding: 3px 20px;
}
 
/* Banners module */
 
/* Default skyscraper style */
.banneritem img
{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
 
/* Text advert style */
 
.banneritem_text
{
	padding: 4px;
	font-size: 11px;
}
 
.bannerfooter_text
{
	padding: 4px;
	font-size: 11px;
	background-color: #f7f7f7;
	text-align: right;
}
 
/* System Messages */
/* see system general.css */
 
.pagination span
{
	padding: 2px;
}
 
.pagination a
{
	padding: 2px;
}
 
/* Polls */
.pollstableborder
{
	margin-top: 8px;
}
 
 
.pollstableborder td
{
	text-align: left;
	
}
 
/* WebLinks */
span.description
{
	display: block;
	padding-left: 30px;
}
 
/* Frontend Editing*/
fieldset
{
	border: 1px solid #ccc;
	margin-top: 15px;
	padding: 15px;
}
 
legend
{
	margin: 0;
	padding: 0 10px;
}
 
td.key
{
	border-bottom: 1px solid #eee;
	color: #666;
}
 
/* Tooltips */
 
.tool-tip
{
	float: left;
	background: #ffc;
	border: 1px solid #d4d5aa;
	padding: 5px;
	max-width: 200px;
}
 
.tool-title
{
	padding: 0;
	margin: 0;
	font-size: 100%;
	font-weight: bold;
	margin-top: -15px;
	padding-top: 15px;
	padding-bottom: 5px;
	background: url(../../system/images/selector-arrow.png) no-repeat;
}
 
.tool-text
{
	font-size: 100%;
	margin: 0;
}
 
/* System Standard Messages */
#system-message
{
	margin-bottom: 20px;
}
 
#system-message dd.message ul
{
	background: #c3d2e5 url(../../system/images/notice-info.png) 4px center no-repeat;
	border-top: 3px solid #de7a7b;
	border-bottom: 3px solid #de7a7b;
	margin:0px;
	padding-left: 40px;
	text-indent:0px;
}
 
/* System Error Messages */
#system-message dd.error ul
{
	color: #c00;
	background: #e6c0c0 url(../../system/images/notice-alert.png) 4px center no-repeat;
	border-top: 3px solid #DE7A7B;
	border-bottom: 3px solid #DE7A7B;
	margin: 0px;
	padding-left: 40px;
	text-indent: 0px;
}
 
/* System Notice Messages */
#system-message dd.notice ul
{
	color: #c00;
	background: #efe7b8 url(../../system/images/notice-note.png) 4px center no-repeat;
	border-top: 3px solid #f0dc7e;
	border-bottom: 3px solid #f0dc7e;
	margin: 0px;
	padding-left: 40px;
	text-indent: 0px;
 }
 
#syndicate
{
	float: left;
	padding-left: 25px;
}
 
/* Component Specific Fixes */
 
#component-contact table td
{
	padding: 2px 0;
}
 
.breadcrumbs img
{
	margin: 0px;
	padding: 0px;
	border: 0px;
}
 
.mceToolbarTop {
	white-space: normal;
}
 
.mceEditor
{
	background: none;
}
 
#archive-list
{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
 
#archive-list li
{
	list-style-type: none;
	background-image: none;
	margin-left: 0px;
	padding-left: 0px;
}
 
#navigation
{
	text-align: center;
}
 
.article h3 img
{
	border: none;
	display: inline;
	margin: 0;
	padding: 0;
}
 
.art-Footer-text .moduletable
{
	border: none;
	margin: 0;
	padding: 0;
}
 
.pollstableborder td {
	vertical-align: middle;
}
 
.img_caption.left
{
	float: left;
	margin-right: 1em;
}
 
.img_caption.right
{
	float: right;
	margin-left: 1em;
}
 
.img_caption.left p
{
	clear: left;
	text-align: center;
}
 
.img_caption.right p
{
	clear: right;
	text-align: center;
}
 
.img_caption img
{
	margin: 0em;
}
 
.contentheading
{
font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  text-align: left;
  color: #000000;
}
                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
521:
522:
523:
524:
525:
526:
527:
528:
529:
530:
531:
532:
533:
534:
535:
536:
537:
538:
539:
540:
541:
542:
543:
544:
545:
546:
547:
548:
549:
550:
551:
552:
553:
554:
555:
556:
557:
558:
559:
560:
561:
562:
563:
564:
565:
566:
567:
568:
569:
570:
571:
572:
573:
574:
575:
576:
577:
578:
579:
580:
581:
582:
583:
584:
585:
586:
587:
588:
589:
590:
591:
592:
593:
594:
595:
596:
597:
598:
599:
600:
601:
602:
603:
604:
605:
606:
607:
608:
609:
610:
611:
612:
613:
614:
615:
616:
617:
618:
619:
620:
621:
622:
623:
624:
625:
626:
627:
628:
629:
630:
631:
632:
633:
634:
635:
636:
637:
638:
639:
640:
641:
642:
643:
644:
645:
646:
647:
648:
649:
650:
651:
652:
653:
654:
655:
656:
657:
658:
659:
660:
661:
662:
663:
664:
665:
666:
667:
668:
669:
670:
671:
672:
673:
674:
675:
676:
677:
678:
679:
680:
681:
682:
683:
684:
685:
686:
687:
688:
689:
690:
691:
692:
693:
694:
695:
696:
697:
698:
699:
700:
701:
702:
703:
704:
705:
706:
707:
708:
709:
710:
711:
712:
713:
714:
715:
716:
717:
718:
719:
720:
721:
722:
723:
724:
725:
726:
727:
728:
729:
730:
731:
732:
733:
734:
735:
736:
737:
738:
739:
740:
741:
742:
743:
744:
745:
746:
747:
748:
749:
750:
751:
752:
753:
754:
755:
756:
757:
758:
759:
760:
761:
762:
763:
764:
765:
766:
767:
768:
769:
770:
771:
772:
773:
774:
775:
776:
777:
778:
779:
780:
781:
782:
783:
784:
785:
786:
787:
788:
789:
790:
791:
792:
793:
794:
795:
796:
797:
798:
799:
800:
801:
802:
803:
804:
805:
806:
807:
808:
809:
810:
811:
812:
813:
814:
815:
816:
817:
818:
819:
820:
821:
822:
823:
824:
825:
826:
827:
828:
829:
830:
831:
832:
833:
834:
835:
836:
837:
838:
839:
840:
841:
842:
843:
844:
845:
846:
847:
848:
849:
850:
851:
852:
853:
854:
855:
856:
857:
858:
859:
860:
861:
862:
863:
864:
865:
866:
867:
868:
869:
870:
871:
872:
873:
874:
875:
876:
877:
878:
879:
880:
881:
882:
883:
884:
885:
886:
887:
888:
889:
890:
891:
892:
893:
894:
895:
896:
897:
898:
899:
900:
901:
902:
903:
904:
905:
906:
907:
908:
909:
910:
911:
912:
913:
914:
915:
916:
917:
918:
919:
920:
921:
922:
923:
924:
925:
926:
927:
928:
929:
930:
931:
932:
933:
934:
935:
936:
937:
938:
939:
940:
941:
942:
943:
944:
945:
946:
947:
948:
949:
950:
951:
952:
953:
954:
955:
956:
957:
958:
959:
960:
961:
962:
963:
964:
965:
966:
967:
968:
969:
970:
971:
972:
973:
974:
975:
976:
977:
978:
979:
980:
981:
982:
983:
984:
985:
986:
987:
988:
989:
990:
991:
992:
993:
994:
995:
996:
997:
998:
999:
1000:
1001:
1002:
1003:
1004:
1005:
1006:
1007:
1008:
1009:
1010:
1011:
1012:
1013:
1014:
1015:
1016:
1017:
1018:
1019:
1020:
1021:
1022:
1023:
1024:
1025:
1026:
1027:
1028:
1029:
1030:
1031:
1032:
1033:
1034:
1035:
1036:
1037:
1038:
1039:
1040:
1041:
1042:
1043:
1044:
1045:
1046:
1047:
1048:
1049:
1050:
1051:
1052:
1053:
1054:
1055:
1056:
1057:
1058:
1059:
1060:
1061:
1062:
1063:
1064:
1065:
1066:
1067:
1068:
1069:
1070:
1071:
1072:
1073:
1074:
1075:
1076:
1077:
1078:
1079:
1080:
1081:
1082:
1083:
1084:
1085:
1086:
1087:
1088:
1089:
1090:
1091:
1092:
1093:
1094:
1095:
1096:
1097:
1098:
1099:
1100:
1101:
1102:
1103:
1104:
1105:
1106:
1107:
1108:
1109:
1110:
1111:
1112:
1113:
1114:
1115:
1116:
1117:
1118:
1119:
1120:
1121:
1122:
1123:
1124:
1125:
1126:
1127:
1128:
1129:
1130:
1131:
1132:
1133:
1134:
1135:
1136:
1137:
1138:
1139:
1140:
1141:
1142:
1143:
1144:
1145:
1146:
1147:
1148:
1149:
1150:
1151:
1152:
1153:
1154:
1155:
1156:
1157:
1158:
1159:
1160:
1161:
1162:
1163:
1164:
1165:
1166:
1167:
1168:
1169:
1170:
1171:
1172:
1173:
1174:
1175:
1176:
1177:
1178:
1179:
1180:
1181:
1182:
1183:
1184:
1185:
1186:
1187:
1188:
1189:
1190:
1191:
1192:
1193:
1194:
1195:
1196:
1197:
1198:
1199:
1200:
1201:
1202:
1203:
1204:
1205:
1206:
1207:
1208:
1209:
1210:
1211:
1212:
1213:
1214:
1215:
1216:
1217:
1218:
1219:
1220:
1221:
1222:
1223:
1224:
1225:
1226:
1227:
1228:
1229:
1230:
1231:
1232:
1233:
1234:
1235:
1236:
1237:
1238:
1239:
1240:
1241:
1242:
1243:
1244:
1245:
1246:
1247:
1248:
1249:
1250:
1251:
1252:
1253:
1254:
1255:
1256:
1257:
1258:
1259:
1260:
1261:
1262:
1263:
1264:
1265:
1266:
1267:
1268:
1269:
1270:
1271:
1272:
1273:
1274:
1275:
1276:
1277:
1278:
1279:
1280:
1281:
1282:
1283:
1284:
1285:
1286:
1287:
1288:
1289:
1290:
1291:
1292:
1293:
1294:
1295:
1296:
1297:
1298:
1299:
1300:
1301:
1302:
1303:
1304:
1305:
1306:
1307:
1308:
1309:
1310:
1311:
1312:
1313:
1314:
1315:
1316:
1317:
1318:
1319:
1320:
1321:
1322:
1323:
1324:
1325:
1326:
1327:
1328:
1329:
1330:
1331:
1332:
1333:
1334:
1335:
1336:
1337:
1338:
1339:
1340:
1341:
1342:
1343:
1344:
1345:
1346:
1347:
1348:
1349:
1350:
1351:
1352:
1353:
1354:
1355:
1356:
1357:
1358:
1359:
1360:
1361:
1362:
1363:
1364:
1365:
1366:
1367:
1368:
1369:
1370:
1371:
1372:
1373:
1374:
1375:
1376:
1377:
1378:
1379:
1380:
1381:
1382:
1383:
1384:
1385:
1386:
1387:
1388:
1389:
1390:
1391:
1392:
1393:
1394:
1395:
1396:
1397:
1398:
1399:
1400:
1401:
1402:
1403:
1404:
1405:
1406:
1407:
1408:
1409:
1410:
1411:
1412:
1413:
1414:
1415:
1416:
1417:
1418:
1419:
1420:
1421:
1422:
1423:
1424:
1425:
1426:
1427:
1428:
1429:
1430:
1431:
1432:
1433:
1434:
1435:
1436:
1437:
1438:
1439:
1440:
1441:
1442:
1443:
1444:
1445:
1446:
1447:
1448:
1449:
1450:
1451:
1452:
1453:
1454:
1455:
1456:
1457:
1458:
1459:
1460:
1461:
1462:
1463:
1464:
1465:
1466:
1467:
1468:
1469:
1470:
1471:
1472:
1473:
1474:
1475:
1476:
1477:
1478:
1479:
1480:
1481:
1482:
1483:
1484:
1485:
1486:
1487:
1488:
1489:
1490:
1491:
1492:
1493:
1494:
1495:
1496:
1497:
1498:
1499:
1500:
1501:
1502:
1503:
1504:
1505:
1506:
1507:
1508:
1509:
1510:
1511:
1512:
1513:
1514:
1515:
1516:
1517:
1518:
1519:
1520:
1521:
1522:
1523:
1524:
1525:
1526:
1527:
1528:
1529:
1530:
1531:
1532:
1533:
1534:
1535:
1536:
1537:
1538:
1539:
1540:
1541:
1542:
1543:
1544:
1545:
1546:
1547:
1548:
1549:
1550:
1551:
1552:
1553:
1554:
1555:
1556:
1557:
1558:
1559:
1560:
1561:
1562:
1563:
1564:
1565:
1566:
1567:
1568:
1569:
1570:
1571:
1572:
1573:
1574:
1575:
1576:
1577:
1578:
1579:
1580:
1581:
1582:
1583:
1584:
1585:
1586:
1587:
1588:
1589:
1590:
1591:
1592:
1593:
1594:
1595:
1596:
1597:
1598:
1599:
1600:
1601:
1602:
1603:
1604:
1605:
1606:
1607:
1608:
1609:
1610:
1611:
1612:
1613:
1614:
1615:
1616:
1617:
1618:
1619:
1620:
1621:
1622:
1623:
1624:
1625:
1626:
1627:
1628:
1629:
1630:
1631:
1632:
1633:
1634:
1635:
1636:
1637:
1638:
1639:
1640:
1641:
1642:
1643:
1644:
1645:
1646:
1647:
1648:
1649:
1650:
1651:
1652:
1653:
1654:
1655:
1656:
1657:
1658:
1659:
1660:
1661:
1662:
1663:
1664:
1665:
1666:
1667:
1668:
1669:
1670:
1671:
1672:
1673:
1674:
1675:
1676:
1677:
1678:
1679:
1680:
1681:
1682:
1683:
1684:
1685:
1686:
1687:
1688:
1689:
1690:
1691:
1692:
1693:
1694:
1695:
1696:
1697:
1698:
1699:
1700:
1701:
1702:
1703:
1704:
1705:
1706:
1707:
1708:
1709:
1710:
1711:
1712:
1713:
1714:
1715:
1716:
1717:
1718:
1719:
1720:
1721:
1722:
1723:
1724:
1725:
1726:
1727:
1728:
1729:
1730:
1731:
1732:
1733:
1734:
1735:
1736:
1737:
1738:
1739:
1740:
1741:
1742:
1743:
1744:
1745:
1746:
1747:
1748:
1749:
1750:
1751:
1752:
1753:
1754:
1755:
1756:
1757:
1758:
1759:
1760:
1761:
1762:
1763:
1764:
1765:
1766:
1767:
1768:
1769:
1770:
1771:
1772:
1773:
1774:
1775:
1776:
1777:
1778:
1779:
1780:
1781:
1782:
1783:
1784:
1785:
1786:
1787:
1788:
1789:
1790:
1791:
1792:
1793:
1794:
1795:
1796:
1797:
1798:
1799:
1800:
1801:
1802:
1803:
1804:
1805:
1806:
1807:
1808:
1809:
1810:
1811:
1812:
1813:
1814:
1815:
1816:
1817:
1818:
1819:
1820:
1821:
1822:
1823:
1824:
1825:
1826:
1827:
1828:
1829:
1830:
1831:
1832:
1833:
1834:
1835:
1836:
1837:
1838:
1839:
1840:
1841:
1842:
1843:
1844:
1845:
1846:
1847:
1848:
1849:
1850:
1851:
1852:
1853:
1854:
1855:
1856:
1857:
1858:
1859:
1860:
1861:
1862:
1863:
1864:
1865:
1866:
1867:
1868:
1869:
1870:
1871:
1872:
1873:
1874:
1875:
1876:
1877:
1878:
1879:
1880:
1881:
1882:
1883:
1884:
1885:
1886:
1887:
1888:
1889:
1890:
1891:
1892:
1893:
1894:
1895:
1896:
1897:
1898:
1899:
1900:
1901:
1902:
1903:
1904:
1905:
1906:
1907:
1908:
1909:
1910:
1911:
1912:
1913:
1914:
1915:
1916:
1917:
1918:
1919:
1920:
1921:
1922:
1923:
1924:
1925:
1926:
1927:
1928:
1929:
1930:
1931:
1932:
1933:
1934:
1935:
1936:
1937:
1938:
1939:
1940:
1941:
1942:
1943:
1944:
1945:
1946:
1947:
1948:
1949:
1950:
1951:
1952:
1953:
1954:
1955:
1956:
1957:
1958:
1959:
1960:
1961:
1962:
1963:
1964:
1965:
1966:
1967:
1968:
1969:
1970:
1971:
1972:
1973:
1974:
1975:
1976:
1977:
1978:
1979:
1980:
1981:
1982:
1983:
1984:
1985:
1986:
1987:
1988:
1989:
1990:
1991:
1992:
1993:
1994:
1995:
1996:
1997:
1998:
1999:
2000:
2001:
2002:
2003:
2004:
2005:
2006:
2007:
2008:
2009:
2010:
2011:
2012:
2013:
2014:
2015:
2016:
2017:
2018:
2019:
2020:
2021:
2022:
2023:
2024:
2025:
2026:
2027:
2028:
2029:
2030:
2031:
2032:
2033:
2034:
2035:
2036:
2037:
2038:
2039:
2040:
2041:
2042:
2043:
2044:
2045:
2046:
2047:
2048:
2049:
2050:
2051:
2052:
2053:
2054:
2055:
2056:
2057:
2058:
2059:
2060:
2061:
2062:
2063:
2064:
2065:
2066:
2067:
2068:
2069:
2070:
2071:
2072:
2073:
2074:
2075:
2076:
2077:
2078:
2079:
2080:
2081:
2082:
2083:
2084:
2085:

Select allOpen in new window

 

by: rowbyPosted on 2009-08-05 at 14:07:14ID: 25028095

Nope, you don't insert any code in index.php.  It's all handled by the admin section of Joomla.

Go to the module manger and select the module you want to have the banners. I assume it's the banner module, unless you have created or downloaded some other module.

ENABLE the banner module if it is disabled.
I don't know the positions of your module, but I assume the right side column is called "right".  So select Right ( if it exists)  in the module for the the  module position

And see where it shows up on the front end of the site.   I assume it will show up on the right side.  Do that first and we will both look at the link.

 

by: rowbyPosted on 2009-08-05 at 14:08:15ID: 25028112

I see your earlier post.

Make sure the  module is enabled.   And double check what position you set it to show up in.

Rowby

 

by: WhiteMafiosiPosted on 2009-08-05 at 14:22:39ID: 25028237

Ok..module is activated now. I uninstalled the module I downloaded and using the default buildt in instead. How can I move this outside the template now? :)

Thanks for helping me rowby

 

by: WhiteMafiosiPosted on 2009-08-05 at 14:24:02ID: 25028248

I assume this is the css code for the banner?

/* Banners module */
 
/* Default skyscraper style */
.banneritem img
{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
 
/* Text advert style */
 
.banneritem_text
{
	padding: 4px;
	font-size: 11px;
}
 
.bannerfooter_text
{
	padding: 4px;
	font-size: 11px;
	background-color: #f7f7f7;
	text-align: right;
}
 
/* System Messages */
/* see system general.css */
 
.pagination span
{
	padding: 2px;
}
 
.pagination a
{
	padding: 2px;
}
 
/* Polls */
.pollstableborder
{
	margin-top: 8px;
}
 
 
.pollstableborder td
{
	text-align: left;
	
}

                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:

Select allOpen in new window

 

by: rowbyPosted on 2009-08-05 at 14:34:18ID: 25028327

No need to modify the above css for now.   First give the module a suffix like you did the flexbanner module.

Then give the banner the position you want. Probably "right".

Then go to the front of the site and see if it is showing.  Then also look at your source code to make sure the module suffix is showing in the source code.

The you do the css for the module suffix thing.

Hopefully by giving the module suffix css a minus margin, i.e. -200px, it will move the module to the right side of the browser.  No guarantees.  We can just try it.

Rowby

 

by: WhiteMafiosiPosted on 2009-08-05 at 14:39:39ID: 25028364

Gave the module suffix name _banners and setup google ads banner to test

After going to frontpage and checked the source code the following came up:

<div class="bannergroup_banners">

<div class="banneritem_banners"><script type="text/javascript"><!--
google_ad_client = "pub-9056479098173674";
/* 468x60, opprettet 02.08.09 */
google_ad_slot = "6275147973";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><div class="clr"></div>

Could you help me out with the css code to insert? :)

 

by: rowbyPosted on 2009-08-05 at 15:07:03ID: 25028551

I'm not great in css but try

#banneritem_banners {
margin-right: -100px;
)

and see what happens

Or just for fun:
#banneritem_banners
margin-bottom: -100px;
)

Just to see if the code works.

It might have to be
div.banneritem_banners {
margin-right: -100px;
}

 

by: WhiteMafiosiPosted on 2009-08-05 at 15:55:13ID: 25028812

Those codes only breaks the template. Do you know where in the css file I should insert the code? :)

Here are the entire css file

/* begin Page */
 
/* Generated with Artisteer version 2.2.0.17981, file checksum is FCFEE751. */
 
body
{
	margin: 0 auto;
	padding: 0;
	background-color: #FCFCFD;
}
 
#art-main
{
	position: relative;
	width: 100%;
	left: 0;
	top: 0;
}
 
 
 
 
 
#art-page-background-simple-gradient
{
	position: absolute;
	background-image: url('../images/Page-BgSimpleGradient.jpg');
	background-repeat: repeat-x;
	top:0;
	width: 100%;
	height: 500px;
}
 
.cleared
{
	float: none;
	clear: both;
	margin: 0;
	padding: 0;
	border: none;
	font-size:1px;
}
 
 
form
{
	padding:0 !important;
	margin:0 !important;
}
 
table.position
{
	position: relative;
	width: 100%;
	table-layout: fixed;
}
/* end Page */
 
/* begin Box, Sheet */
.art-Sheet
{
	position:relative;
	z-index:0;
	margin:0 auto;
	width: 800px;
	min-width:27px;
	min-height:27px;
}
 
.art-Sheet-body
{
	position: relative;
	z-index:1;
	padding: 5px;
}
 
.art-Sheet-tr, .art-Sheet-tl, .art-Sheet-br, .art-Sheet-bl, .art-Sheet-tc, .art-Sheet-bc,.art-Sheet-cr, .art-Sheet-cl
{
	position:absolute;
	z-index:-1;
}
 
.art-Sheet-tr, .art-Sheet-tl, .art-Sheet-br, .art-Sheet-bl
{
	width: 26px;
	height: 26px;
	background-image: url('../images/Sheet-s.png');
}
 
.art-Sheet-tl
{
	top:0;
	left:0;
	clip: rect(auto, 13px, 13px, auto);
}
 
.art-Sheet-tr
{
	top: 0;
	right: 0;
	clip: rect(auto, auto, 13px, 13px);
}
 
.art-Sheet-bl
{
	bottom: 0;
	left: 0;
	clip: rect(13px, 13px, auto, auto);
}
 
.art-Sheet-br
{
	bottom: 0;
	right: 0;
	clip: rect(13px, auto, auto, 13px);
}
 
.art-Sheet-tc, .art-Sheet-bc
{
	left: 13px;
	right: 13px;
	height: 26px;
	background-image: url('../images/Sheet-h.png');
}
 
.art-Sheet-tc
{
	top: 0;
	clip: rect(auto, auto, 13px, auto);
}
 
.art-Sheet-bc
{
	bottom: 0;
	clip: rect(13px, auto, auto, auto);
}
 
.art-Sheet-cr, .art-Sheet-cl
{
	top: 13px;
	bottom: 13px;
	width: 26px;
	background-image: url('../images/Sheet-v.png');
}
 
.art-Sheet-cr
{
	right:0;
	clip: rect(auto, auto, auto, 13px);
}
 
.art-Sheet-cl
{
	left:0;
	clip: rect(auto, 13px, auto, auto);
}
 
.art-Sheet-cc
{
	position:absolute;
	z-index:-1;
	top: 13px;
	left: 13px;
	right: 13px;
	bottom: 13px;
	background-color: #F9FAFB;
}
 
 
.art-Sheet
{
	margin-top: 30px !important;
}
 
#art-page-background-simple-gradient, #art-page-background-gradient, #art-page-background-glare
{
	min-width:800px;
}
 
/* end Box, Sheet */
 
/* begin Header */
div.art-Header
{
	margin: 0 auto;
	position: relative;
	z-index:0;
	width: 790px;
	height: 140px;
}
 
div.art-Header-png
{
	position: absolute;
	z-index:-2;
	top: 0;
	left: 0;
	width: 790px;
	height: 140px;
	background-image: url('../images/Header.png');
	background-repeat: no-repeat;
	background-position: left top;
}
 
div.art-Header-jpeg
{
	position: absolute;
	z-index:-1;
	top: 0;
	left: 0;
	width: 790px;
	height: 140px;
	background-image: url('../images/Header.jpg');
	background-repeat: no-repeat;
	background-position: center center;
}
/* end Header */
 
/* begin Menu */
/* menu structure */
 
.art-menu a, .art-menu a:link, .art-menu a:visited, .art-menu a:hover
{
	text-align:left;
	text-decoration:none;
	outline:none;
	letter-spacing:normal;
	word-spacing:normal;
}
 
.art-menu, .art-menu ul
{
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}
 
.art-menu li
{
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;
	position: relative;
	z-index: 5;
	background:none;
}
 
.art-menu li:hover
{
	z-index: 10000;
	white-space: normal;
}
 
.art-menu li li
{
	float: none;
}
 
.art-menu ul
{
	visibility: hidden;
	position: absolute;
	z-index: 10;
	left: 0;
	top: 0;
	background:none;
}
 
.art-menu li:hover>ul
{
	visibility: visible;
	top: 100%;
}
 
.art-menu li li:hover>ul
{
	top: 0;
	left: 100%;
}
 
.art-menu:after, .art-menu ul:after
{
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.art-menu, .art-menu ul
{
	min-height: 0;
}
 
.art-menu ul
{
	background-image: url(../images/spacer.gif);
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
}
 
.art-menu ul ul
{
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
 
 
 
 
 
/* menu structure */
 
.art-menu
{
	padding: 4px 2px 0px 2px;
}
 
.art-nav
{
	position: relative;
	height: 29px;
	z-index: 100;
}
 
.art-nav .l, .art-nav .r
{
	position: absolute;
	z-index: -1;
	top: 0;
	height: 29px;
	background-image: url('../images/nav.png');
}
 
.art-nav .l
{
	left: 0;
	right:0px;
}
 
.art-nav .r
{
	right: 0;
	width: 790px;
	clip: rect(auto, auto, auto, 790px);
}
 
 
/* end Menu */
 
/* begin MenuItem */
.art-menu ul li
{
	clear: both;
}
 
.art-menu a
{
	position:relative;
	display: block;
	overflow:hidden;
	height: 25px;
	cursor: pointer;
	text-decoration: none;
	margin-right: 1px;
	margin-left: 1px;
}
 
 
.art-menu a .r, .art-menu a .l
{
	position:absolute;
	display: block;
	top:0;
	z-index:-1;
	height: 75px;
	background-image: url('../images/MenuItem.png');
}
 
.art-menu a .l
{
	left:0;
	right:11px;
}
 
.art-menu a .r
{
	width:422px;
	right:0;
	clip: rect(auto, auto, auto, 411px);
}
 
.art-menu a .t 
{
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
	color: #000000;
	padding: 0 2px;
	margin: 0 11px;
	line-height: 25px;
	text-align: center;
}
 
.art-menu a:hover .l, .art-menu a:hover .r
{
	top:-25px;
}
 
.art-menu li:hover>a .l, .art-menu li:hover>a .r
{
	top:-25px;
}
 
.art-menu li:hover a .l, .art-menu li:hover a .r
{
	top:-25px;
}
.art-menu a:hover .t
{
	color: #000000;
}
 
.art-menu li:hover a .t
{
	color: #000000;
}
 
.art-menu li:hover>a .t
{
	color: #000000;
}
 
 
.art-menu a.active .l, .art-menu a.active .r
{
	top: -50px;
}
 
.art-menu a.active .t
{
	color: #000000;
}
 
 
/* end MenuItem */
 
/* begin MenuSubItem */
.art-menu ul a
{
	display:block;
	text-align: center;
	white-space: nowrap;
	height: 20px;
	width: 180px;
	overflow:hidden;
	line-height: 20px;
	margin-right: auto;
 
 
	background-image: url('../images/subitem-bg.png');
	background-position: left top;
	background-repeat: repeat-x;
	border-width: 0px;
	border-style: solid;
}
 
.art-nav ul.art-menu ul span, .art-nav ul.art-menu ul span span
{
	display: inline;
	float: none;
	margin: inherit;
	padding: inherit;
	background-image: none;
	text-align: inherit;
	text-decoration: inherit;
}
 
.art-menu ul a, .art-menu ul a:link, .art-menu ul a:visited, .art-menu ul a:hover, .art-menu ul a:active, .art-nav ul.art-menu ul span, .art-nav ul.art-menu ul span span
{
	text-align: left;
	text-indent: 12px;
	text-decoration: none;
	line-height: 20px;
	color: #000000;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
}
 
.art-menu ul ul a
{
	margin-left: auto;
}
 
.art-menu ul li a:hover
{
	color: #000000;
	background-position: 0 -20px;
}
 
.art-menu ul li:hover>a
{
	color: #000000;
	background-position: 0 -20px;
}
 
.art-nav .art-menu ul li a:hover span, .art-nav .art-menu ul li a:hover span span
{
	color: #000000;
}
 
.art-nav .art-menu ul li:hover>a span, .art-nav .art-menu ul li:hover>a span span
{
	color: #000000;
}
 
 
/* end MenuSubItem */
 
/* begin ContentLayout */
.art-contentLayout
{
	position: relative;
	margin-bottom: 0px;
	width: 790px;
}
/* end ContentLayout */
 
/* begin Box, Block */
.art-Block
{
	position:relative;
	z-index:0;
	margin:0 auto;
	min-width:1px;
	min-height:1px;
}
 
.art-Block-body
{
	position: relative;
	z-index:1;
	padding: 0px;
}
 
 
 
.art-Block
{
	margin: 10px;
}
 
 
/* end Box, Block */
 
/* begin BlockHeader */
.art-BlockHeader
{
	position:relative;
	z-index:0;
	height: 30px;
	padding: 0 8px;
	margin-bottom: 0px;
}
 
.art-BlockHeader .t
{
	height: 30px;
	color: #000000;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	white-space : nowrap;
	padding: 0 6px;
	line-height: 30px;
}
 
.art-BlockHeader .l, .art-BlockHeader .r
{
	display:block;
	position:absolute;
	z-index:-1;
	height: 30px;
	background-image: url('../images/BlockHeader.png');
}
 
.art-BlockHeader .l
{
	left:0;
	right:9px;
}
 
.art-BlockHeader .r
{ 
	width:790px;
	right:0;
	clip: rect(auto, auto, auto, 781px);
}
 
 
 
 
/* end BlockHeader */
 
/* begin Box, BlockContent */
.art-BlockContent
{
	position:relative;
	z-index:0;
	margin:0 auto;
	min-width:19px;
	min-height:19px;
}
 
.art-BlockContent-body
{
	position: relative;
	z-index:1;
	padding: 8px;
}
 
.art-BlockContent-tr, .art-BlockContent-tl, .art-BlockContent-br, .art-BlockContent-bl, .art-BlockContent-tc, .art-BlockContent-bc,.art-BlockContent-cr, .art-BlockContent-cl
{
	position:absolute;
	z-index:-1;
}
 
.art-BlockContent-tr, .art-BlockContent-tl, .art-BlockContent-br, .art-BlockContent-bl
{
	width: 18px;
	height: 18px;
	background-image: url('../images/BlockContent-s.png');
}
 
.art-BlockContent-tl
{
	top:0;
	left:0;
	clip: rect(auto, 9px, 9px, auto);
}
 
.art-BlockContent-tr
{
	top: 0;
	right: 0;
	clip: rect(auto, auto, 9px, 9px);
}
 
.art-BlockContent-bl
{
	bottom: 0;
	left: 0;
	clip: rect(9px, 9px, auto, auto);
}
 
.art-BlockContent-br
{
	bottom: 0;
	right: 0;
	clip: rect(9px, auto, auto, 9px);
}
 
.art-BlockContent-tc, .art-BlockContent-bc
{
	left: 9px;
	right: 9px;
	height: 18px;
	background-image: url('../images/BlockContent-h.png');
}
 
.art-BlockContent-tc
{
	top: 0;
	clip: rect(auto, auto, 9px, auto);
}
 
.art-BlockContent-bc
{
	bottom: 0;
	clip: rect(9px, auto, auto, auto);
}
 
.art-BlockContent-cr, .art-BlockContent-cl
{
	top: 9px;
	bottom: 9px;
	width: 18px;
	background-image: url('../images/BlockContent-v.png');
}
 
.art-BlockContent-cr
{
	right:0;
	clip: rect(auto, auto, auto, 9px);
}
 
.art-BlockContent-cl
{
	left:0;
	clip: rect(auto, 9px, auto, auto);
}
 
.art-BlockContent-cc
{
	position:absolute;
	z-index:-1;
	top: 9px;
	left: 9px;
	right: 9px;
	bottom: 9px;
	background-color: #FFFFFF;
}
 
 
.art-BlockContent-body
{
	color:#000000;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
	line-height: 200%;
}
 
.art-BlockContent-body a:link
{
	color: #000000;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: underline;
}
 
.art-BlockContent-body a:visited, .art-BlockContent-body a.visited
{
	color: #000000;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: underline;
}
 
.art-BlockContent-body a:hover, .art-BlockContent-body a.hover
{
	color: #646478;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: none;
}
 
.art-BlockContent-body ul
{
	list-style-type: none;
	color: #3F5469;
	margin:0;
	padding:0;
}
 
.art-BlockContent-body li
{
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
}
 
 
/* end Box, BlockContent */
 
/* begin Box, Post */
.art-Post
{
	position:relative;
	z-index:0;
	margin:0 auto;
	min-width:1px;
	min-height:1px;
}
 
.art-Post-body
{
	position: relative;
	z-index:1;
	padding: 0px;
}
 
 
 
.art-Post
{
	margin: 0px;
}
 
/* Start images */
a img
{
	border: 0;
}
 
.art-article img, img.art-article
{
	margin: 1em;
}
 
.art-metadata-icons img
{
	border: none;
	vertical-align: middle;
	margin:2px;
}
/* Finish images */
 
/* Start tables */
 
.art-article table, table.art-article
{
	border-collapse: collapse;
	margin: 1px;
	width:auto;
}
 
.art-article table, table.art-article .art-article tr, .art-article th, .art-article td
{
	background-color:Transparent;
}
 
.art-article th, .art-article td
{
	padding: 2px;
	border: solid 1px #0E1D25;
	vertical-align: top;
	text-align:left;
}
 
.art-article th
{
	text-align:center;
	vertical-align:middle;
	padding: 7px;
}
 
/* Finish tables */
/* end Box, Post */
 
/* begin PostHeaderIcon */
.art-PostHeaderIcon-wrapper
{
	text-decoration:none;
	margin: 0.2em 0;
	padding: 0;
	font-weight:normal;
	font-style:normal;
	letter-spacing:normal;
	word-spacing:normal;
	font-variant:normal;
	text-decoration:none;
	font-variant:normal;
	text-transform:none;
	text-align:left;
	text-indent:0;
	line-height:inherit;
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
}
 
.art-PostHeaderIcon-wrapper, .art-PostHeaderIcon-wrapper a, .art-PostHeaderIcon-wrapper a:link, .art-PostHeaderIcon-wrapper a:visited, .art-PostHeaderIcon-wrapper a:hover
{
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
}
 
/* end PostHeaderIcon */
 
/* begin PostHeader */
.art-PostHeader a:link
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  text-decoration: none;
  text-align: left;
  color: #000000;
}
 
.art-PostHeader a:visited, .art-PostHeader a.visited
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  text-decoration: none;
  text-align: left;
  color: #000000;
}
 
.art-PostHeader a:hover, .art-PostHeader a.hovered
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  text-decoration: underline;
  text-align: left;
  color: #000000;
}
/* end PostHeader */
 
/* begin PostIcons */
.art-PostHeaderIcons
{
	padding:1px;
}
 
.art-PostHeaderIcons, .art-PostHeaderIcons a, .art-PostHeaderIcons a:link, .art-PostHeaderIcons a:visited, .art-PostHeaderIcons a:hover
{
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 10px;
	font-style: italic;
	font-weight: normal;
	color: #000000;
}
 
.art-PostHeaderIcons a, .art-PostHeaderIcons a:link, .art-PostHeaderIcons a:visited, .art-PostHeaderIcons a:hover
{
	margin:0;
}
 
.art-PostHeaderIcons a:link
{
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-style: italic;
	font-weight: normal;
	text-decoration: underline;
	color: #000000;
}
 
.art-PostHeaderIcons a:visited, .art-PostHeaderIcons a.visited
{
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: underline;
	color: #000000;
}
 
.art-PostHeaderIcons a:hover, .art-PostHeaderIcons a.hover
{
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: none;
	color: #000000;
}
/* end PostIcons */
 
/* begin PostContent */
/* Content Text Font & Color (Default) */
body
{
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
  font-size: 11px;
  font-style: normal;
  font-weight: normal;
  color: #000000;
}
 
.art-PostContent
{
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
  text-align: left;
  margin-left: 0px;
  margin-right: 0px;
  line-height: 150%;
  color: #000000;
}
 
/* Start Content link style */
/*
The right order of link pseudo-classes: Link-Visited-Hover-Focus-Active.
http://www.w3schools.com/CSS/css_pseudo_classes.asp
http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states/
*/
a
{
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
  text-decoration: underline;
  color: #000000;
}
 
/* Adds special style to an unvisited link. */
a:link
{
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
  text-decoration: underline;
  color: #000000;
}
 
/* Adds special style to a visited link. */
a:visited, a.visited
{
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
  text-decoration: underline;
  color: #000000;
}
 
/* :hover - adds special style to an element when you mouse over it. */
a:hover, a.hover
{
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
  text-decoration: none;
  color: #000000;
}
 
/* Finish Content link style */
 
/* Resert some headings default style & links default style for links in headings*/
h1, h2, h3, h4, h5, h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited
{
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
}
 
 
/* Start Content headings Fonts & Colors  */
h1, h1 a, h1 a:link, h1 a:visited, h1 a:hover
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  font-size: 18px;
  font-style: normal;
  font-weight: bold;
  text-align: left;
  color: #000000;
}
 
h2, h2 a, h2 a:link, h2 a:visited, h2 a:hover
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  font-size: 16px;
  text-align: left;
  color: #000000;
}
 
h3, h3 a, h3 a:link, h3 a:visited, h3 a:hover
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  text-align: left;
  color: #000000;
}
 
h4, h4 a, h4 a:link, h4 a:visited, h4 a:hover
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  font-size: 14px;
  text-align: left;
  color: #000000;
}
 
h5, h5 a, h5 a:link, h5 a:visited, h5 a:hover
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  font-size: 12px;
  text-align: left;
  color: #000000;
}
 
h6, h6 a, h6 a:link, h6 a:visited, h6 a:hover
{
  font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  font-size: 11px;
  text-align: left;
  color: #000000;
}
/* Finish Content headings Fonts & Colors  */
 
 
/* end PostContent */
 
/* begin PostBullets */
/* Start Content list */
ol, ul
{
	color: #000000;
	margin:1em 0 1em 2em;
	padding:0;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
}
 
li ol, li ul
{
	margin:0.5em 0 0.5em 2em;
	padding:0;
}
 
li 
{
	margin:0.2em 0;
	padding:0;
}
 
ul
{
	list-style-type: none;
}
 
ol
{
	list-style-position:inside;
	
}
 
 
 
/* Finish Content list */
/* end PostBullets */
 
/* begin PostQuote */
/* Start blockquote */
blockquote p
{
	color:#000000;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-align: left;
}
 
blockquote
{
		border:solid 1px #E9E9E9; 
		margin:10px 10px 10px 50px;
	padding:5px 5px 5px 28px;
	background-color:#E9E9E9;
	background-image:url('../images/PostQuote.png');
	background-position:left top;
	background-repeat:no-repeat;
}
 
 
/* Finish blockuote */
/* end PostQuote */
 
/* begin Button */
.art-button-wrapper .art-button
{
	display:inline-block;
	width: auto;
	outline:none;
	border:none;
	background:none;
	line-height:23px;
	margin:0 !important;
	padding:0 !important;
	overflow: visible;
	cursor: default;
	text-decoration: none !important;
	z-index:0;
}
 
.art-button-wrapper
{
	display:inline-block;
	position:relative;
	height: 23px;
	overflow:hidden;
	white-space: nowrap;
	width: auto;
	z-index:0;
}
 
.art-button-wrapper .art-button
{
	display:block;
	height: 23px;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
	white-space: nowrap;
	text-align: left;
	padding: 0 7px !important;
	line-height: 23px;
	text-decoration: none !important;
	color: #306482 !important;
}
 
input, select
{
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
}
 
.art-button-wrapper.hover .art-button, .art-button:hover
{
	color: #FFF3E1 !important;
	text-decoration: none !important;
}
 
.art-button-wrapper.active .art-button
{
	color: #F2F5F7 !important;
}
 
.art-button-wrapper .l, .art-button-wrapper .r
{
	display:block;
	position:absolute;
	z-index:-1;
	height: 69px;
	background-image: url('../images/Button.png');
}
 
.art-button-wrapper .l
{
	left:0;
	right:7px;
}
 
.art-button-wrapper .r
{
	width:415px;
	right:0;
	clip: rect(auto, auto, auto, 408px);
}
 
.art-button-wrapper.hover .l, .art-button-wrapper.hover .r
{
	top: -23px;
}
 
.art-button-wrapper.active .l, .art-button-wrapper.active .r
{
	top: -46px;
}
 
 
/* end Button */
 
/* begin Footer */
.art-Footer
{
	position:relative;
	z-index:0;
	overflow:hidden;
	width: 790px;
	margin: 5px auto 0px auto;
}
 
.art-Footer .art-Footer-inner
{
	height:1%;
	position: relative;
	z-index: 0;
	padding: 20px;
	text-align: center;
}
 
 
 
.art-rss-tag-icon
{
	position: relative;
	display:block;
	float:left;
	background-image: url('../images/livemarks.png');
	background-position: center right;
	background-repeat: no-repeat;
	margin: 0 5px 0 0;
	height: 32px;
	width: 32px;
}
 
 
 
 
.art-Footer .art-Footer-text p
{
	margin: 0;
}
 
.art-Footer .art-Footer-text
{
	display:inline-block;
	color:#000000;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	letter-spacing: 1px;
}
 
.art-Footer .art-Footer-text a:link
{
	text-decoration: none;
	color: #2F617F;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: underline;
}
 
.art-Footer .art-Footer-text a:visited
{
	text-decoration: none;
	color: #41576C;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: underline;
}
 
.art-Footer .art-Footer-text a:hover
{
	text-decoration: none;
	color: #1E3F52;
	font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
	text-decoration: none;
}
/* end Footer */
 
/* begin PageFooter */
.art-page-footer, .art-page-footer a, .art-page-footer a:link, .art-page-footer a:visited, .art-page-footer a:hover
{
	font-family:Arial;
	font-size:10px;
	letter-spacing:normal;
	word-spacing:normal;
	font-style:normal;
	font-weight:normal;
	text-decoration:underline;
	color:#5096BE;
}
 
.art-page-footer
{
	margin:1em;
	text-align:center;
	text-decoration:none;
	color:#6987A5;
}
/* end PageFooter */
 
/* begin LayoutCell */
.art-contentLayout .art-sidebar1
{
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	float: left;
	overflow: hidden;
	width: 189px;
}
/* end LayoutCell */
 
/* begin LayoutCell */
.art-contentLayout .art-content
{
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	float: left;
	overflow: hidden;
	width: 411px;
}
.art-contentLayout .art-content-sidebar1
{
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	float: left;
	overflow: hidden;
	width: 600px;
}
.art-contentLayout .art-content-sidebar2
{
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	float: left;
	overflow: hidden;
	width: 600px;
}
.art-contentLayout .art-content-wide
{
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	float: left;
	overflow: hidden;
	width: 789px;
}
/* end LayoutCell */
 
/* begin LayoutCell */
.art-contentLayout .art-sidebar2
{
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	float: left;
	overflow: hidden;
	width: 189px;
}
/* end LayoutCell */
 
 
 
.art-contentLayout li
{
	float: none;
}
 
table.moduletable th
{
	font-size: 140%;
	padding: .5em 0em;
}
 
#footer
{
	text-align: center;
}
 
.breadcrumbs
{
	display: block;
	padding: .7em 0em;
}
 
.contentpaneopen span.small, .contentpaneopen td.createdate, .contentpaneopen td.modifydate
{
	font-size: 75%;
	padding-bottom: 1em;
}
 
.column_separator 
{
	padding-left: .4em;
}
 
.pagination span
{
	padding: 2px;
}
 
.pagination a
{
	padding: 2px;
}
 
div.offline
{
	background: #fffebb;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1.2em;
	padding: 5px;
}
 
span.pathway
{
	display: block;
	margin: 0 20px;
	height: 16px;
	line-height: 16px;
	overflow: hidden;
}
 
/* headers */
table.moduletable th, legend
{
	margin: 0;
	font-weight: bold;
	font-family: Helvetica,Arial,sans-serif;
	font-size: 1.5em;
	padding-left: 0px;
	margin-bottom: 10px;
	text-align: left;
}
 
/* form validation */
.invalid
{
	border-color: #ff0000;
}
 
label.invalid
{
	color: #ff0000;
}
 
 
/** overlib **/
 
.ol-foreground
{
	background-color: #f6f6f6;
}
 
.ol-background
{
	background-color: #666;
}
 
.ol-textfont
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}
 
.ol-captionfont
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #f6f6f6;
	font-weight: bold;
}
 
.ol-captionfont a
{
	color: #0B55C4;
	text-decoration: none;
	font-size: 12px;
}
 
/* spacers */
span.article_separator
{
	display: none;
}
 
.column_separator
{
	padding-left: 10px;
}
 
td.buttonheading img
{
	border: none;
}
 
.clr
{
	clear: both;
}
 
div#maindivider
{
	border-top: 1px solid #ddd;
	margin-bottom: 10px;
	overflow: hidden;
	height: 1px;
}
 
table.blog span.article_separator
{
	display: none;
}
 
/* edit button */
.contentpaneopen_edit
{
	float: left;
}
 
/* table of contents */
table.contenttoc
{
	margin: 5px;
	border: 1px solid #ccc;
	padding: 5px;
	float: right;
}
 
table.contenttoc td
{
	padding: 0 5px;
}
 
 
/* content tables */
td.sectiontableheader
{
	background: #efefef;
	color: #333;
	font-weight: bold;
	padding: 4px;
	border-right: 1px solid #fff;
}
 
tr.sectiontableentry0 td,
tr.sectiontableentry1 td,
tr.sectiontableentry2 td
{
	padding: 4px;
}
 
td.sectiontableentry0,
td.sectiontableentry1,
td.sectiontableentry2
{
	padding: 3px;
}
 
 
/* content styles */
table.contentpaneopen, table.contentpane
{
	margin: 0;
	padding: 0;
	width: auto;
}
 
table.contentpaneopen li
{
	margin-bottom: 5px;
}
 
table.contentpaneopen fieldset
{
	border: 0;
	border-top: 1px solid #ddd;
}
 
table.contentpaneopen h3
{
	margin-top: 25px;
}
 
table.contentpaneopen h4
{
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
}
 
.highlight
{
	background-color: #fffebb;
}
 
/* module control elements */
table.user1user2 div.moduletable
{
	margin-bottom: 0px;
}
 
div.moduletable, div.module
{
	margin-bottom: 25px;
}
 
div.module_menu h3
{
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #eee;
	margin: -23px -4px 5px -5px;
	padding-left: 10px;
	padding-bottom: 2px;
}
 
div.module_menu
{
	margin: 0;
	padding: 0;
	margin-bottom: 15px;
}
 
div.module_menu div div div
{
	padding: 10px;
	padding-top: 30px;
	padding-bottom: 15px;
	width: auto;
}
 
div.module_menu div div div div
{
	background: none;
	padding: 0;
}
 
div.module_menu ul
{
	margin: 10px 0;
	padding-left: 20px;
}
 
div.module_menu ul li a:link, div.module_menu ul li a:visited
{
	font-weight: bold;
}
 
#leftcolumn div.module
{
	padding: 0 10px;
}
 
#leftcolumn div.module table
{
	width: auto;
}
 
/* forms */
table.adminform textarea
{
	width: 540px;
	height: 400px;
	font-size: 1em;
	color: #000099;
}
 
div.search input
{
	width: 145px;
	border: 1px solid #ccc;
	margin: 15px 0 10px 0;
}
 
form#form-login
{
	text-align: left;
}
 
form#form-login fieldset
{
	border: 0 none;
	margin: 0;
	padding: 0.2em;
}
 
form#form-login ul
{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
 
form#form-login ul li
{
	background-image: none;
	padding: 0;
}
 
#modlgn_username, #modlgn_passwd
{
	width: 90%;
}
 
#form-login-username, #form-login-password, #form-login-remember
{
	display: block;
	margin: 0;
}
 
form#com-form-login
{
	text-align: left;
}
 
form#com-form-login fieldset
{
	border: 0 none;
	margin: 0;
	padding: 0.2em;
}
 
form#com-form-login ul
{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
 
form#com-form-login ul li
{
	background-image: none;
	padding: 0;
}
 
/* thumbnails */
div.mosimage
{
	margin: 5px;
}
 
div.mosimage_caption {
	font-size: .90em;
	color: #666;
}
 
div.caption
{
	padding: 0 10px 0 10px;
}
 
div.caption img
{
	border: 1px solid #CCC;
}
 
div.caption p
{
	font-size: .90em;
	color: #666;
	text-align: center;
}
 
/* Parameter Table */
table.paramlist
{
	margin-top: 5px;
}
 
table.paramlist td.paramlist_key
{
	width: 128px;
	text-align: left;
	height: 30px;
}
 
div.message
{
	font-weight: bold;
	font-size: 14px;
	color: #c30;
	text-align: center;
	width: auto;
	background-color: #f9f9f9;
	border: solid 1px #d5d5d5;
	margin: 3px 0px 10px;
	padding: 3px 20px;
}
 
/* Banners module */
 
/* Default skyscraper style */
.banneritem img
{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
 
/* Text advert style */
 
.banneritem_text
{
	padding: 4px;
	font-size: 11px;
}
 
.bannerfooter_text
{
	padding: 4px;
	font-size: 11px;
	background-color: #f7f7f7;
	text-align: right;
}
 
/* System Messages */
/* see system general.css */
 
.pagination span
{
	padding: 2px;
}
 
.pagination a
{
	padding: 2px;
}
 
/* Polls */
.pollstableborder
{
	margin-top: 8px;
}
 
 
.pollstableborder td
{
	text-align: left;
	
}
 
/* WebLinks */
span.description
{
	display: block;
	padding-left: 30px;
}
 
/* Frontend Editing*/
fieldset
{
	border: 1px solid #ccc;
	margin-top: 15px;
	padding: 15px;
}
 
legend
{
	margin: 0;
	padding: 0 10px;
}
 
td.key
{
	border-bottom: 1px solid #eee;
	color: #666;
}
 
/* Tooltips */
 
.tool-tip
{
	float: left;
	background: #ffc;
	border: 1px solid #d4d5aa;
	padding: 5px;
	max-width: 200px;
}
 
.tool-title
{
	padding: 0;
	margin: 0;
	font-size: 100%;
	font-weight: bold;
	margin-top: -15px;
	padding-top: 15px;
	padding-bottom: 5px;
	background: url(../../system/images/selector-arrow.png) no-repeat;
}
 
.tool-text
{
	font-size: 100%;
	margin: 0;
}
 
/* System Standard Messages */
#system-message
{
	margin-bottom: 20px;
}
 
#system-message dd.message ul
{
	background: #c3d2e5 url(../../system/images/notice-info.png) 4px center no-repeat;
	border-top: 3px solid #de7a7b;
	border-bottom: 3px solid #de7a7b;
	margin:0px;
	padding-left: 40px;
	text-indent:0px;
}
 
/* System Error Messages */
#system-message dd.error ul
{
	color: #c00;
	background: #e6c0c0 url(../../system/images/notice-alert.png) 4px center no-repeat;
	border-top: 3px solid #DE7A7B;
	border-bottom: 3px solid #DE7A7B;
	margin: 0px;
	padding-left: 40px;
	text-indent: 0px;
}
 
/* System Notice Messages */
#system-message dd.notice ul
{
	color: #c00;
	background: #efe7b8 url(../../system/images/notice-note.png) 4px center no-repeat;
	border-top: 3px solid #f0dc7e;
	border-bottom: 3px solid #f0dc7e;
	margin: 0px;
	padding-left: 40px;
	text-indent: 0px;
 }
 
#syndicate
{
	float: left;
	padding-left: 25px;
}
 
/* Component Specific Fixes */
 
#component-contact table td
{
	padding: 2px 0;
}
 
.breadcrumbs img
{
	margin: 0px;
	padding: 0px;
	border: 0px;
}
 
.mceToolbarTop {
	white-space: normal;
}
 
.mceEditor
{
	background: none;
}
 
#archive-list
{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
 
#archive-list li
{
	list-style-type: none;
	background-image: none;
	margin-left: 0px;
	padding-left: 0px;
}
 
#navigation
{
	text-align: center;
}
 
.article h3 img
{
	border: none;
	display: inline;
	margin: 0;
	padding: 0;
}
 
.art-Footer-text .moduletable
{
	border: none;
	margin: 0;
	padding: 0;
}
 
.pollstableborder td {
	vertical-align: middle;
}
 
.img_caption.left
{
	float: left;
	margin-right: 1em;
}
 
.img_caption.right
{
	float: right;
	margin-left: 1em;
}
 
.img_caption.left p
{
	clear: left;
	text-align: center;
}
 
.img_caption.right p
{
	clear: right;
	text-align: center;
}
 
.img_caption img
{
	margin: 0em;
}
 
.contentheading
{
font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, Serif;
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  text-align: left;
  color: #000000;
}
                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
521:
522:
523:
524:
525:
526:
527:
528:
529:
530:
531:
532:
533:
534:
535:
536:
537:
538:
539:
540:
541:
542:
543:
544:
545:
546:
547:
548:
549:
550:
551:
552:
553:
554:
555:
556:
557:
558:
559:
560:
561:
562:
563:
564:
565:
566:
567:
568:
569:
570:
571:
572:
573:
574:
575:
576:
577:
578:
579:
580:
581:
582:
583:
584:
585:
586:
587:
588:
589:
590:
591:
592:
593:
594:
595:
596:
597:
598:
599:
600:
601:
602:
603:
604:
605:
606:
607:
608:
609:
610:
611:
612:
613:
614:
615:
616:
617:
618:
619:
620:
621:
622:
623:
624:
625:
626:
627:
628:
629:
630:
631:
632:
633:
634:
635:
636:
637:
638:
639:
640:
641:
642:
643:
644:
645:
646:
647:
648:
649:
650:
651:
652:
653:
654:
655:
656:
657:
658:
659:
660:
661:
662:
663:
664:
665:
666:
667:
668:
669:
670:
671:
672:
673:
674:
675:
676:
677:
678:
679:
680:
681:
682:
683:
684:
685:
686:
687:
688:
689:
690:
691:
692:
693:
694:
695:
696:
697:
698:
699:
700:
701:
702:
703:
704:
705:
706:
707:
708:
709:
710:
711:
712:
713:
714:
715:
716:
717:
718:
719:
720:
721:
722:
723:
724:
725:
726:
727:
728:
729:
730:
731:
732:
733:
734:
735:
736:
737:
738:
739:
740:
741:
742:
743:
744:
745:
746:
747:
748:
749:
750:
751:
752:
753:
754:
755:
756:
757:
758:
759:
760:
761:
762:
763:
764:
765:
766:
767:
768:
769:
770:
771:
772:
773:
774:
775:
776:
777:
778:
779:
780:
781:
782:
783:
784:
785:
786:
787:
788:
789:
790:
791:
792:
793:
794:
795:
796:
797:
798:
799:
800:
801:
802:
803:
804:
805:
806:
807:
808:
809:
810:
811:
812:
813:
814:
815:
816:
817:
818:
819:
820:
821:
822:
823:
824:
825:
826:
827:
828:
829:
830:
831:
832:
833:
834:
835:
836:
837:
838:
839:
840:
841:
842:
843:
844:
845:
846:
847:
848:
849:
850:
851:
852:
853:
854:
855:
856:
857:
858:
859:
860:
861:
862:
863:
864:
865:
866:
867:
868:
869:
870:
871:
872:
873:
874:
875:
876:
877:
878:
879:
880:
881:
882:
883:
884:
885:
886:
887:
888:
889:
890:
891:
892:
893:
894:
895:
896:
897:
898:
899:
900:
901:
902:
903:
904:
905:
906:
907:
908:
909:
910:
911:
912:
913:
914:
915:
916:
917:
918:
919:
920:
921:
922:
923:
924:
925:
926:
927:
928:
929:
930:
931:
932:
933:
934:
935:
936:
937:
938:
939:
940:
941:
942:
943:
944:
945:
946:
947:
948:
949:
950:
951:
952:
953:
954:
955:
956:
957:
958:
959:
960:
961:
962:
963:
964:
965:
966:
967:
968:
969:
970:
971:
972:
973:
974:
975:
976:
977:
978:
979:
980:
981:
982:
983:
984:
985:
986:
987:
988:
989:
990:
991:
992:
993:
994:
995:
996:
997:
998:
999:
1000:
1001:
1002:
1003:
1004:
1005:
1006:
1007:
1008:
1009:
1010:
1011:
1012:
1013:
1014:
1015:
1016:
1017:
1018:
1019:
1020:
1021:
1022:
1023:
1024:
1025:
1026:
1027:
1028:
1029:
1030:
1031:
1032:
1033:
1034:
1035:
1036:
1037:
1038:
1039:
1040:
1041:
1042:
1043:
1044:
1045:
1046:
1047:
1048:
1049:
1050:
1051:
1052:
1053:
1054:
1055:
1056:
1057:
1058:
1059:
1060:
1061:
1062:
1063:
1064:
1065:
1066:
1067:
1068:
1069:
1070:
1071:
1072:
1073:
1074:
1075:
1076:
1077:
1078:
1079:
1080:
1081:
1082:
1083:
1084:
1085:
1086:
1087:
1088:
1089:
1090:
1091:
1092:
1093:
1094:
1095:
1096:
1097:
1098:
1099:
1100:
1101:
1102:
1103:
1104:
1105:
1106:
1107:
1108:
1109:
1110:
1111:
1112:
1113:
1114:
1115:
1116:
1117:
1118:
1119:
1120:
1121:
1122:
1123:
1124:
1125:
1126:
1127:
1128:
1129:
1130:
1131:
1132:
1133:
1134:
1135:
1136:
1137:
1138:
1139:
1140:
1141:
1142:
1143:
1144:
1145:
1146:
1147:
1148:
1149:
1150:
1151:
1152:
1153:
1154:
1155:
1156:
1157:
1158:
1159:
1160:
1161:
1162:
1163:
1164:
1165:
1166:
1167:
1168:
1169:
1170:
1171:
1172:
1173:
1174:
1175:
1176:
1177:
1178:
1179:
1180:
1181:
1182:
1183:
1184:
1185:
1186:
1187:
1188:
1189:
1190:
1191:
1192:
1193:
1194:
1195:
1196:
1197:
1198:
1199:
1200:
1201:
1202:
1203:
1204:
1205:
1206:
1207:
1208:
1209:
1210:
1211:
1212:
1213:
1214:
1215:
1216:
1217:
1218:
1219:
1220:
1221:
1222:
1223:
1224:
1225:
1226:
1227:
1228:
1229:
1230:
1231:
1232:
1233:
1234:
1235:
1236:
1237:
1238:
1239:
1240:
1241:
1242:
1243:
1244:
1245:
1246:
1247:
1248:
1249:
1250:
1251:
1252:
1253:
1254:
1255:
1256:
1257:
1258:
1259:
1260:
1261:
1262:
1263:
1264:
1265:
1266:
1267:
1268:
1269:
1270:
1271:
1272:
1273:
1274:
1275:
1276:
1277:
1278:
1279:
1280:
1281:
1282:
1283:
1284:
1285:
1286:
1287:
1288:
1289:
1290:
1291:
1292:
1293:
1294:
1295:
1296:
1297:
1298:
1299:
1300:
1301:
1302:
1303:
1304:
1305:
1306:
1307:
1308:
1309:
1310:
1311:
1312:
1313:
1314:
1315:
1316:
1317:
1318:
1319:
1320:
1321:
1322:
1323:
1324:
1325:
1326:
1327:
1328:
1329:
1330:
1331:
1332:
1333:
1334:
1335:
1336:
1337:
1338:
1339:
1340:
1341:
1342:
1343:
1344:
1345:
1346:
1347:
1348:
1349:
1350:
1351:
1352:
1353:
1354:
1355:
1356:
1357:
1358:
1359:
1360:
1361:
1362:
1363:
1364:
1365:
1366:
1367:
1368:
1369:
1370:
1371:
1372:
1373:
1374:
1375:
1376:
1377:
1378:
1379:
1380:
1381:
1382:
1383:
1384:
1385:
1386:
1387:
1388:
1389:
1390:
1391:
1392:
1393:
1394:
1395:
1396:
1397:
1398:
1399:
1400:
1401:
1402:
1403:
1404:
1405:
1406:
1407:
1408:
1409:
1410:
1411:
1412:
1413:
1414:
1415:
1416:
1417:
1418:
1419:
1420:
1421:
1422:
1423:
1424:
1425:
1426:
1427:
1428:
1429:
1430:
1431:
1432:
1433:
1434:
1435:
1436:
1437:
1438:
1439:
1440:
1441:
1442:
1443:
1444:
1445:
1446:
1447:
1448:
1449:
1450:
1451:
1452:
1453:
1454:
1455:
1456:
1457:
1458:
1459:
1460:
1461:
1462:
1463:
1464:
1465:
1466:
1467:
1468:
1469:
1470:
1471:
1472:
1473:
1474:
1475:
1476:
1477:
1478:
1479:
1480:
1481:
1482:
1483:
1484:
1485:
1486:
1487:
1488:
1489:
1490:
1491:
1492:
1493:
1494:
1495:
1496:
1497:
1498:
1499:
1500:
1501:
1502:
1503:
1504:
1505:
1506:
1507:
1508:
1509:
1510:
1511:
1512:
1513:
1514:
1515:
1516:
1517:
1518:
1519:
1520:
1521:
1522:
1523:
1524:
1525:
1526:
1527:
1528:
1529:
1530:
1531:
1532:
1533:
1534:
1535:
1536:
1537:
1538:
1539:
1540:
1541:
1542:
1543:
1544:
1545:
1546:
1547:
1548:
1549:
1550:
1551:
1552:
1553:
1554:
1555:
1556:
1557:
1558:
1559:
1560:
1561:
1562:
1563:
1564:
1565:
1566:
1567:
1568:
1569:
1570:
1571:
1572:
1573:
1574:
1575:
1576:
1577:
1578:
1579:
1580:
1581:
1582:
1583:
1584:
1585:
1586:
1587:
1588:
1589:
1590:
1591:
1592:
1593:
1594:
1595:
1596:
1597:
1598:
1599:
1600:
1601:
1602:
1603:
1604:
1605:
1606:
1607:
1608:
1609:
1610:
1611:
1612:
1613:
1614:
1615:
1616:
1617:
1618:
1619:
1620:
1621:
1622:
1623:
1624:
1625:
1626:
1627:
1628:
1629:
1630:
1631:
1632:
1633:
1634:
1635:
1636:
1637:
1638:
1639:
1640:
1641:
1642:
1643:
1644:
1645:
1646:
1647:
1648:
1649:
1650:
1651:
1652:
1653:
1654:
1655:
1656:
1657:
1658:
1659:
1660:
1661:
1662:
1663:
1664:
1665:
1666:
1667:
1668:
1669:
1670:
1671:
1672:
1673:
1674:
1675:
1676:
1677:
1678:
1679:
1680:
1681:
1682:
1683:
1684:
1685:
1686:
1687:
1688:
1689:
1690:
1691:
1692:
1693:
1694:
1695:
1696:
1697:
1698:
1699:
1700:
1701:
1702:
1703:
1704:
1705:
1706:
1707:
1708:
1709:
1710:
1711:
1712:
1713:
1714:
1715:
1716:
1717:
1718:
1719:
1720:
1721:
1722:
1723:
1724:
1725:
1726:
1727:
1728:
1729:
1730:
1731:
1732:
1733:
1734:
1735:
1736:
1737:
1738:
1739:
1740:
1741:
1742:
1743:
1744:
1745:
1746:
1747:
1748:
1749:
1750:
1751:
1752:
1753:
1754:
1755:
1756:
1757:
1758:
1759:
1760:
1761:
1762:
1763:
1764:
1765:
1766:
1767:
1768:
1769:
1770:
1771:
1772:
1773:
1774:
1775:
1776:
1777:
1778:
1779:
1780:
1781:
1782:
1783:
1784:
1785:
1786:
1787:
1788:
1789:
1790:
1791:
1792:
1793:
1794:
1795:
1796:
1797:
1798:
1799:
1800:
1801:
1802:
1803:
1804:
1805:
1806:
1807:
1808:
1809:
1810:
1811:
1812:
1813:
1814:
1815:
1816:
1817:
1818:
1819:
1820:
1821:
1822:
1823:
1824:
1825:
1826:
1827:
1828:
1829:
1830:
1831:
1832:
1833:
1834:
1835:
1836:
1837:
1838:
1839:
1840:
1841:
1842:
1843:
1844:
1845:
1846:
1847:
1848:
1849:
1850:
1851:
1852:
1853:
1854:
1855:
1856:
1857:
1858:
1859:
1860:
1861:
1862:
1863:
1864:
1865:
1866:
1867:
1868:
1869:
1870:
1871:
1872:
1873:
1874:
1875:
1876:
1877:
1878:
1879:
1880:
1881:
1882:
1883:
1884:
1885:
1886:
1887:
1888:
1889:
1890:
1891:
1892:
1893:
1894:
1895:
1896:
1897:
1898:
1899:
1900:
1901:
1902:
1903:
1904:
1905:
1906:
1907:
1908:
1909:
1910:
1911:
1912:
1913:
1914:
1915:
1916:
1917:
1918:
1919:
1920:
1921:
1922:
1923:
1924:
1925:
1926:
1927:
1928:
1929:
1930:
1931:
1932:
1933:
1934:
1935:
1936:
1937:
1938:
1939:
1940:
1941:
1942:
1943:
1944:
1945:
1946:
1947:
1948:
1949:
1950:
1951:
1952:
1953:
1954:
1955:
1956:
1957:
1958:
1959:
1960:
1961:
1962:
1963:
1964:
1965:
1966:
1967:
1968:
1969:
1970:
1971:
1972:
1973:
1974:
1975:
1976:
1977:
1978:
1979:
1980:
1981:
1982:
1983:
1984:
1985:
1986:
1987:
1988:
1989:
1990:
1991:
1992:
1993:
1994:
1995:
1996:
1997:
1998:
1999:
2000:
2001:
2002:
2003:
2004:
2005:
2006:
2007:
2008:
2009:
2010:
2011:
2012:
2013:
2014:
2015:
2016:
2017:
2018:
2019:
2020:
2021:
2022:
2023:
2024:
2025:
2026:
2027:
2028:
2029:
2030:
2031:
2032:
2033:
2034:
2035:
2036:
2037:
2038:
2039:
2040:
2041:
2042:
2043:
2044:
2045:
2046:
2047:
2048:
2049:
2050:
2051:
2052:
2053:
2054:
2055:
2056:
2057:
2058:
2059:
2060:
2061:
2062:
2063:
2064:
2065:
2066:
2067:
2068:
2069:
2070:
2071:
2072:
2073:
2074:
2075:
2076:
2077:
2078:
2079:
2080:
2081:
2082:
2083:
2084:
2085:
2086:

Select allOpen in new window

 

by: rowbyPosted on 2009-08-05 at 16:42:15ID: 25029017

Hi

I would put the CSS code at the bottom.

Here's what I suggest.

Go to the CSS part of experts exchange.

Reference this question. http://www.experts-exchange.com/Software/Server_Software/Content_Management/WebBased_CMS/Q_24629354.html

Include your web page and see what the CSS experts have to say about using CSS to positon "banneritem_banners"

The CSS experts will use tools (probably Firebug) to see if the CSS can do the positioning you at.

Rowby

 

by: rowbyPosted on 2009-08-06 at 06:44:48ID: 25033203

Hi

Any response at the Experts-Exchange CSS section?

Rowby

 

by: WhiteMafiosiPosted on 2009-08-06 at 14:12:55ID: 25038128

I havent posted a new question. But have added css to this question :)

 

by: rowbyPosted on 2009-08-07 at 08:53:44ID: 25044067

If you don't get a response here regarding the css -- do check out the css Experts Exchange section.  They have the best of the CSS pros there -- and  will let us know if this css will work or if there is another approach.

It is possible that CSs will not fix this, and that would require a modification to the template. but I am hoping that CSS will make it happen.

Rowby

 

by: WhiteMafiosiPosted on 2009-08-19 at 02:11:22ID: 25130731

Sorry for late answer. Just got back from vacation.

I still havent got this working. Is there anybody who knows if this can be done using CSS? :)

 

by: rowbyPosted on 2009-08-20 at 07:58:46ID: 25143333

Good. LEt's see if anyone from  CSS has a solution.

Rowby

 

by: WhiteMafiosiPosted on 2009-08-24 at 22:33:19ID: 25174749

Nobody know anything about this?

 

by: WhiteMafiosiPosted on 2009-10-13 at 01:32:40ID: 25557938

Unable to find a solution

20120131-EE-VQP-002

3 Ways to Join

30-Day Free Trial

The Experts

98% positive feedback on 31,087 answers since March 2000. angeliii is a Microsoft Most Valuable Professional for his work with MS SQL Server & Develoment.

He has also proven his knowledge of Visual Basic Programming, PHP Scripting and Oracle Databases.

The Experts

97% positive feedback on 10,752 answers since July 2000. lrmoore has more than 18 years experience in the networking industry.

The six-time Mircosoft MVPs specialties include firewalls, virtual private networking, and network management.

Testimonials

"...and excellent source for support... Kind of like having your very own IT dept." Electriciansnet

Testimonials

"I was apprehensive at signing up at first. However... it has already made my life as an IT administrator much easier." JaCrews

Testimonials

"WOW! You guys have great, active, and knowledgeable people on here." moore50

Business Clients

Business Clients

In the Press

"If you’ve got a question... Experts Exchange can supply an answer.”

In the Press

"...an invaluable aid for both IT professionals and those who require tech support."

In the Press

"where IT professionals provide quick answers on just about any topic"

Business Account Plans

Loading Advertisement...