@charset "UTF-8";
body  {
    text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #323232;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 100%;
    background-color: #E6E6E6;
    text-decoration: none;
    padding: 0;
    margin: 0;
}
.twoColHybLt #container {
	width: 98%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #E6E6E6;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #E6E6E6;
} 

/* Tips for navSidebar:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLt #navSidebar p" rule.
*/
.twoColHybLt #navSidebar {
	float: left;
	width: 14em; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div  */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #FFFF00;
}
.twoColHybLt #navSidebar h3, .twoColHybLt #navSidebar p {
	margin-left: 0px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. The space between the mainContent and navSidebar is created with the left margin on the mainContent div.  No matter how much content the navSidebar div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #navSidebar space when the content in #navSidebar ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.twoColHybLt #mainContent {
	text-align: left;
	margin-top: 0;
	margin-right: 30px;
	margin-bottom: 0;
	margin-left: 16em;
}  

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
    text-align: center;
}


a img, img {
    border: 0;
}

h1, h2, h3, h4 {
    margin: 0 0;
    padding: 0 0;
    text-align: center;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

h3, h4 {
	font-weight: normal;
}



h1 a, h1 a:visited, h2 a, h2 a:visited, h4 a, h4 a:visited {
	text-decoration: none;
}

h1 a:hover, h2 a:hover, h4 a:hover {
	text-decoration: underline;
}




#logo {
margin: 10px 0 0 16px;
}


#mainNav {
	font-family: Futura, Lucida Grande, Geneva, Arial, Helvetica, sans-serif;
/*	font-weight: bold; */
	letter-spacing: 0.05em;
	font-size: 13pt;
	margin-top: 30px;
}

#mainNav ul {
	padding: 0 0;
	margin: 0 0;
}
 
#mainNav li { 
	list-style: none;
	margin: 1px 0;	
}


#mainNav a, #mainNav a:visited {
	color:#FFFFFF;
	text-decoration: none;
	background-color: transparent;
}


#mainNav .mainTopic, #mainNav .mainTopic a {
	color:#CCCCFF;
}


#mainNav li.subTopic, #mainNav li.topicDetails {
    padding: 1px 0;
    text-align: left;
}


#mainNav .subTopic a {
	padding: 1px 1px 1px 35px;
}


#mainNav .topicDetails a {
	padding: 1px 1px 1px 45px;
}



#mainNav li.mainTopic h3 {
    padding: 1px 3px 2px 10px;
    margin: 1px 0px 1px 0px;
    font-weight: normal;
    text-align: left;
}


#mainNav .mainTopic a, #mainNav .mainTopic a:visited, #mainNav .mainTopic {
	background: transparent url(../images/menuBkgrds/mainTopicOff.gif) no-repeat scroll 0 0;
}

#mainNav .mainTopic a:hover > h3, #mainNav .mainTopic a:hover {
    background: transparent url(../images/menuBkgrds/mainTopicOn.gif) no-repeat scroll 0 0;
    text-align: left;
}


#mainNav li.mainTopic.current a > h3, #mainNav li.mainTopic.current a {
	background: transparent url(../images/menuBkgrds/mainTopicOn.gif) no-repeat scroll 0 0;	
}




#mainNav .subTopic a, #mainNav .subTopic a:visited, #mainNav .subTopic {
	background: transparent url(../images/menuBkgrds/subTopicOff.gif) no-repeat scroll 0 0;
}

#mainNav .subTopic a:hover {
	background: transparent url(../images/menuBkgrds/subTopicOn.gif) no-repeat scroll 0 0;
}


#mainNav li.subTopic.current a {
	background: transparent url(../images/menuBkgrds/subTopicOn.gif) no-repeat scroll 0 0;	
}





#mainNav .topicDetails a, #mainNav .topicDetails a:visited, #mainNav .topicDetails {
	background: transparent url(../images/menuBkgrds/detailOff.gif) no-repeat scroll 0 0;
}

#mainNav .topicDetails a:hover {
	background: transparent url(../images/menuBkgrds/detailOn.gif) no-repeat scroll 0 0;
}


#mainNav li.topicDetails.current a {
	background: transparent url(../images/menuBkgrds/detailOn.gif) no-repeat scroll 0 0;	
}


.box {
	text-align: center;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	vertical-align: top;
}


.blue {
	width: 100%;
	background-color: #ccccff;
	margin-top: 40px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0px;
}

.clear {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	display: inline-block;
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	}

.thin {
	width: 55%;
	margin: 30px auto 0 auto;
}


#indexTextBlock {

text-align: left;
}


.scrollAnchor {
	padding: 0 0 15px 15px;
	text-align: left;
	color: #000080;
}

.box .mainTitle h1{
	color: #101090;
}



.box img.iArchLogos {
	margin: 0 0 20px 0;
}



.box .offer h1{
	color: #666699;
}


.box h4 {
	color: #101090;
}

.boxDemo {
    text-align: center;
    padding-top: 10px;
    padding-right: 0;
    padding-bottom: 10px;
    padding-left: 0;
    vertical-align: center;
    background-color: #565555;
}

.moreInfo {
	margin: 30px 0 0 0;
	padding: 0 0 30px 0;
}
.moreInfoSpecial {
    margin: 0 0 0 0;
    padding: 0 0 30px 0;
}

.orderInfo, .emailInfo {
    margin-right: 20px;
}


#orderInfo {
	color: #101090;
}

#emailInfo a, #emailInfo a:visited, .emailLink a, .emailLink a:visited, .pageTop a, .pageTop a:visited {
	text-decoration: none;
}

#emailInfo a:hover, .emailLink a:hover, .pageTop a:hover {
    text-decoration: underline;
    text-align: center;
}


#otherProductLinksSection {
padding: 0 0 15px 0;
}


#preOwnedHeadings {
color: #000080;
}
#preOwnedHeadings h3 {
font-weight: bold;
}
#preOwnedHeadings h1.sale {
color:#CC99FF;
}
#preOwnedHeadings hr {
font-size: 1px;
width: 80%;
margin: 10px auto;
}


.jumpToVersionLinks {
	padding-bottom: 1.5em;
}

#bannerBlock ul{
list-style: none;
margin: 15px 0 15px 0;
padding: 0 0;
}

.logos li {
padding: 0 0 20px 0;
}



#newFeatures {
	text-align: center;
	width: 100%;
	margin: 20px 0 0 0;
	

}

#newFeaturesBox {
	background-color: #ccccff;
	padding: 10px 0 0 0;
	
}


.productTitle, .workflowFeature {
font-weight:bold;
}

.VWUpdateEmbold {
	font-weight:bold;
	font-size: 100%;
}

#newFeatures .title h2 {
	font-weight: normal;
	text-align: center;
	
}


#newFeaturesDesc {
	display: block;
	float: left;
	width: 65%;
	text-align: left;
	padding: 20px 30px;
	line-height: 1.4em;
}

#newFeaturesDesc h2, #newFeaturesDesc h3{
	margin: 5px 0;
}

#newFeaturesDownloads {
	display: block;
	float: left;
	width: 170px;
	padding: 50px 10px 0 30px;
	text-align: center;
}

#newFeaturesDownloads ul {
list-style: none;
margin: 0 0;
padding: 0 0;
}

#newFeaturesDownloads li {
	margin: 30px 0;
}


#newFeaturesDownloads a, #newFeaturesDownloads a:visited {
	text-decoration: none;
}

#newFeaturesDownloads a:hover {
	text-decoration: underline;
}




#newFeaturesDescInnerBox {
	display: block;
	width: 80%;
	padding: 10px;
	background-color: #DFDFFF;
}

#newFeaturesDescInnerBox h2 {
	font-weight: normal;
	margin: 0 0;
	padding: 0;
}

#newFeaturesDescInnerBox ul {
margin: 10px 0 10px 10px;
padding: 0 0;
list-style: none;
}




#pricing, #pricingTailpiece {
width: 100%;
text-align: center;
margin: 0 0;
}

.ART5FOC {
	margin: 20px 0;
	text-align: left;
	font-size: 14px;
}


.priceTable {
	margin: 20px 0;
	text-align: left;
}



.priceTable caption {
display: none;
}


.priceTable > .pageTop {
font-size: 95%;
text-align: center;
}


.priceTable.pageTop a, .priceTable.pageTop a:visited {
text-decoration: none;
}

.priceTable.pageTop a:hover {
text-decoration: underline;
}


.priceTable table {
    width: 100%;
    text-align: left;/*border-collapse: collapse;
table-layout: fixed;*/
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: rgba(0,0,0,1.00);
}

.priceTable th, .priceTable td {
    border: 0;
    font-size: 110%;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    padding-top: 0.3em;
    padding-right: 0.5em;
    padding-bottom: 0.3em;
    padding-left: 0.5em;
    font-style: normal;
}


.priceTable th {
background:#CCCCFF;
text-align: left;
font-size: 1.5em;
}

.priceTable .specification {
	background-color: #EEE;
}

.priceTable .description {
background:#CCFFCC;
}

.priceTable .price {
	background:#666699;
	color: #E8E8E8;
}


.priceTable .description td.fixedWidth {
width: 185px;
}

.priceTable .description td.BuyNow {
	width: 100px;
}
.productThumbnail {
background:#FFFFFF;
text-align: center;
width: 165px;
}



#smallPrint {
font-size: 110%;
}

#smallPrint .usualSpec {
padding: 0 70px 0 70px;
}

#smallPrint .subjectToChange {
padding: 0 130px 0 130px;
}


#footer {
text-align: center;
font-size: 120%; 
font-weight: bold;
margin: 50px 0 0 0;
}

.companyName ul {
list-style: none;
margin: 30px 0 0 0;
padding: 0 0;
}

.address ul {
list-style: none;
margin: 5px 0 0 0;
padding: 0 0;
}

.companyDetails ul{
list-style: none;
margin: 5px 0 15px 0;
padding: 0 0;
}

.address li, .companyDetails li, .companyName li {
display: inline;
padding: 0 10px 0 0;
}

.emailLink {
margin: 0 0 10px 0;
}

.pageTop{
	text-align: center;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 30px;
	margin-left: 0;
}

#modDate p{
font-size: 70%;
font-weight: normal;
}




.moduleImages ul{
list-style: none;
margin: 5px 0 15px 0;
padding: 0 0;
}

.moduleImages li {
display: inline;
padding: 0 10px 0 0;
}

.moduleImages img {
width: 250px;
height: 185px;
}


.gettingstartedImages img {
	width: 170px;
	height: 239px;
}

.gettingstartedPages img {
	width: 250px;
	height: 239px;
}

 .divOuter{
    display: inline;
    text-align: center;
    color: #636161;
    border-top-left-radius: 20px;
    background-color: #adaeb0;
    }
.divOuterDemo{
    display: inline;
    color: #636161;
    border-top-left-radius: 20px;
    background-color: #060606;    
    }
.divInner1{
    float: left;
    width: 193px;
    height: 240px;
    margin-left: 3px;
    margin-right: 8px;
    font-size: 90%;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
}

.divInner2{
	float:left;
	width:125px;
	height:150px;
	margin-left:3px;
	margin-right:3px;
	font-size: 90%;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.divInner3 {
	float:left;
	width:100px;
	height:150px;
	margin-left:3px;
	margin-right:3px;
	font-size: 90%;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-left: 0px;
	text-align: center;
}
.divInnertutorial{
    float: left;
    width: 250px;
    height: 240px;
    margin-left: 3px;
    margin-right: 8px;
    font-size: 90%;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    color: #000000;
}
.divInnerDemo{
    width: 202px;
    height: 550px;
    font-size: 90%;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    text-shadow: 0px 0px;
    background-color: adaeb0;
    color: #000000;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 10px;
    margin-right: 10px;
    float: left;
    text-align: center;
}
.divInnerDemo:hover{
    width: 202px;
    height: 550px;
    font-size: 100%;
    transform: scale(1.2, 1.2);
}

.divInner3 a:hover {
	text-decoration: underline;
}

.divLegacy1{
    text-align: center;
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
}
.divLegacy2{
    display: inline-block;
    align-items: center;
    justify-content: center;
    float: none;
}
.box p.caption {
font-size: 85%;
}


.gettingstartedcaption ul {
list-style: none;
margin: 5px 0 15px 0;
padding: 0 0;
}
.gettingstartedcaption li {
display: inline;
padding: 0 10px 0 0;
}



/*.featureTable {
margin: 20px 0;
text-align: left;
}*/


.featureTable caption {
display: none;
}

.featureTable table {
	width: 100%;
	background-color: #ccccff;
	alignment-adjust: after-edge;
}

.featureTable th, .featureTable td {
	border: none;
	text-align:left;
	padding-top: 0.3em;
	padding-right: 0.5em;
	padding-bottom: 0.3em;
	padding-left: 0.2em;
}

.featureTable th {
background:#CCCCFF;
text-align: left;
font-size: 1.5em;
}

.featureTable a, .featureTable a:visited {
text-decoration: none;
}

.featureTable a:hover {
text-decoration: underline;
}

.featureTable .feature td.fixedWidth {
width: 185px;
}



.specTable caption, .featureTable caption {
	padding: 10px 0;
}

.specTable table {
width: 100%;
background-color: #ccccff;
}

.specTable th, .specTable td {
border: thin solid #FFFFFF;
padding: 0.3em 0.5em;
font-size: 100%;
text-align:left;
}

.specTable th {
background:#CCCCFF;
text-align: left;
font-size: 1.5em;
}

.specTable td.fixedWidth {
width: 300px;
}

.specTable td.fixedCart {
width: 100px;
}
/*.facadeTraining {
padding: 10px;
}*/

.facadeTraining p {
text-align: left;
padding: 0 0;
margin: 0 0;
}

.facadeTraining  {
margin: 20px 20px;
}
.p.textBlock {
    padding-top: 10px;
    margin-top: 5px;   
}    
.facadeTraining .imageBlock {
padding: 10px 20px;
}

.facadeTraining a, .facadeTraining a:visited {
text-decoration: none;
}

.facadeTraining a:hover {
text-decoration: underline;
}




.imageBlock ul{
list-style: none;
/*margin: 5px 0 15px 0;*/
padding: 0 0;
}

.vertical li {
padding: 10px 0 10px 0;
}

.horizontal li {
display: inline;
padding: 0 0;
}


#artlantisVideo {
width: 450px;
background-color:#000000;
padding: 20px 5px;
left:50%;
margin-left:-230px;
position:relative;

}

.artlantisTitle {
color: #599959;
font-weight: bold;
font-size: 130%;
}

.artlantisDiscover {
color: #ffffff;
}

#elevenReasons {
padding: 40px 50px 0 50px;
}


#elevenReasons li{
text-align: left;
line-height: 1.7em;
}



#downloadGrid caption, #activationGrid caption {
display: none;
}

#downloadGrid table, #activationGrid table {
    width: 80%;
    border-collapse: collapse;
    table-layout: auto;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
#LicenceOption table, #activationGrid table {
    width: 90%;
    border-collapse: collapse;
    table-layout: auto;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
}

#downloadGrid th, #downloadGrid td, #activationGrid th, #activationGrid td {
	border: thin solid #999999;
	padding: 0.5em;
	font-size: 85%;
}

#downloadGrid th, #activationGrid th {
background:#CCCCCC;
}

#downloadGrid td, #activationGrid td {
    background: #FFFFFF;
    text-align: center;
    color: #291415;
    font-size: 100%;
}


#downloadGrid col.platform {
width: 186px;
}
#downloadGrid col.product {
width: 157px;
}
#downloadGrid col.version {
width: 157px;
}

.redStar {
	color:#FFF;
	font-weight: bold;
}

.small {
font-size: 75%;
}


#downloadGrid a, #downloadGrid a:visited {
text-decoration: none;
}

#downloadGrid a:hover {
    text-decoration: underline;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}


#activationGrid td.submit {
background:#ccccff;
border: thin solid #ccccff;
padding: 20px 5px;
}

.multiple {
padding: 10px 0 10px 0;
}


#upgradeFaqs {
padding: 10px 80px;
text-align: left;
color:#000080;
}

#upgradeFaqs ul > li {
list-style:disc;
padding: 5px 0;
}

#upgradeFaqs ol > li, #upgradeFaqs p {
    padding: 5px 0;
    margin: 0 0;
    text-align: left;
}

li.faq {

font-weight: bold;
padding-top: 20px;
}

.key {
font-style:italic;
padding: 10px 0;
}

p.upgradeEligibility {
text-align: center;
font-size: 110%;
}

.sketchUp li {
margin: 0 0;
padding: 0 0;
}


#columnLayout {
text-align: left;
margin: 0 auto;
}

.leftColumn {
	float: left; 
	width: 50%; /* since this element is floated, a width must be given */
	padding: 15px 30px; /* top and bottom padding create visual space within this div  */
	margin: 0 0 30px 0;
}

.rightColumn {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	padding: 25px 0 25px 30px;
}
.rightColumn p {
	font-size: 90%;
}

.click {
	color:#FFF;
	font-size: 80%;
}
.readMore {
	color:#000080;
	font-size: 80%;
}


.EarlierVersion {
	color:#FFF;
	font-size: 100%;
}


.VSSTextStyle {
	color:#000080;
	font-size: 80%;
}


.featureStyle {
	color:#000080;
	text-align: left;
	font-size: 80%;
	vertical-align: top;
}





#newFeaturesList {
	text-align: center;
	width: 100%;
	margin: 20px 0 0 0;
}

.newFeaturesBox {
	background-color: #ccccff;
	padding: 10px 0 0 0;
	margin: 25px 0;
/*	width: 900px;*/
}


#newFeaturesList .title h2 {
	font-weight: normal;
	text-align: center;	
}


.newFeatLCol {
	display: block;
	float: left;
	width: 35%;
	text-align: left;
	padding: 20px 30px;
	line-height: 1.4em;
}

.newFeatLCol h2, #newFeatLCol h3{
	margin: 5px 0;
}

.newFeatRCol {
	display: block;
	float: left;
	width: auto;
	padding: 10px 10px 0 20px;
	text-align: center;
}
.specialoffer {
	font-size: 16px;
	color: #000;
	width: 80%;
	text-align: center;
	display: inline-block;
	font-weight: normal;
}

.newFeatRCol ul {
	list-style: none;
	margin: 0 0;
	padding: 0 0;
}

.newFeatRCol li {
	margin: 30px 0;
}


.newFeatRCol a, .newFeatRCol a:visited {
	text-decoration: none;
}

.newFeatRCol a:hover {
	text-decoration: underline;
}




#titleImage {
margin-top: 30px;
}

.titleTextBox {
	padding-top: 0;
	padding-right: 50px;
	padding-bottom: 0;
	padding-left: 0px;
	text-align: left;
}

.button {
	font-family: Tahoma, Geneva, sans-serif;
	cursor: auto;
	font-size: 36px;
}

.ContentTitle {
	font-family: Tahoma, Geneva, sans-serif;
	cursor: auto;
	font-size: 36px;
	text-align: center;
}

.twoColHybLt #mainContent #pricing .priceTable table .price td a {
	color: #FFF;
}
.AdditionalRequirements {
	color: #000;
	font-size: 14px;
}
.AdditionalRequirements text {
	color: #000;
}
.AdditionalRequirements .text {
}
.twoColHybLt #navSidebar #mainNav Skype {
	padding-left: 2px;
}
.skype {
	padding-top: 1em;
	text-align: center;
}
.vssFeature {
	color: #C00;
	vertical-align: top;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 18pt;
	width: auto;
	font-weight: bold;
	text-align: left;
}
.vssTextBody {
	font-family: Verdana, Geneva, sans-serif;
	color: #000;
	left: auto;
	text-align: left;
	font-size: 12pt;
	font-style: normal;
	font-weight: lighter;
	display: compact;
}
.vssAbbrevFeature {
	font-size: 12pt;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: 300;
	text-align: left;
	color: #000;
	position: relative;
}
.SketchupFeature {
	display: table-cell;
	font-size: 16px;
	font-weight: normal;
	color: #000;
	text-align: left;
	vertical-align: top;
	padding-top: 1em;
}
.SketchupTextBody {
	font-family: Tahoma, Geneva, sans-serif;
	color: #000;
	font-size: 12pt;
	font-style: normal;
	font-weight: normal;
	vertical-align: top;
	text-align: left;
}
.formZFeature {
	font-size: 15px;
	vertical-align: top;
	font-weight: bold;
	color: #000;
	text-align: left;
}
.formZTextBody {
	font-family: Verdana, Geneva, sans-serif;
	color: #000;
	left: auto;
	text-align: left;
	font-size: 10pt;
	font-style: normal;
	font-weight: lighter;
	display: compact;
}
/*.featureTextBlock {
float: left;
width: 400px;
}*/

.featureTextBlock p {
	margin: 0px 20px 20px 0;
	color:#333;
	font-size: 95%;
	line-height: 1.5em;
	width: 700px;
}

.featureHeading h2 {

color:#333333;

}
#productNav {
	position: relative;
	display: block;
	float: left;
	width: 50%;
	color: #333333;
}


#productNav ul {
	/*margin: 2.7em 0.5em 0;*/
	margin: 0 0 0 0px;
	padding: 0 0;
	text-decoration: none;
	font-weight: bold;
}
 
#productNav li { 
	margin-left: 0;
	/*margin-right: 16px; */
	list-style: none;
	
}

#productNav a, #productNav a:visited {
	color: #333333; /*:#887ECC;*/
	font-size: 100%;
	margin: 0 2px 0 0;
	text-decoration: none;
}

#productNav a:hover {
	margin: 0 2px 0 0;
	color: #333333;
	cursor: auto;
	border-bottom-width: 0px;
	border-bottom-color: #887ECC;
	text-decoration: underline;
}

#productNav a.current {
	color: #333333;
	/*border-bottom: 3px solid #000000;*/
}
#namingGuidance .mainFeatureImage, #activationDetails .mainFeatureImage {
float: left;
text-align: center;
padding-right: 20px;
}

/* QUOTE BOX */

.quote { display:none; float:left; height:69px; background-color:rgba(255, 255, 255, 0.8); margin-left:20px; margin-top:14px; padding:7px; }
.quote p { font:bold 17px Helvetica, Arial, Sans-serif; }
.quote .author { font:italic 13px Georgia,serif,Times; color:#ff4f00; padding-top:1px; }
.quotemark { display:none; float:left; font:bold 300px Helvetica; letter-spacing:-35px; line-height:300px; color:rgba(255, 255, 255, 0.8); }
.rightquote { margin-top:-3px; }

#splashCorner  {
	position: absolute;
	top: 1134px;
	display: block;
	width: 233px;
	height: 120px;
	left: 27px;
	background-attachment: scroll;
	background-image: url(../images/offer2.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}
#splashCorner2  {
	background:transparent url(../images/offer2.png) no-repeat scroll 0 0;
	position: absolute;
	top: 2710px;
	display: block;
	width: 233px;
	height: 120px;
	left: 24px;
}

#splashCorner3  {
	background:transparent url(../images/offer2.png) no-repeat scroll 0 0;
	position: absolute;
	top: 3725px;
	display: block;
	width: 233px;
	height: 120px;
	left: 23px;
}
#splashCorner4  {
	background:transparent url(../images/offer2.png) no-repeat scroll 0 0;
	position: absolute;
	top: 5157px;
	display: block;
	width: 233px;
	height: 120px;
	left: 22px;
}

#VectorworksResellerLogo  {
	display: block;
	width: 13em;
	height: 104px;
	left: 25px;
	background-attachment: scroll;
	background-image: url(../images/faCADe/specialist_reseller_logo.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
}


.productThumbnail .text {
	color: #000000;
}
.priceOfferVSS {
	color: #E8E8E8;
	background-color: rgb(180,45,48);
}

.priceServiceSelect {
	color: #E8E8E8;
	background-color: #7375B1;
}

.priceAddon {
	color: #E8E8E8;
	background-color: #7375B1;
}

.priceSubscription {
	color: #E8E8E8;
	background-color: #3b9b38;
}

.VAT {
    font-size: 18px;
    font-weight: bold;
}
.incVAT
{
    font-size: 14px;

}

.Session {
	top: 0px;
	list-style-type: none;
	font-size: 14px;
	padding: 0px;
	height: 12px;
	vertical-align: bottom;
}
.WhyYouNeed {
	font-size: 14px;
	list-style-type: none;
	padding: 0px;
	font-style: oblique;
}
.webinarRequirments {
	font-size: 14px;
	list-style-type: none;
	padding: 0px;
	font-style: normal;
}
.smallH1 {
	color: #666699;
	font-size: 24px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
}
.smallH1Offer {
    color: rgba(0,0,0,1);
    font-size: 24px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
}
.smallH1OfferTitle {
    color: #358F33;
    font-size: 46px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
}
.twoColHybLt #mainContent #mainTitleBox #bannerBlock .featureTable tr td div {
}
.twoColHybLt #mainContent #mainTitleBox #bannerBlock p {
	text-align: center;
}
.twoColHybLt #mainContent #mainTitleBox #bannerBlock .featureTable tr td .featureStyle {
	text-align: left;
}
.Readtext {
	color: #C00;
	font-weight: bold;
}
.NewsSubjectRED {
	font-size: 30px;
	font-weight: bold;
	color: #F00;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.offer50BundleNEW, .offer50BundleUPG {
    color: #E8E8E8;
    background-color: #000000;
}

.offer40BundleNEW, .offer40BundleUPG {
    color: #E8E8E8;
    background-color: #000000;
}
.NewsSubjectGREEN {
	font-size: 30px;
	font-weight: bold;
	color: #358F33;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.fullprice {
    text-decoration: line-through;
}
.highlight {
    font-size: 22px;
    color: rgba(0,0,0,1.00)
}
.TextIndent {
    text-indent: 30px;
  text-align: left;
}
.licencingHeading {
    font-size: 31px;
}
.containerDemo {
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: center;
    float: left;
}

.StartTrial {
    font-size: 34px;
}
.aligned {
    text-align: center;
    vertical-align: middle
}
.form-submit-button {
    padding: 10px 15px;
    background: #ccc;
    border: 0 none;
    cursor: pointer;
    text-size: 12;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    font-size: 16px;
    background-image: linear-gradient(to bottom, #ccc, transparent);
}

.form-submit-button:hover { 
  background-color: grey;
}


.form-submit-biggerbutton {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    padding-top: 12px;
    padding-right: 12px;
    padding-left: 12px;
    padding-bottom: 12px;
    background: #ccc;
    border: 0 none;
    cursor: pointer;
    text-size: 12;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    font-size: 28px;
    background-image: linear-gradient(to bottom, #ccc, transparent);
    font-weight: bold;
    margin-top: 12px;
}

.form-submit-biggerbutton:hover {
    background-color: grey;
    font-weight: bolder;
}

#CommentIcon  {
    background: transparent url(../images/faCADe/QuoteStart.png) no-repeat scroll 0 0;
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 60px;
    left: 30px;
}
