File size: 31,329 Bytes
a01128b |
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 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "">
<html lang="en" xml:lang="en" xmlns="">
<head>
<style>
/* Common styling information included across all pages
------------------------------------------------------------------------------*/
/* CSS reset */
body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
table, caption, tbody, tfoot, thead, tr, th, td {
vertical-align: center;
}
/* remember to define focus styles! */
:focus {
outline: 0;
}
body {
color: black;
}
ol, ul {
list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
border-collapse: separate;
border-spacing: 0;
}
caption, th, td {
font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: "";
}
blockquote, q {
quotes: "" "";
}
.clear {clear:both;}
.bold {font-weight:bold;}
.light-text {font-weight:normal;}
/* Container
------------------------------------------------ */
body {
margin: 0;
padding:0;
font-family: Arial, Helvetica, Verdana, sans-serif;
font-size:12px;
}
p {margin:0 0 12px 0;line-height:1.4em;}
#all
{
margin: 0 auto 0 auto;
width: 900px;
padding:0 0 0 0px;
height:auto;
}
#main
{
float:left;
height:auto;
width: 900px;
position: relative;
text-align: left;
margin: 0;
padding:0 0 0 40px;
}
/* Header
------------------------------------------------ */
#header {
width:810px;
padding:20px 0 32px 40px;
background:none;
}
#masthead {
float:left;
width:364px;
margin:0px 0 0 0px;
padding:0;
}
#header-right {
float:right;
width:243px;
margin:0px 0 0 0px;
padding:0;
text-align:right;
font-weight:bold;
font-size:1.2em;
}
/* Navigation & Lists
------------------------------------------------ */
#navigation {
background:none;
margin:0;
padding:0;
font-size:1.2em;
}
#navigation ul {
margin:0;
padding:0;
}
#navigation li {
margin:0;
padding:3px 0;
border:none;
}
#navigation a:link, #navigation a:visited {
color:#58595B;
text-decoration:none;
width:162px;
padding:0 10px 0 0;
}
#navigation a:hover, #navigation a:active {
color:#0099cc;
text-decoration:none;
width:162px;
padding:0 10px 0 0;
}
#navigation li.active {background:url(../images/5.gif) 0px 8px no-repeat;}
#navigation li.active a {color:#0099cc;font-weight:bold;background:#fff; padding:0 10px 0 0;}
#navigation-two ul li:last-child.active {background:none;}
/* Link Styles - Generic Site-wide
-------------------------------------------------*/
a:link {color: #0099cc;}
a:visited {color: #0099cc;}
a:hover {color: #006D8F;}
a:active {color: #006D8F;}
a img {margin:0;padding:0;border:none;}
#header-right a:link, #header-right a:visited {color:#019DDA;text-decoration:none;}
#header-right a:hover, #header-right a:active {color:#019DDA;}
div#header-right div#header-product-links a:link,div#header-right div#header-product-links a:visited{font-size:1.45em;letter-spacing:-1px;}
div#header-right div#header-product-links a.ufh {color:#ff4037;}
div#header-right div#header-product-links a.hp {color:#c7e45e;}
div#header-right div#header-product-links a.ss {color:#57b7df;}
div#header-right div#header-product-links a:hover,div#header-right div#header-product-links a:active {color:#fff;}
/* Footer
------------------------------------------------ */
#footer {
width:100%;
font-size:1.1em;
color:#000;
padding:5px 0 0 0;
margin:20px 0 50px 0;
text-align:center;
}
#footer ul li {
display:inline;
list-style-type:none;
padding:0;
height:10px;
border-right:1px solid #a6a6a6;
}
#footer ul {
padding:0px;
margin:0;
}
#footer ul li:last-child {border-right:none;}
#footer a:link, #footer a:visited {color:#a6a6a6;text-decoration:underline;padding:0 5px 0px 3px;}
#footer a:hover, #footer a:active {color:#a6a6a6;}
/* Layout
------------------------------------------------ */
.first-float-rigid
{
float: left;
width: 185px;
padding: 0;
margin: 0;
}
.second-float-rigid {
float: left;
width: 712px;
margin: 0 0 0 0px;
padding:0;
}
#lhscontainer {
position: relative;
padding:17px 0 0 0;
margin:0px 0 0 0;
text-align: left;
}
#rhscontainer {
position: relative;
margin:0px 0 0 0;
padding: 0 0 0 0px;
text-align: left;
}
/* PANELS
------------------------------------------------ */
ul.pagination {margin:10px 0 10px 0;padding:0 0 0 0;}
ul.pagination a {}
li.pagination {
display:inline;
padding:5px;
}
/* ARTICLES
------------------------------------------------ */
div.text-box-top {height:8px;background:url(../images/6.gif) no-repeat;width:648px;}
div.text-box-bottom {height:8px;background:url(../images/7.gif) no-repeat;width:648px;}
div.text-box-content {height:auto;background:url(../images/8.gif) repeat-y;width:616px;padding:16px;}
div.text-box-content p.full-width {width:100%;}
div.text-box-content p.half-width {width:308px;}
div.content-holder-home {width:700px;background:url(../images/9.jpg) no-repeat bottom right;padding:0;}
div.content-holder-services {width:700px;background:url no-repeat bottom right;padding:0;}
div.content-holder-clients {width:700px;background:url(../images/13.jpg) no-repeat bottom right;padding:0;}
div.content-holder-contact {width:700px;background:url(../images/14.jpg) no-repeat bottom right;padding:0;min-height:300px;}
div.content-holder-studies {width:700px;background:url no-repeat bottom right;padding:0;min-height:300px;}
div.content-holder-training {width:700px;background:url(../images/16.jpg) no-repeat bottom right;padding:0;min-height:300px;}
div.content-holder-recruitment {width:700px;background:url(../images/17.jpg) no-repeat bottom right;padding:0;min-height:300px;}
div.content-holder-brochure {width:700px;background:url(../images/18.jpg) no-repeat bottom right;padding:0;min-height:300px;}
div.content-holder-publications {width:700px;background:url(../images/20.jpg) no-repeat bottom right;padding:0;min-height:300px;}
div.content-holder-news {width:616px;padding:0;min-height:300px;}
span.highlight {color:#70BF5E;font-weight:bold;}
div.text-box-content ul {list-style-image:url(../images/10.jpg);list-style-position:inside;margin:0 0 1em 0;}
div.text-box-content ul li {padding:3px 0;}
table#table-publications {width:400px;margin-top:-25px;}
table#table-publications th {font-weight:bold;padding:0 0 10px 0;border-bottom:2px solid #e1e1e1;background:#efefef;padding:4px 0 4px 8px;}
table#table-publications td {padding:4px 0;text-align:left;padding:4px 0 4px 8px;}
span.posted {font-weight:bold;color:#0099cc;}
div.newslist-listing {padding:15px 8px;background:#D9F0F9;margin:5px 0;}
div.news-article {background:#D9F0F9;padding:15px 10px;}
div.news-article table {font-size:1.2em;}
div.news-article table td {width:300px;font-weight:bold;padding:0 0 10px 0;}
div.news-article table th {padding:0 0 5px 0;font-weight:bold;}
div.news-article-image {float:right;padding:0 0 15px 15px;}
span.conservation-concern {font-weight:bold;text-transform:uppercase;font-size:1.2em;}
span.red {color:red;}
span.amber {color:#f90;}
span.green {color:#396;}
div#footer-news {margin:20px 0 0 40px;}
div#footer-news span.posted {font-size:1.1em;}
div.footer-news-listing {float:left;width:190px;margin:0 10px 0 0;font-size:0.9em;height:130px;}
div.footer-news-content {background:#D9F0F9;padding:5px;height:115px;}
div.news-title-image {float:right;width:56px;height:80px;}
div.search {margin:0 0 20px 0;}
div.search input {margin:0 0 0 5px;}
div.search label {color:#0099cc;}
div.search span.search-subtext {font-size:0.9em;color:#0099cc;}
div.search-result {border-bottom:1px solid #eee;margin:0 0 20px 0;}
p.published {font-style:italic;color:#555;margin:0;padding:0;}
/* FORMS
----------------------------------------*/
.form-row {
clear:both;
height:40px;
}
.form-row-checkboxes {
clear:both;
padding:10px 0 10px 0;
}
#contact-form .form-row-checkboxes label{width:auto;padding-left:10px;}
#contact-form {
font-size:1.2em;
color:#000;
padding-left:10px;
}
#contact-form label {
float:left;
width:120px;
font-size:0.9em;
margin-top:8px;
}
#contact-form input, #contact-form select {
float:left;
margin-top:4px;
}
#contact-form textarea {
float:left;
margin-top:4px;
}
#contact-form .zemSubmit {
float:left;
}
fieldset {
border:none;
}
ul.zemError {
font-size:0.9em;
margin-left:40px;
}
#contact-form .zemCheckbox input {
margin:0px;
border:0;
padding:0;
}
.signup .zemText {width:100px;}
.signup .zemSubmit {margin-right:5px;}
.form-row-checkbox {clear:both;}
.form-row-checkbox label{width:200px;padding-left:10px;margin-top:0;}
.form-row-checkbox .zemCheckbox {margin-top:20px;}
/* Headers and Paragraphs:
---------------------------------------------------------------- */
h1 {color:#70BF5E;margin:0;padding:0;font-size:1.4em;font-weight:bold;margin:0 0 15px 0;}
h1.news-title {color:#0099cc;margin:0;padding:0;font-size:2.2em;font-weight:bold;margin:0px 0 25px 0;padding:5px 0 0 0;border-bottom:2px solid #0099cc;}
h2 {color:#0099cc;margin:0;padding:0;font-size:1.4em;font-weight:bold;margin:0 0 15px 0;}
h2.newslist-heading {color:#0099cc;margin:0;padding:0;font-size:1em;font-weight:bold;margin:0;}
h3 {color:#000;margin:0;padding:0;font-size:1.2em;font-weight:bold;}
h4 {color:#000;margin:0;padding:0;font-size:1.4em;}
h5 {color:#000;margin:0;padding:0;font-size:1.2em;}
h6 {color:#000;margin:0;padding:0;font-size:1em;}
/* Miscellaneous Conveniences
---------------------------------------------------------------- */
form label
{cursor: pointer;}
.bold {font-weight:bold;}
input, select, td
{font-size: 90%;}
html[xmlns] pre { font-size: 1.3em;}
.clear { clear: both; line-height: 1px; font-size: 1px; height: 1px; visibility: hidden; }
img{border: 0;margin:0;padding:0;}
li {margin:0;padding:0;}
#error-default {
width:500px;
margin:10px 0 50px 0;
}
#error-default h2 {
color:#304c9f;
}
hr {width:100%;height:2px;background:url(../images/6.jpg) repeat-x;margin:0 0 18px 0;padding:0;border:none;}
/* Form Styles
---------------------------------------------------------------- */
label
{
float:left;
width:auto;
margin: 0px;
}
select, input, textarea
{
float:left;
margin:0px 0px 0px 0px;
}
.zemError li
{
padding-left: 0px;
list-style: none;
margin-bottom: 3px;
margin-left: 0px;
margin-top: 3px;
padding-bottom: 5px;
color: #FF0000;
}
strong {font-weight:bold;}
/* image alignment*/
.alignleft{
float:left;
margin-right:10px;
}
.alignright{
float:right;
margin-left:10px;
}
.aligncenter{
display: block;
margin-left: auto;
margin-right: auto
}
/* Container
------------------------------------------------ */
body {
margin: 0;
padding:0;
font-family: Arial, Helvetica, Verdana, sans-serif;
font-size:12px;
}
p {margin:0 0 12px 0;line-height:1.4em;}
#all
{
margin: 0 auto 0 auto;
width: 900px;
padding:0 0 0 0px;
height:auto;
}
#main
{
float:left;
height:auto;
width: 900px;
position: relative;
text-align: left;
margin: 0;
padding:0 0 0 40px;
}
/* Header
------------------------------------------------ */
#header {
width:810px;
padding:20px 0 32px 40px;
background:none;
}
#masthead {
float:left;
width:364px;
margin:0px 0 0 0px;
padding:0;
}
#header-right {
float:right;
width:243px;
margin:0px 0 0 0px;
padding:0;
text-align:right;
font-weight:bold;
font-size:1.2em;
}
/* Navigation & Lists
------------------------------------------------ */
#navigation {
background:none;
margin:0;
padding:0;
font-size:1.2em;
}
#navigation ul {
margin:0;
padding:0;
}
#navigation li {
margin:0;
padding:3px 0;
border:none;
}
#navigation a:link, #navigation a:visited {
color:#58595B;
text-decoration:none;
width:162px;
padding:0 10px 0 0;
}
#navigation a:hover, #navigation a:active {
color:#0099cc;
text-decoration:none;
width:162px;
padding:0 10px 0 0;
}
#navigation li.active {background:url(../images/5.gif) 0px 8px no-repeat;}
#navigation li.active a {color:#0099cc;font-weight:bold;background:#fff; padding:0 10px 0 0;}
#navigation-two ul li:last-child.active {background:none;}
/* Link Styles - Generic Site-wide
-------------------------------------------------*/
a:link {color: #0099cc;}
a:visited {color: #0099cc;}
a:hover {color: #006D8F;}
a:active {color: #006D8F;}
a img {margin:0;padding:0;border:none;}
#header-right a:link, #header-right a:visited {color:#019DDA;text-decoration:none;}
#header-right a:hover, #header-right a:active {color:#019DDA;}
div#header-right div#header-product-links a:link,div#header-right div#header-product-links a:visited{font-size:1.45em;letter-spacing:-1px;}
div#header-right div#header-product-links a.ufh {color:#ff4037;}
div#header-right div#header-product-links a.hp {color:#c7e45e;}
div#header-right div#header-product-links a.ss {color:#57b7df;}
div#header-right div#header-product-links a:hover,div#header-right div#header-product-links a:active {color:#fff;}
/* Footer
------------------------------------------------ */
#footer {
width:100%;
font-size:1.1em;
color:#000;
padding:5px 0 0 0;
margin:20px 0 50px 0;
text-align:center;
}
#footer ul li {
display:inline;
list-style-type:none;
padding:0;
height:10px;
border-right:1px solid #a6a6a6;
}
#footer ul {
padding:0px;
margin:0;
}
#footer ul li:last-child {border-right:none;}
#footer a:link, #footer a:visited {color:#a6a6a6;text-decoration:underline;padding:0 5px 0px 3px;}
#footer a:hover, #footer a:active {color:#a6a6a6;}
/* Layout
------------------------------------------------ */
.first-float-rigid
{
float: left;
width: 185px;
padding: 0;
margin: 0;
}
.second-float-rigid {
float: left;
width: 712px;
margin: 0 0 0 0px;
padding:0;
}
#lhscontainer {
position: relative;
padding:17px 0 0 0;
margin:0px 0 0 0;
text-align: left;
}
#rhscontainer {
position: relative;
margin:0px 0 0 0;
padding: 0 0 0 0px;
text-align: left;
}
/* PANELS
------------------------------------------------ */
ul.pagination {margin:10px 0 10px 0;padding:0 0 0 0;}
ul.pagination a {}
li.pagination {
display:inline;
padding:5px;
}
/* ARTICLES
------------------------------------------------ */
div.text-box-top {height:8px;background:url(../images/6.gif) no-repeat;width:648px;}
div.text-box-bottom {height:8px;background:url(../images/7.gif) no-repeat;width:648px;}
div.text-box-content {height:auto;background:url(../images/8.gif) repeat-y;width:616px;padding:16px;}
div.text-box-content p.full-width {width:100%;}
div.text-box-content p.half-width {width:308px;}
div.content-holder-home {width:700px;background:url(../images/9.jpg) no-repeat bottom right;padding:0;}
div.content-holder-services {width:700px;background:url no-repeat bottom right;padding:0;}
div.content-holder-clients {width:700px;background:url(../images/13.jpg) no-repeat bottom right;padding:0;}
div.content-holder-contact {width:700px;background:url(../images/14.jpg) no-repeat bottom right;padding:0;min-height:300px;}
div.content-holder-studies {width:700px;background:url no-repeat bottom right;padding:0;min-height:300px;}
div.content-holder-training {width:700px;background:url(../images/16.jpg) no-repeat bottom right;padding:0;min-height:300px;}
div.content-holder-recruitment {width:700px;background:url(../images/17.jpg) no-repeat bottom right;padding:0;min-height:300px;}
div.content-holder-brochure {width:700px;background:url(../images/18.jpg) no-repeat bottom right;padding:0;min-height:300px;}
div.content-holder-publications {width:700px;background:url(../images/20.jpg) no-repeat bottom right;padding:0;min-height:300px;}
div.content-holder-news {width:616px;padding:0;min-height:300px;}
span.highlight {color:#70BF5E;font-weight:bold;}
div.text-box-content ul {list-style-image:url(../images/10.jpg);list-style-position:inside;margin:0 0 1em 0;}
div.text-box-content ul li {padding:3px 0;}
table#table-publications {width:400px;margin-top:-25px;}
table#table-publications th {font-weight:bold;padding:0 0 10px 0;border-bottom:2px solid #e1e1e1;background:#efefef;padding:4px 0 4px 8px;}
table#table-publications td {padding:4px 0;text-align:left;padding:4px 0 4px 8px;}
span.posted {font-weight:bold;color:#0099cc;}
div.newslist-listing {padding:15px 8px;background:#D9F0F9;margin:5px 0;}
div.news-article {background:#D9F0F9;padding:15px 10px;}
div.news-article table {font-size:1.2em;}
div.news-article table td {width:300px;font-weight:bold;padding:0 0 10px 0;}
div.news-article table th {padding:0 0 5px 0;font-weight:bold;}
div.news-article-image {float:right;padding:0 0 15px 15px;}
span.conservation-concern {font-weight:bold;text-transform:uppercase;font-size:1.2em;}
span.red {color:red;}
span.amber {color:#f90;}
span.green {color:#396;}
div#footer-news {margin:20px 0 0 40px;}
div#footer-news span.posted {font-size:1.1em;}
div.footer-news-listing {float:left;width:190px;margin:0 10px 0 0;font-size:0.9em;height:130px;}
div.footer-news-content {background:#D9F0F9;padding:5px;height:115px;}
div.news-title-image {float:right;width:56px;height:80px;}
div.search {margin:0 0 20px 0;}
div.search input {margin:0 0 0 5px;}
div.search label {color:#0099cc;}
div.search span.search-subtext {font-size:0.9em;color:#0099cc;}
div.search-result {border-bottom:1px solid #eee;margin:0 0 20px 0;}
p.published {font-style:italic;color:#555;margin:0;padding:0;}
/* FORMS
----------------------------------------*/
.form-row {
clear:both;
height:40px;
}
.form-row-checkboxes {
clear:both;
padding:10px 0 10px 0;
}
#contact-form .form-row-checkboxes label{width:auto;padding-left:10px;}
#contact-form {
font-size:1.2em;
color:#000;
padding-left:10px;
}
#contact-form label {
float:left;
width:120px;
font-size:0.9em;
margin-top:8px;
}
#contact-form input, #contact-form select {
float:left;
margin-top:4px;
}
#contact-form textarea {
float:left;
margin-top:4px;
}
#contact-form .zemSubmit {
float:left;
}
fieldset {
border:none;
}
ul.zemError {
font-size:0.9em;
margin-left:40px;
}
#contact-form .zemCheckbox input {
margin:0px;
border:0;
padding:0;
}
.signup .zemText {width:100px;}
.signup .zemSubmit {margin-right:5px;}
.form-row-checkbox {clear:both;}
.form-row-checkbox label{width:200px;padding-left:10px;margin-top:0;}
.form-row-checkbox .zemCheckbox {margin-top:20px;}
/* Headers and Paragraphs:
---------------------------------------------------------------- */
h1 {color:#70BF5E;margin:0;padding:0;font-size:1.4em;font-weight:bold;margin:0 0 15px 0;}
h1.news-title {color:#0099cc;margin:0;padding:0;font-size:2.2em;font-weight:bold;margin:0px 0 25px 0;padding:5px 0 0 0;border-bottom:2px solid #0099cc;}
h2 {color:#0099cc;margin:0;padding:0;font-size:1.4em;font-weight:bold;margin:0 0 15px 0;}
h2.newslist-heading {color:#0099cc;margin:0;padding:0;font-size:1em;font-weight:bold;margin:0;}
h3 {color:#000;margin:0;padding:0;font-size:1.2em;font-weight:bold;}
h4 {color:#000;margin:0;padding:0;font-size:1.4em;}
h5 {color:#000;margin:0;padding:0;font-size:1.2em;}
h6 {color:#000;margin:0;padding:0;font-size:1em;}
/* Miscellaneous Conveniences
---------------------------------------------------------------- */
form label
{cursor: pointer;}
.bold {font-weight:bold;}
input, select, td
{font-size: 90%;}
html[xmlns] pre { font-size: 1.3em;}
.clear { clear: both; line-height: 1px; font-size: 1px; height: 1px; visibility: hidden; }
img{border: 0;margin:0;padding:0;}
li {margin:0;padding:0;}
#error-default {
width:500px;
margin:10px 0 50px 0;
}
#error-default h2 {
color:#304c9f;
}
hr {width:100%;height:2px;background:url(../images/6.jpg) repeat-x;margin:0 0 18px 0;padding:0;border:none;}
/* Form Styles
---------------------------------------------------------------- */
label
{
float:left;
width:auto;
margin: 0px;
}
select, input, textarea
{
float:left;
margin:0px 0px 0px 0px;
}
.zemError li
{
padding-left: 0px;
list-style: none;
margin-bottom: 3px;
margin-left: 0px;
margin-top: 3px;
padding-bottom: 5px;
color: #FF0000;
}
strong {font-weight:bold;}
/* image alignment*/
.alignleft{
float:left;
margin-right:10px;
}
.alignright{
float:right;
margin-left:10px;
}
.aligncenter{
display: block;
margin-left: auto;
margin-right: auto
}
</style>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta content="en" name="language">
<meta content="Kudos Web Solutions" name="author">
<meta content="index,follow" name="robots">
<meta content="This is the site slogan" name="description">
<meta content="ENTER, DEFAULT, KEYWORDS" name="keywords">
<title>
Penny Anderson Associates Ltd | Services | Peatland Survey
</title>
<!--[if IE]>
<![endif]-->
<!--[if IE 6]>
<![endif]-->
<meta content="AymqwRC7u88Y4JPvfIF2F37QKylC04248hLCdJAsh8xgOfe/dVJPV3XS3wLFca1ZMVOtnBfVjaCMTVudWM//5g4AAAB7eyJvcmlnaW4iOiJodHRwczovL3d3dy5nb29nbGV0YWdtYW5hZ2VyLmNvbTo0NDMiLCJmZWF0dXJlIjoiUHJpdmFjeVNhbmRib3hBZHNBUElzIiwiZXhwaXJ5IjoxNjk1MTY3OTk5LCJpc1RoaXJkUGFydHkiOnRydWV9" http-equiv="origin-trial">
</head>
<body>
<div id="all">
<div id="no-css-nav" style="display:none;">
<ul>
<li>
<a title="View Accessibility Page">
Accessibility Page
</a>
</li>
<li>
<a>
Skip to Navigation
</a>
</li>
<li>
<a>
Skip to Content
</a>
</li>
</ul>
</div>
<div id="header">
<div id="masthead">
<a title="Return to Penny Anderson Home">
<img alt="Penny Anderson Associates Ltd" height="126" src="rick.jpg" width="364">
</a>
</div>
<div id="header-right">
<img alt="Talk to Penny Anderson - 01298 27086" height="92" src="rick.jpg" width="243">
<br>
<a>
[EMAIL REDACTED]
</a>
</div>
<div class="clear">
</div>
</div>
<div id="main">
<div class="first-float-rigid">
<div id="lhscontainer">
<div id="navigation">
<ul>
<li>
<a accesskey="1" title="Penny Anderson Home Page">
home
</a>
</li>
<li>
<a accesskey="2" title=" About Penny Anderson">
about
</a>
</li>
<li class="active">
<a accesskey="3" title=" Penny Anderson Services">
services
</a>
</li>
<li>
<a accesskey="4" title=" Penny Anderson Clients">
clients
</a>
</li>
</ul>
<br>
<br>
<div id="navigation-two">
<ul>
<li>
<a accesskey="1" title="Penny Anderson Case Studies">
case studies
</a>
</li>
<li>
<a accesskey="2" title=" Penny Anderson Training Courses">
training courses
</a>
</li>
<li>
<a accesskey="3" title=" Penny Anderson Recruitment">
recruitment
</a>
</li>
<li>
<a accesskey="4" title=" Brochure Download">
brochure download
</a>
</li>
</ul>
<br>
<div class="twitter-timeline twitter-timeline-rendered" style="display: flex; width: 30px; max-width: 100%; margin-top: 0px; margin-bottom: 0px;">
</div>
<a class="twitter-timeline" data-chrome="nofooter" data-twitter-extracted-i1699122834240571555="true" data-widget-id="702072145074065409" height="300" width="30">
</a>
</div>
</div>
</div>
</div>
<div class="second-float-rigid">
<div id="rhscontainer">
<div class="content-holder-services">
<div class="text-box-top">
</div>
<div class="text-box-content">
<h1>
Peatland Survey and Evaluation
</h1>
<p>
Penny Anderson Associates Ltd. (
<span class="caps">
PAA
</span>
) has a long established reputation for the survey, evaluation and restoration of moorland, heathland and wetland habitats. In recent years, in response to a number of challenging peatland projects,
<span class="caps">
PAA
</span>
has developed a further specialism in peatland survey and evaluation. Making use of existing peat survey techniques, modern and bespoke surveying technology and equipment, and the use of
<span class="caps">
GIS
</span>
, remote sensing and differential global positioning systems,
<span class="caps">
PAA
</span>
has developed a set of robust and efficient methodologies to provide a cost effective, reliable and insightful survey and evaluation service for these important ecosystems.
</p>
<p>
<img alt="Peat depth survey" class="alignright" height="232" src="rick.jpg" width="250">
<span class="caps">
PAA
</span>
offer a range of peatland survey and evaluation capabilities, including:
</p>
<ul>
<li>
Peat depth surveys;
</li>
<li>
Peat core sampling;
</li>
<li>
Surface elevation analysis using topographic survey and remotely sensed digital terrain models;
</li>
<li>
Peat sample analyses (including pH, nutrient loading, carbon content, bulk storage, humification, pollen analysis and structural analysis);
</li>
</ul>
<p>
</p>
<p>
<span class="caps">
PAA
</span>
has undertaken survey and evaluation on a range of different peatland locations and habitats, including:
</p>
<ul>
<li>
Killhope Moor, North Pennines (upland degraded and intact blanket bog);
</li>
<li>
Windy Hill, Londonderry, Northern Ireland (proposed windfarm on upland peat);
</li>
<li>
Glasson Moss, Cumbria (Lowland raised bog, part of South Solway Mosses National Nature Reserve);
</li>
<li>
Martin Mere, Southport, Lancashire (lowland peat – current and relic wetlands sediment);
</li>
</ul>
<p>
<img alt="peat core" class="alignleft" height="239" src="rick.jpg" width="250">
<strong>
Peat Depth Surveying
</strong>
<br>
<span class="caps">
PAA
</span>
has developed and perfected a technique for rapid and detailed survey of peat depth. The site to be surveyed is assessed using a Geographic Information System (
<span class="caps">
GIS
</span>
) in terms of area, topography, land use and level of peat degradation using a combination of aerial photography and terrain data.
<span class="caps">
GIS
</span>
software to create, for example, models of peat depth, peat volume or erosion/deposition budgets.
</p>
<p>
<strong>
Peat Core Sampling
</strong>
<br>
<span class="caps">
PAA
</span>
uses a Russian style D-shaped corer to extract complete cores for further analyses of peat characteristics.
</p>
<p>
<strong>
Natural England Standards For Peatland Survey
</strong>
<br>
<span class="caps">
PAA
</span>
, in partnership with Natural England and the North Pennines
<span class="caps">
AONB
</span>
Peatland Programme, has developed a standard methodology for the survey and assessment of English peatlands.
</p>
<p>
For more details on our services relating to
<br>
peatland survey, please
<a title="">
contact us
</a>
</p>
<div class="clear">
</div>
<h2 id="Comment">
</h2>
</div>
<div class="text-box-bottom">
</div>
</div>
</div>
</div>
</div>
<div id="footer-news">
<div class="footer-news-listing">
<span class="posted">
4 March 2022
</span>
<div class="footer-news-content">
<p>
Clifton Integrated Constructed Wetlands design awarded Certificate of Excellence at the 167th annual Institution of Civil Engineering, Yorkshire and Humber Awards
</p>
<a rel="bookmark">
more »
</a>
</div>
</div>
<div class="footer-news-listing">
<span class="posted">
10 March 2020
</span>
<div class="footer-news-content">
<p>
<span class="caps">
PAA
</span>
is supporting the South West Peak Landscape Partnership’s Glorious Grasslands project, aimed at surveying and enhancing species-rich wildflower grasslands in the South West Peak District
</p>
<a rel="bookmark">
more »
</a>
</div>
</div>
<div class="footer-news-listing">
<span class="posted">
28 February 2020
</span>
<div class="footer-news-content">
<p>
<span class="caps">
PAA
</span>
has helped with the design of a new heritage trail leaflet for the village of Longnor in the Stafforshire Moorlands
</p>
<a rel="bookmark">
more »
</a>
</div>
</div>
<div class="footer-news-listing">
<span class="posted">
17 February 2020
</span>
<div class="footer-news-content">
<p>
<span class="caps">
PAA
</span>
is sponsoring the 21st Annual River Restoration Conference, to be held 21st/22nd April in Harrogate.
</p>
<a rel="bookmark">
more »
</a>
</div>
</div>
</div>
<div class="clear">
</div>
</div>
<!--all-->
<div id="footer">
<ul>
<li>
<a accesskey="1" title="Penny Anderson Home Page">
Home
</a>
</li>
<li>
<a accesskey="2" title=" About Penny Anderson">
About Us
</a>
</li>
<li>
<a accesskey="3" title=" Penny Anderson Privacy Policy">
Privacy
</a>
</li>
<li class="active">
<a accesskey="4" title=" Penny Anderson Services">
Services
</a>
</li>
</ul>
</div>
<!-- Insert Google Analytics Code Here -->
<!-- Start of StatCounter Code for Default Guide -->
<noscript>
<div class="statcounter">
<a target="_blank" title="web analytics">
<img alt="web analytics" class="statcounter" src="rick.jpg">
</a>
</div>
</noscript>
<!-- End of StatCounter Code for Default Guide -->
</body>
</html>
|