2010-10-27 22:11:52 +00:00
|
|
|
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
|
|
|
@charset "UTF-8";
|
|
|
|
/* CSS Document */
|
|
|
|
/* Tell the browser to render HTML 5 elements as block */
|
|
|
|
header,
|
|
|
|
hgroup,
|
|
|
|
section,
|
|
|
|
nav,
|
|
|
|
article,
|
|
|
|
aside,
|
|
|
|
footer {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
time {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
height: 100%; /* needed for container min-height */
|
2010-10-29 15:55:41 +00:00
|
|
|
font-family: "Lucida Sans Unicode","Lucida Grande", Geneva, helvetica, sans-serif;
|
|
|
|
/*font-size: 62.5%;*/
|
2010-10-27 22:11:52 +00:00
|
|
|
height: auto !important; /* real browsers */
|
|
|
|
height: 100%; /* IE6: treaded as min-height*/;
|
|
|
|
min-height: 100%; /* real browsers */
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2010-10-29 20:03:16 +00:00
|
|
|
body{
|
|
|
|
background: #f3f3f0 url(../images/header-background.png) center 0 no-repeat;
|
|
|
|
}
|
2010-11-09 21:56:02 +00:00
|
|
|
/* h1,h2,h3,h4,h5,h6 ------> */
|
|
|
|
h2{
|
|
|
|
padding: 10px 0 12px 0;
|
|
|
|
margin:0;
|
|
|
|
font-size: 22px;
|
|
|
|
color: #2485ae;
|
|
|
|
}
|
|
|
|
h3{
|
|
|
|
padding: 10px 0 12px 0;
|
|
|
|
margin:0;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #2485ae;
|
|
|
|
}
|
|
|
|
h4{
|
|
|
|
padding: 10px 0 12px 0;
|
|
|
|
margin:0;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #2485ae;
|
|
|
|
}
|
|
|
|
h5{
|
|
|
|
padding: 10px 0 12px 0;
|
|
|
|
margin:0;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #2485ae;
|
|
|
|
}
|
2010-10-27 22:11:52 +00:00
|
|
|
/* HEADER ------> */
|
|
|
|
#branding {
|
|
|
|
position: relative;
|
|
|
|
width: 970px;
|
|
|
|
height: 114px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
/* BRANDING ------> */
|
2010-11-03 19:15:51 +00:00
|
|
|
h1.vivo-logo {
|
2010-10-27 22:11:52 +00:00
|
|
|
position: absolute;
|
|
|
|
width: 386px;
|
|
|
|
height: 59px;
|
|
|
|
top: 28px;
|
|
|
|
left: 0;
|
|
|
|
background: url(../images/VIVO-logo.png) 0 0 no-repeat;
|
|
|
|
}
|
2010-11-03 19:15:51 +00:00
|
|
|
h1.vivo-logo a {
|
2010-10-27 22:11:52 +00:00
|
|
|
display: block;
|
|
|
|
width: 386px;
|
|
|
|
height: 59px;
|
|
|
|
}
|
|
|
|
/* HEADER NAV------> */
|
|
|
|
ul#header-nav {
|
|
|
|
float: right;
|
|
|
|
list-style: none;
|
|
|
|
height: 30px;
|
|
|
|
padding-top: 10px;
|
|
|
|
margin-right: 13px;
|
|
|
|
}
|
|
|
|
ul#header-nav li {
|
|
|
|
float: left;
|
|
|
|
display: block;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
border-right: 1px solid grey;
|
|
|
|
font-size: 0.7em;
|
2010-11-08 18:08:10 +00:00
|
|
|
color: #fff;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
|
|
|
ul#header-nav li.last {
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
ul#header-nav li:last-child {
|
|
|
|
padding-right: 0;
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
ul#header-nav a {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
ul#header-nav a:link,
|
|
|
|
ul#header-nav a:visited {
|
|
|
|
text-decoration: none
|
|
|
|
}
|
|
|
|
ul#header-nav a:hover,
|
|
|
|
ul#header-nav a:active {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
/* SEARCH ------> */
|
|
|
|
#search {
|
|
|
|
position:absolute;
|
|
|
|
width:396px;
|
|
|
|
height:38px;
|
|
|
|
top:40px;
|
|
|
|
right:10px;
|
|
|
|
}
|
|
|
|
#search-field {
|
|
|
|
width:396px;
|
|
|
|
height:38px;
|
|
|
|
background:url(../images/search-interior-pages.png) 0 0 no-repeat;
|
|
|
|
}
|
|
|
|
input.search-vivo {
|
|
|
|
float:left;
|
|
|
|
width:290px;
|
|
|
|
height:25px;
|
|
|
|
border:0;
|
|
|
|
font-size:16px;
|
|
|
|
color:#5e6363;
|
|
|
|
margin-left:10px;
|
|
|
|
margin-top:5px;
|
|
|
|
}
|
|
|
|
#search a.submit {
|
|
|
|
float:right;
|
|
|
|
display:block;
|
|
|
|
width:70px;
|
|
|
|
height:25px;
|
|
|
|
font-size:14px;
|
|
|
|
color:#fff;
|
|
|
|
padding-top:8px;
|
|
|
|
padding-left:15px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
#search-form-modifier{
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
/* MAIN NAVIGATION------> */
|
|
|
|
ul#main-nav {
|
|
|
|
display: block;
|
|
|
|
width: 968px;
|
|
|
|
height: 46px;
|
|
|
|
border: 1px solid #dce4e3;
|
|
|
|
background-color: #f7f9f9;
|
|
|
|
margin: 0 auto;
|
|
|
|
list-style: none;
|
|
|
|
font-weight: 1em;
|
|
|
|
color: #706a66;
|
|
|
|
}
|
|
|
|
#main-nav li {
|
|
|
|
float: left;
|
|
|
|
line-height: 46px;
|
|
|
|
background: url(../images/separator-main-nav.jpg) right -2px no-repeat;
|
|
|
|
}
|
|
|
|
#main-nav li a {
|
|
|
|
padding-left: 16px;
|
|
|
|
padding-right: 16px;
|
|
|
|
display: block;
|
|
|
|
color: #706a66;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
#main-nav li a:hover {
|
|
|
|
color: #002b44;
|
|
|
|
/*background: url(../images/selected-main-nav.jpg) left -3px no-repeat;
|
|
|
|
margin-left: 21px;*/
|
|
|
|
}
|
|
|
|
#main-nav li a.selected {
|
|
|
|
color: #002b44;
|
|
|
|
background: url(../images/selected-main-nav.jpg) left -1px no-repeat;
|
|
|
|
margin-left: 18px;
|
|
|
|
}
|
|
|
|
/* WRAPPER CONTENT------> */
|
|
|
|
#wrapper-content {
|
|
|
|
clear: both;
|
|
|
|
width: 930px;
|
|
|
|
margin: 0 auto;
|
|
|
|
background: #fff;
|
|
|
|
min-height: 450px;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
/* INTRO ------> */
|
|
|
|
#intro {
|
|
|
|
float: left;
|
|
|
|
width: 570px;
|
|
|
|
padding-bottom: 40px;
|
|
|
|
}
|
2010-11-19 14:53:41 +00:00
|
|
|
|
|
|
|
#intro h2 {
|
2010-10-27 22:11:52 +00:00
|
|
|
padding: 35px 0 12px 24px;
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
2010-11-19 14:53:41 +00:00
|
|
|
#intro p{
|
2010-10-27 22:11:52 +00:00
|
|
|
font-size: 16px;
|
|
|
|
color: #5f6464;
|
|
|
|
line-height: 1.3em;
|
|
|
|
padding: 0 24px 30px 24px;
|
|
|
|
}
|
2010-11-19 14:53:41 +00:00
|
|
|
#intro a {
|
2010-10-27 22:11:52 +00:00
|
|
|
color: #2485ae
|
|
|
|
}
|
|
|
|
.pictos-arrow-14 {
|
|
|
|
font-family: 'Pictos';
|
|
|
|
font-size: 14px;
|
|
|
|
color: #b2d15a;
|
|
|
|
}
|
2010-11-05 17:42:46 +00:00
|
|
|
/* LOG IN------> */
|
2010-10-27 22:11:52 +00:00
|
|
|
#log-in {
|
2010-11-05 17:42:46 +00:00
|
|
|
width:314px;
|
|
|
|
height:390px;
|
|
|
|
border:1px solid #e8ece9;
|
|
|
|
margin-right:25px;
|
|
|
|
margin-top:20px;
|
|
|
|
padding-bottom:30px;
|
|
|
|
margin-bottom:30px;
|
|
|
|
}
|
2010-11-16 15:10:12 +00:00
|
|
|
/* Login container on home page */
|
|
|
|
#login-container {
|
|
|
|
float: right;
|
|
|
|
}
|
2010-11-05 17:42:46 +00:00
|
|
|
#log-in h2 {
|
2010-10-27 22:11:52 +00:00
|
|
|
font-size: 22px;
|
|
|
|
color: #2485ae;
|
2010-11-05 17:42:46 +00:00
|
|
|
padding-left:15px;
|
|
|
|
padding-top:18px;
|
|
|
|
border-bottom:none;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
|
|
|
#log-in label {
|
2010-11-05 17:42:46 +00:00
|
|
|
display:block;
|
2010-10-27 22:11:52 +00:00
|
|
|
font-size: 14px;
|
|
|
|
color: #5e6363;
|
2010-11-05 17:42:46 +00:00
|
|
|
padding-top:20px;
|
|
|
|
padding-left:38px;
|
|
|
|
font-size:14px;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
2010-11-05 17:42:46 +00:00
|
|
|
#log-in input.text-field {
|
|
|
|
border:0;
|
|
|
|
font-size:14px;
|
|
|
|
padding:5px;
|
|
|
|
width:219px;
|
|
|
|
height:24px;
|
|
|
|
margin-left:38px;
|
|
|
|
margin-top:7px;
|
2010-10-27 22:11:52 +00:00
|
|
|
background: #fff;
|
2010-11-05 17:42:46 +00:00
|
|
|
border:1px solid #e0dfdf;
|
2010-10-27 22:11:52 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
2010-11-05 17:42:46 +00:00
|
|
|
-webkit-border-radius: 5px;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
2010-11-05 17:42:46 +00:00
|
|
|
#log-in input.text-field:focus {
|
|
|
|
border:1px solid rgba(57, 138, 172, 0.5);
|
|
|
|
background-color: rgba(57, 138, 172, 0.1);
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
2010-11-05 17:42:46 +00:00
|
|
|
#log-in p.submit {
|
|
|
|
width:100px;
|
|
|
|
height:40px;
|
|
|
|
margin-top:20px;
|
|
|
|
margin-left:38px;
|
|
|
|
float:left;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
2010-11-05 17:42:46 +00:00
|
|
|
#log-in input.checkbox-remember-me {
|
|
|
|
float:left;
|
|
|
|
height:14px;
|
|
|
|
width:14px;
|
2010-10-27 22:11:52 +00:00
|
|
|
color: #5e6363;
|
2010-11-05 17:42:46 +00:00
|
|
|
padding:0;
|
|
|
|
margin-top:33px;
|
|
|
|
margin-left:20px;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
2010-11-05 17:42:46 +00:00
|
|
|
#log-in .label-remember-me {
|
|
|
|
display:block;
|
|
|
|
float:right;
|
2010-10-27 22:11:52 +00:00
|
|
|
color: #5e6363;
|
2010-11-05 17:42:46 +00:00
|
|
|
font-size:12px;
|
|
|
|
width:100px;
|
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
margin-top:30px;
|
|
|
|
margin-right:25px;
|
|
|
|
padding-right:10px;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
|
|
|
p.forgot-password {
|
2010-11-05 17:42:46 +00:00
|
|
|
clear:both;
|
|
|
|
margin-left:38px;
|
|
|
|
font-size:12px;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
|
|
|
p.forgot-password a {
|
2010-11-05 17:42:46 +00:00
|
|
|
color: #2485ae;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
2010-11-05 17:42:46 +00:00
|
|
|
p.request-account {
|
|
|
|
width:219px;
|
|
|
|
clear:both;
|
|
|
|
float:left;
|
|
|
|
margin-left:38px;
|
|
|
|
margin-top:10px;
|
|
|
|
padding-top:20px;
|
|
|
|
border-top:1px solid #e8ece9;
|
|
|
|
}
|
|
|
|
p.request-account a{
|
|
|
|
color:#fff;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
|
|
|
/* HOME SEARCH ------> */
|
|
|
|
#search-home {
|
|
|
|
float: left;
|
|
|
|
width: 533px;
|
|
|
|
margin-left: 24px;
|
|
|
|
}
|
|
|
|
#search-home h3 {
|
|
|
|
padding: 0;
|
|
|
|
font-size: 22px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
#search-home-field {
|
|
|
|
width: 483px;
|
|
|
|
height: 44px;
|
|
|
|
background: url(../images/search-field-and-button.png) 0 0 no-repeat;
|
|
|
|
}
|
|
|
|
input.search-home-vivo {
|
|
|
|
float: left;
|
|
|
|
margin: 10px 0 0 8px;
|
|
|
|
width: 350px;
|
|
|
|
height: 20px;
|
|
|
|
border: 0;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #5e6363;
|
|
|
|
}
|
|
|
|
#search-home a.submit {
|
|
|
|
float: right;
|
|
|
|
display: block;
|
|
|
|
width: 80px;
|
|
|
|
height: 20px;
|
|
|
|
font-size: 14;
|
|
|
|
color: #fff;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 30px;
|
|
|
|
}
|
|
|
|
/* BROWSE ------> */
|
|
|
|
#browse {
|
|
|
|
clear: both;
|
|
|
|
width: 920px;
|
|
|
|
margin: 0 auto;
|
|
|
|
border: 1px solid #dfe6e6;
|
|
|
|
background: #f7f9f9;
|
|
|
|
overflow: hidden;
|
|
|
|
padding-bottom: 30px;
|
|
|
|
}
|
2010-11-08 18:08:10 +00:00
|
|
|
#browse h4 {
|
2010-10-27 22:11:52 +00:00
|
|
|
width: 10%;
|
2010-11-08 18:08:10 +00:00
|
|
|
height: 30px;
|
2010-10-27 22:11:52 +00:00
|
|
|
margin-bottom: 27px;
|
|
|
|
padding-left: 15px;
|
|
|
|
font-weight: normal;
|
2010-11-08 18:08:10 +00:00
|
|
|
line-height: 38px;
|
2010-10-27 22:11:52 +00:00
|
|
|
color: #fff;
|
|
|
|
background: #5e6363;
|
2010-11-08 18:08:10 +00:00
|
|
|
font-size: 20px;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
|
|
|
/* BROWSE CLASS GROUPS ------> */
|
|
|
|
ul#browse-classGroups {
|
|
|
|
float: left;
|
|
|
|
width: 200px;
|
|
|
|
border: 1px solid #dde4e3;
|
|
|
|
border-right: none;
|
|
|
|
background: #f1f2ee;
|
|
|
|
margin-left: 34px;
|
|
|
|
padding: 0 20px 23px 20px;
|
|
|
|
margin-top: 10px;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
ul#browse-classGroups li {
|
|
|
|
display: block;
|
|
|
|
border-bottom: 1px solid #dde4e3;
|
|
|
|
font-size: 18px;
|
|
|
|
width: 200px;
|
|
|
|
height: 35px;
|
|
|
|
line-height: 35px;
|
|
|
|
}
|
|
|
|
ul#browse-classGroups li:last-child {
|
|
|
|
border-bottom: none
|
|
|
|
}
|
|
|
|
ul#browse-classGroups a {
|
|
|
|
display: block;
|
|
|
|
padding-left: 15px;
|
|
|
|
width: 200px;
|
|
|
|
height: 35px;
|
|
|
|
color: #5e6363;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
ul#browse-classGroups a:hover {
|
|
|
|
background: url(../images/arrow.gif) 0 12px no-repeat;
|
|
|
|
color: #2ea0cf;
|
|
|
|
}
|
|
|
|
ul#browse-classGroups a.selected {
|
|
|
|
color: #2ea0cf;
|
|
|
|
background: url(../images/arrow.gif) 0 12px no-repeat;
|
|
|
|
}
|
|
|
|
ul#browse-classGroups .count-classes {
|
|
|
|
font-size: 14px
|
|
|
|
}
|
|
|
|
/* BROWSE CLASSES IN CLASS GROUP ------> */
|
|
|
|
#browse-classes {
|
|
|
|
float: left;
|
|
|
|
width: 610px;
|
|
|
|
border: 1px solid #dde6e5;
|
|
|
|
background: #fff;
|
|
|
|
margin-top: -20px;
|
|
|
|
}
|
|
|
|
ul#class-group-list {
|
|
|
|
float: left;
|
|
|
|
width: 268px;
|
|
|
|
padding: 0 10px 15px 22px;
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
border-right: 1px solid #dde5e4;
|
|
|
|
}
|
|
|
|
ul#class-group-list li {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 268px;
|
|
|
|
border-bottom: 1px solid #dde4e3;
|
|
|
|
font-size: 14px;
|
|
|
|
height: 35px;
|
|
|
|
line-height: 35px;
|
|
|
|
}
|
|
|
|
ul#class-group-list li:last-child {
|
|
|
|
border-bottom: none
|
|
|
|
}
|
|
|
|
ul#class-group-list a {
|
|
|
|
display: block;
|
|
|
|
padding-left: 15px;
|
|
|
|
width: 200px;
|
|
|
|
height: 35px;
|
|
|
|
color: #5e6363;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
ul#class-group-list a:hover {
|
|
|
|
background: url(../images/arrow.gif) 0 12px no-repeat;
|
|
|
|
color: #2ea0cf;
|
|
|
|
}
|
|
|
|
ul#class-group-list a.selected {
|
|
|
|
color: #2ea0cf;
|
|
|
|
background: url(../images/arrow.gif) 0 12px no-repeat;
|
|
|
|
}
|
|
|
|
ul#class-group-list .count-individuals {
|
|
|
|
font-size: 12px
|
|
|
|
}
|
|
|
|
/* VISUALIZATION ------> */
|
|
|
|
#visual-graph {
|
|
|
|
float: right;
|
|
|
|
width: 270px;
|
|
|
|
height: 270px;
|
|
|
|
}
|
|
|
|
#visual-graph h4 {
|
|
|
|
padding: 20px 0 12px 12px;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #2485ae;
|
|
|
|
font-weight: normal;
|
|
|
|
background: url(../images/bullet-visual-graph.png) 120px 25px no-repeat;
|
|
|
|
}
|
|
|
|
/* HIGHLIGHTS ------> */
|
|
|
|
#highlights {
|
|
|
|
clear: both;
|
|
|
|
width: 920px;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-top: 40px;
|
|
|
|
height: 400px;
|
|
|
|
border: 1px solid #dfe6e6;
|
|
|
|
background: #f7f9f9;
|
|
|
|
padding-bottom: 30px;
|
|
|
|
}
|
2010-11-08 18:08:10 +00:00
|
|
|
#highlights h4 {
|
|
|
|
width: 13%;
|
|
|
|
height: 30px;
|
|
|
|
margin-bottom: 27px;
|
|
|
|
padding-left: 15px;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 38px;
|
|
|
|
color: #fff;
|
|
|
|
background: #5e6363;
|
|
|
|
font-size: 20px;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
2010-11-08 18:08:10 +00:00
|
|
|
#highlights h5 {
|
2010-10-27 22:11:52 +00:00
|
|
|
color: #91b039;
|
|
|
|
font-size: 14px;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
.global-highlights {
|
|
|
|
border: 1px solid #e8e8e8;
|
|
|
|
background: #fff;
|
|
|
|
float: left;
|
|
|
|
width: 235px;
|
|
|
|
padding: 24px;
|
|
|
|
}
|
|
|
|
/* FEATURED PEOPLE ------> */
|
|
|
|
#featured-people {
|
|
|
|
margin-left: 20px;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
article.featured-people {
|
|
|
|
width: 245px;
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
img.individual-photo {
|
|
|
|
width: 80px;
|
|
|
|
border: 1px solid #999;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
article.vcard p.fn {
|
|
|
|
float: left;
|
|
|
|
width: 130px;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 1.3em;
|
|
|
|
margin-left: 20px;
|
|
|
|
color: #303e4e;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
article.vcard span.title {
|
|
|
|
display: block;
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
article.vcard span.org {
|
|
|
|
display: block;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
p.view-all {
|
|
|
|
clear: both;
|
|
|
|
width: 200px;
|
|
|
|
font-size: 14px;
|
|
|
|
text-align: right;
|
|
|
|
color: #303e4e;
|
|
|
|
}
|
|
|
|
a.view-all-style {
|
|
|
|
color: #303e4e
|
|
|
|
}
|
|
|
|
.pictos-arrow-10 {
|
|
|
|
font-family: 'Pictos';
|
|
|
|
font-size: 1.0em;
|
|
|
|
line-height: 1.0em;
|
|
|
|
}
|
|
|
|
/* UPCOMING EVENTS------> */
|
|
|
|
#upcoming-events {
|
|
|
|
margin-right: 15px
|
|
|
|
}
|
|
|
|
article.vevent {
|
|
|
|
width: 233px;
|
|
|
|
height: 59px;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
time.dtstart {
|
|
|
|
width: 40px;
|
|
|
|
height: 59px;
|
|
|
|
float: left;
|
|
|
|
background: url(../images/date-display.jpg) 0 0 no-repeat;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
padding-top: 10px;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
time.dtstart span {
|
|
|
|
display: block;
|
|
|
|
font-size: 11px;
|
|
|
|
color: #fff;
|
|
|
|
margin-top: -10px;
|
|
|
|
}
|
|
|
|
p.summary {
|
|
|
|
padding-left: 50px;
|
|
|
|
padding-top: 12px;
|
|
|
|
color: #303e4e;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
p.summary time {
|
|
|
|
display: block;
|
|
|
|
padding-top: 0;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
/* LATEST PUBLICATIONS ------> */
|
|
|
|
article.latest-publications-item {
|
|
|
|
width: 232px;
|
|
|
|
height: 35px;
|
|
|
|
background: url(../images/icon-pub.png) 0 0 no-repeat;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
p.publication-content {
|
|
|
|
padding-left: 40px;
|
|
|
|
color: #303e4e;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 1.3em;
|
|
|
|
}
|
|
|
|
p.publication-content span {
|
|
|
|
display: block;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
/* FOOTER------> */
|
2010-10-29 15:55:41 +00:00
|
|
|
footer {
|
2010-10-27 22:11:52 +00:00
|
|
|
clear: both;
|
|
|
|
width: 970px;
|
|
|
|
height: 88px;
|
|
|
|
margin: 0 auto;
|
|
|
|
font-size: 0.7em;
|
|
|
|
color: #4e5051;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
2010-10-29 15:55:41 +00:00
|
|
|
footer p.copyright {
|
2010-10-27 22:11:52 +00:00
|
|
|
float: left;
|
|
|
|
padding-top: 55px;
|
|
|
|
padding-left: 30px;
|
|
|
|
width: 500px;
|
|
|
|
}
|
|
|
|
ul#footer-nav {
|
|
|
|
float: right;
|
|
|
|
list-style: none;
|
|
|
|
width: 200px;
|
|
|
|
height: 20px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
padding-top: 50px;
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
|
|
|
ul#footer-nav li {
|
|
|
|
float: left;
|
|
|
|
display: block;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
border-right: 1px solid #c9c8c8;
|
|
|
|
}
|
|
|
|
ul#footer-nav li:last-child {
|
|
|
|
border-right: none
|
|
|
|
}
|
|
|
|
#footer-nav a {
|
|
|
|
color: #4e5051
|
|
|
|
}
|
|
|
|
#footer-nav a:hover {
|
|
|
|
color: #09C;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a.terms {
|
|
|
|
color: #09C;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a.terms:hover {
|
|
|
|
color: #4e5051;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a.powered-by-vivo {
|
|
|
|
color: #09C;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a.powered-by-vivo:hover {
|
|
|
|
color: #4e5051;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2010-11-01 19:02:02 +00:00
|
|
|
|
|
|
|
/* GENERAL STYLE------> */
|
|
|
|
p{
|
|
|
|
margin-bottom:1.3em;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
2010-11-01 19:02:02 +00:00
|
|
|
|
2010-10-27 22:11:52 +00:00
|
|
|
/* STYLED BUTTONS ------> */
|
|
|
|
.button,
|
|
|
|
.button:visited {
|
|
|
|
background: #222 url(../images/alert-overlay.png) repeat-x;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 7px 22px 8px;
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
border-radius: 4px; /*This box should have a rounded corners in browsers supporting CSS3*/
|
|
|
|
-moz-border-radius: 4px;
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
/* : ;
|
|
|
|
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
|
|
|
|
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
|
|
|
|
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
|
|
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.25);*/
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
2010-11-05 17:42:46 +00:00
|
|
|
border:0;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
|
|
|
.button:hover {
|
|
|
|
background-color: #111;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.button:active {
|
2010-11-05 17:42:46 +00:00
|
|
|
top: 1px;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
|
|
|
.small.button,
|
|
|
|
.small.button:visited {
|
|
|
|
font-size: 11px
|
|
|
|
}
|
|
|
|
.button,
|
|
|
|
.button:visited {
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1; /*text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);*/
|
|
|
|
}
|
|
|
|
.green.button,
|
|
|
|
.green.button:visited {
|
2010-11-05 17:42:46 +00:00
|
|
|
background-color: #749a02;
|
2010-11-17 15:39:05 +00:00
|
|
|
color:#fff;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
|
|
|
.green.button:hover {
|
2010-11-05 17:42:46 +00:00
|
|
|
background-color: #b2d15a;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
|
|
|
.blue.button,
|
|
|
|
.blue.button:visited {
|
2010-11-05 17:42:46 +00:00
|
|
|
background-color: #398aac;
|
2010-11-17 15:39:05 +00:00
|
|
|
color:#fff;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
|
|
|
.blue.button:hover {
|
2010-11-05 17:42:46 +00:00
|
|
|
background-color: #58a2c1;
|
2010-10-27 22:11:52 +00:00
|
|
|
}
|
|
|
|
|
2010-11-01 19:02:02 +00:00
|
|
|
/* MISCELLANEOUS------> */
|
|
|
|
.displace {
|
|
|
|
position: absolute;
|
|
|
|
left: -9999px;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
text-decoration: underline
|
|
|
|
}
|