
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b2035dc4470d2d9c0c29cd24.woff')format("woff");}.ff1{font-family:ff1;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ce8fde0e78600528808d3c58.woff')format("woff");}.ff2{font-family:ff2;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ee67452d19df26d3296819ac.woff')format("woff");}.ff3{font-family:ff3;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8fc0a1da7f6b10bc3840b737.woff')format("woff");}.ff4{font-family:ff4;line-height:1.086000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f73b28f9a7dc41a7444aa381.woff')format("woff");}.ff5{font-family:ff5;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_09a348ccab33324f9513f771.woff')format("woff");}.ff6{font-family:ff6;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b6cc4979bb05b3399e2d780a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_05fcbbddd9a176795c20f67a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.076000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-5.292000px;}
.lsa{letter-spacing:-1.254000px;}
.ls6{letter-spacing:-0.858000px;}
.lsc{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.780000px;}
.ls4{letter-spacing:-0.660000px;}
.ls5{letter-spacing:-0.264000px;}
.ls8{letter-spacing:-0.240000px;}
.lsd{letter-spacing:-0.198000px;}
.lsb{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.420000px;}
.ls7{letter-spacing:0.660000px;}
.ls1{letter-spacing:0.780000px;}
.ls3{letter-spacing:0.900000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-20.790000px;}
.ws0{word-spacing:-19.572000px;}
.ws4{word-spacing:-19.068000px;}
.wsc3{word-spacing:-15.246000px;}
.wsd{word-spacing:-14.982000px;}
.ws19{word-spacing:-14.850000px;}
.ws12{word-spacing:-14.388000px;}
.ws80{word-spacing:-14.322000px;}
.ws57{word-spacing:-14.256000px;}
.ws56{word-spacing:-13.860000px;}
.wsa7{word-spacing:-13.728000px;}
.ws1{word-spacing:-13.700400px;}
.wsc4{word-spacing:-13.620000px;}
.ws17{word-spacing:-12.936000px;}
.ws5{word-spacing:-12.258000px;}
.ws11{word-spacing:-12.078000px;}
.ws1c{word-spacing:-8.646000px;}
.ws16{word-spacing:-7.920000px;}
.ws14{word-spacing:-7.590000px;}
.ws1f{word-spacing:-5.742000px;}
.ws18{word-spacing:-5.610000px;}
.ws1a{word-spacing:-4.422000px;}
.ws79{word-spacing:-3.894000px;}
.wse{word-spacing:-3.828000px;}
.wsb6{word-spacing:-3.498000px;}
.ws58{word-spacing:-3.300000px;}
.ws20{word-spacing:-3.168000px;}
.wsa9{word-spacing:-3.102000px;}
.ws8f{word-spacing:-3.036000px;}
.wsbe{word-spacing:-2.904000px;}
.ws72{word-spacing:-2.838000px;}
.ws51{word-spacing:-2.772000px;}
.ws5d{word-spacing:-2.706000px;}
.ws4a{word-spacing:-2.508000px;}
.wscd{word-spacing:-2.400000px;}
.ws1d{word-spacing:-2.310000px;}
.ws8e{word-spacing:-2.244000px;}
.wsb4{word-spacing:-2.046000px;}
.wsa4{word-spacing:-1.980000px;}
.ws67{word-spacing:-1.914000px;}
.ws4c{word-spacing:-1.782000px;}
.wsc0{word-spacing:-1.716000px;}
.ws78{word-spacing:-1.650000px;}
.ws63{word-spacing:-1.584000px;}
.wsc5{word-spacing:-1.560000px;}
.ws62{word-spacing:-1.518000px;}
.wsb5{word-spacing:-1.452000px;}
.ws66{word-spacing:-1.386000px;}
.wsc7{word-spacing:-1.380000px;}
.ws4e{word-spacing:-1.320000px;}
.ws8a{word-spacing:-1.254000px;}
.wsc1{word-spacing:-1.188000px;}
.ws81{word-spacing:-1.122000px;}
.wsd6{word-spacing:-1.080000px;}
.wsd5{word-spacing:-1.020000px;}
.wsce{word-spacing:-0.960000px;}
.ws95{word-spacing:-0.924000px;}
.ws7{word-spacing:-0.918000px;}
.ws7a{word-spacing:-0.792000px;}
.ws9f{word-spacing:-0.726000px;}
.ws5a{word-spacing:-0.660000px;}
.ws54{word-spacing:-0.594000px;}
.ws7d{word-spacing:-0.528000px;}
.ws21{word-spacing:-0.450000px;}
.ws70{word-spacing:-0.396000px;}
.ws3{word-spacing:-0.390000px;}
.ws38{word-spacing:-0.330000px;}
.ws73{word-spacing:-0.264000px;}
.wsd9{word-spacing:-0.240000px;}
.ws3a{word-spacing:-0.210000px;}
.ws41{word-spacing:-0.198000px;}
.wscf{word-spacing:-0.180000px;}
.ws2a{word-spacing:-0.132000px;}
.ws75{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws64{word-spacing:0.066000px;}
.ws87{word-spacing:0.132000px;}
.ws92{word-spacing:0.198000px;}
.ws22{word-spacing:0.240000px;}
.ws15{word-spacing:0.264000px;}
.ws59{word-spacing:0.330000px;}
.ws43{word-spacing:0.462000px;}
.ws55{word-spacing:0.528000px;}
.wsb9{word-spacing:0.594000px;}
.ws13{word-spacing:0.660000px;}
.ws7c{word-spacing:0.726000px;}
.ws88{word-spacing:0.792000px;}
.ws1b{word-spacing:0.858000px;}
.ws2c{word-spacing:0.924000px;}
.ws53{word-spacing:0.990000px;}
.wsd1{word-spacing:1.020000px;}
.wsb0{word-spacing:1.056000px;}
.wsd2{word-spacing:1.080000px;}
.wsa1{word-spacing:1.122000px;}
.ws93{word-spacing:1.188000px;}
.wsc6{word-spacing:1.260000px;}
.wsb2{word-spacing:1.320000px;}
.ws82{word-spacing:1.386000px;}
.ws28{word-spacing:1.452000px;}
.ws45{word-spacing:1.518000px;}
.ws96{word-spacing:1.584000px;}
.ws77{word-spacing:1.650000px;}
.ws46{word-spacing:1.716000px;}
.ws9a{word-spacing:1.782000px;}
.ws65{word-spacing:1.848000px;}
.wsbd{word-spacing:1.914000px;}
.ws52{word-spacing:1.980000px;}
.wsa{word-spacing:1.998000px;}
.ws6f{word-spacing:2.112000px;}
.ws37{word-spacing:2.178000px;}
.ws2f{word-spacing:2.244000px;}
.ws24{word-spacing:2.310000px;}
.ws74{word-spacing:2.376000px;}
.ws9e{word-spacing:2.442000px;}
.ws6c{word-spacing:2.508000px;}
.ws4d{word-spacing:2.574000px;}
.ws49{word-spacing:2.640000px;}
.ws9{word-spacing:2.700000px;}
.ws29{word-spacing:2.706000px;}
.wsd0{word-spacing:2.760000px;}
.ws25{word-spacing:2.772000px;}
.ws7e{word-spacing:2.838000px;}
.wsd8{word-spacing:2.880000px;}
.ws6b{word-spacing:2.904000px;}
.wsd7{word-spacing:2.940000px;}
.wsb8{word-spacing:2.970000px;}
.ws34{word-spacing:3.036000px;}
.ws36{word-spacing:3.102000px;}
.ws2d{word-spacing:3.168000px;}
.ws61{word-spacing:3.234000px;}
.ws3e{word-spacing:3.300000px;}
.ws50{word-spacing:3.366000px;}
.wsc8{word-spacing:3.420000px;}
.ws3f{word-spacing:3.432000px;}
.ws6d{word-spacing:3.498000px;}
.wsa8{word-spacing:3.564000px;}
.wsc9{word-spacing:3.660000px;}
.wsad{word-spacing:3.696000px;}
.wsb7{word-spacing:3.828000px;}
.ws33{word-spacing:3.894000px;}
.ws76{word-spacing:3.960000px;}
.ws86{word-spacing:4.026000px;}
.ws3c{word-spacing:4.092000px;}
.ws90{word-spacing:4.158000px;}
.ws8{word-spacing:4.212000px;}
.ws94{word-spacing:4.224000px;}
.wsac{word-spacing:4.290000px;}
.ws40{word-spacing:4.356000px;}
.ws7b{word-spacing:4.422000px;}
.wsca{word-spacing:4.440000px;}
.wscb{word-spacing:4.500000px;}
.ws3d{word-spacing:4.554000px;}
.ws7f{word-spacing:4.620000px;}
.wsba{word-spacing:4.686000px;}
.ws89{word-spacing:4.752000px;}
.ws6e{word-spacing:4.818000px;}
.ws31{word-spacing:4.884000px;}
.ws99{word-spacing:4.950000px;}
.wsa0{word-spacing:5.016000px;}
.ws27{word-spacing:5.082000px;}
.ws5f{word-spacing:5.148000px;}
.ws60{word-spacing:5.346000px;}
.ws48{word-spacing:5.412000px;}
.ws9d{word-spacing:5.478000px;}
.ws39{word-spacing:5.544000px;}
.ws3b{word-spacing:5.610000px;}
.wsa6{word-spacing:5.808000px;}
.ws42{word-spacing:5.874000px;}
.ws44{word-spacing:5.940000px;}
.ws68{word-spacing:6.006000px;}
.ws4f{word-spacing:6.072000px;}
.ws84{word-spacing:6.138000px;}
.wsc2{word-spacing:6.270000px;}
.wsb1{word-spacing:6.336000px;}
.wsb{word-spacing:6.372000px;}
.wsaa{word-spacing:6.534000px;}
.ws2e{word-spacing:6.600000px;}
.wsd4{word-spacing:6.660000px;}
.wsb3{word-spacing:6.666000px;}
.wsd3{word-spacing:6.720000px;}
.ws5c{word-spacing:6.732000px;}
.ws8b{word-spacing:6.798000px;}
.ws6a{word-spacing:6.864000px;}
.wsbf{word-spacing:6.930000px;}
.wsa3{word-spacing:7.062000px;}
.wsa5{word-spacing:7.194000px;}
.ws8c{word-spacing:7.260000px;}
.ws47{word-spacing:7.458000px;}
.ws5e{word-spacing:7.524000px;}
.wsbb{word-spacing:7.656000px;}
.ws71{word-spacing:7.788000px;}
.wsae{word-spacing:7.854000px;}
.wscc{word-spacing:8.040000px;}
.ws69{word-spacing:8.052000px;}
.ws30{word-spacing:8.118000px;}
.ws4b{word-spacing:8.184000px;}
.ws91{word-spacing:8.250000px;}
.ws85{word-spacing:8.382000px;}
.ws35{word-spacing:8.514000px;}
.wsaf{word-spacing:8.712000px;}
.wsbc{word-spacing:8.778000px;}
.ws2b{word-spacing:8.844000px;}
.wsab{word-spacing:8.976000px;}
.ws32{word-spacing:9.174000px;}
.ws5b{word-spacing:9.438000px;}
.ws83{word-spacing:9.504000px;}
.ws9c{word-spacing:9.768000px;}
.ws98{word-spacing:9.966000px;}
.ws8d{word-spacing:10.692000px;}
.ws26{word-spacing:10.758000px;}
.ws9b{word-spacing:11.022000px;}
.wsa2{word-spacing:13.794000px;}
.ws97{word-spacing:13.860000px;}
.ws23{word-spacing:18.084000px;}
.ws6{word-spacing:38.772000px;}
.ws1e{word-spacing:60.060000px;}
.ws10{word-spacing:91.740000px;}
.wsf{word-spacing:123.420000px;}
._d{margin-left:-647.590800px;}
._10{margin-left:-75.834000px;}
._7{margin-left:-39.052200px;}
._6{margin-left:-13.576800px;}
._8{margin-left:-11.394000px;}
._c{margin-left:-8.167200px;}
._5{margin-left:-6.384000px;}
._0{margin-left:-5.119800px;}
._2{margin-left:-3.463800px;}
._1{margin-left:-1.794000px;}
._4{width:1.248120px;}
._3{width:2.502000px;}
._a{width:4.206000px;}
._9{width:5.232000px;}
._e{width:7.228800px;}
._14{width:8.639400px;}
._12{width:9.952800px;}
._13{width:14.452800px;}
._b{width:23.124000px;}
._15{width:36.480000px;}
._11{width:58.212000px;}
._f{width:85.000680px;}
.fc1{color:rgb(0,130,162);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:42.000000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:58.800000px;}
.fsc{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.fsa{font-size:90.000000px;}
.fs0{font-size:102.000000px;}
.fs7{font-size:114.000000px;}
.fs2{font-size:120.000000px;}
.fs6{font-size:130.500000px;}
.fs1{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:84.307050px;}
.y1d{bottom:85.066200px;}
.ya9{bottom:89.998200px;}
.yd5{bottom:90.377850px;}
.y81{bottom:96.911700px;}
.y1c{bottom:101.563200px;}
.y4d{bottom:105.871800px;}
.ya8{bottom:109.798200px;}
.yd4{bottom:110.177850px;}
.y80{bottom:116.711700px;}
.y1b{bottom:122.312700px;}
.yf{bottom:127.559100px;}
.ya7{bottom:129.598200px;}
.yd3{bottom:129.977850px;}
.y4c{bottom:130.093800px;}
.y7f{bottom:136.511700px;}
.y1a{bottom:138.809700px;}
.ya6{bottom:149.398200px;}
.yd2{bottom:149.777850px;}
.y4b{bottom:150.058800px;}
.y7e{bottom:156.311700px;}
.y19{bottom:159.559200px;}
.ya5{bottom:169.198200px;}
.yd1{bottom:169.577850px;}
.y7d{bottom:176.111700px;}
.y4a{bottom:178.521300px;}
.y18{bottom:184.561200px;}
.ya4{bottom:188.998200px;}
.yd0{bottom:189.377850px;}
.y7c{bottom:195.911700px;}
.y49{bottom:202.743300px;}
.ya3{bottom:208.798200px;}
.ycf{bottom:209.177850px;}
.y17{bottom:209.563200px;}
.y7b{bottom:215.711700px;}
.y48{bottom:222.708300px;}
.y16{bottom:226.060200px;}
.ya2{bottom:228.598200px;}
.yce{bottom:228.977850px;}
.y7a{bottom:235.511700px;}
.y15{bottom:242.557200px;}
.y47{bottom:242.673300px;}
.ya1{bottom:248.398200px;}
.ycd{bottom:248.777850px;}
.y79{bottom:255.311700px;}
.y14{bottom:259.054200px;}
.y46{bottom:262.638300px;}
.ya0{bottom:268.198200px;}
.ycc{bottom:268.577850px;}
.y78{bottom:275.111700px;}
.y13{bottom:275.551200px;}
.y9f{bottom:287.998200px;}
.ycb{bottom:288.377850px;}
.y45{bottom:291.100800px;}
.y77{bottom:294.911700px;}
.y9e{bottom:307.798200px;}
.yca{bottom:308.177850px;}
.y76{bottom:314.711700px;}
.y44{bottom:315.322800px;}
.y9d{bottom:327.598200px;}
.yc9{bottom:327.977850px;}
.y75{bottom:334.511700px;}
.y43{bottom:335.287800px;}
.y9c{bottom:347.398200px;}
.yc8{bottom:347.777850px;}
.y74{bottom:354.311700px;}
.y12{bottom:361.901850px;}
.y42{bottom:363.750300px;}
.y9b{bottom:367.198200px;}
.yc7{bottom:367.577850px;}
.y73{bottom:374.111700px;}
.y9a{bottom:386.998200px;}
.yc6{bottom:387.377850px;}
.y41{bottom:387.972300px;}
.y72{bottom:393.911700px;}
.y99{bottom:406.798200px;}
.yc5{bottom:407.177850px;}
.y40{bottom:407.937300px;}
.y11{bottom:409.381350px;}
.y71{bottom:413.711700px;}
.yee{bottom:414.377850px;}
.yac{bottom:426.598200px;}
.yc4{bottom:426.977850px;}
.yed{bottom:432.377850px;}
.y70{bottom:433.511700px;}
.y62{bottom:434.848500px;}
.y3f{bottom:436.399800px;}
.y34{bottom:442.064850px;}
.y98{bottom:446.398200px;}
.yc3{bottom:446.777850px;}
.yec{bottom:450.377850px;}
.y6f{bottom:453.311700px;}
.y33{bottom:458.561850px;}
.y61{bottom:459.070500px;}
.y3e{bottom:460.621800px;}
.yab{bottom:466.198200px;}
.yc2{bottom:466.577850px;}
.yeb{bottom:468.377850px;}
.y6e{bottom:473.111700px;}
.y32{bottom:475.058850px;}
.y60{bottom:479.035500px;}
.y3d{bottom:480.586800px;}
.yaa{bottom:485.998200px;}
.yc1{bottom:486.377850px;}
.y31{bottom:491.555850px;}
.y6d{bottom:492.911700px;}
.yea{bottom:504.377850px;}
.y97{bottom:505.798200px;}
.yc0{bottom:506.177850px;}
.y5f{bottom:507.498000px;}
.y30{bottom:508.052850px;}
.y3c{bottom:509.049300px;}
.y6c{bottom:512.711700px;}
.ye9{bottom:522.377850px;}
.y2f{bottom:524.549850px;}
.y96{bottom:525.598200px;}
.ybf{bottom:525.977850px;}
.y5e{bottom:531.720000px;}
.y6b{bottom:532.511700px;}
.y3b{bottom:533.271300px;}
.ye8{bottom:540.377850px;}
.y95{bottom:545.398200px;}
.ybe{bottom:545.777850px;}
.y5d{bottom:551.685000px;}
.y6a{bottom:552.311700px;}
.y3a{bottom:553.236300px;}
.ye7{bottom:558.377850px;}
.y94{bottom:565.198200px;}
.ybd{bottom:565.577850px;}
.y2e{bottom:571.970850px;}
.ye6{bottom:576.377850px;}
.y5c{bottom:580.147500px;}
.y39{bottom:581.698800px;}
.y93{bottom:584.998200px;}
.ybc{bottom:585.377850px;}
.y2d{bottom:588.467850px;}
.y69{bottom:591.911700px;}
.ye5{bottom:594.377850px;}
.yb{bottom:602.620950px;}
.y5b{bottom:604.369500px;}
.y92{bottom:604.798200px;}
.y2c{bottom:604.964850px;}
.ybb{bottom:605.177850px;}
.y38{bottom:605.920800px;}
.ye4{bottom:612.377850px;}
.y2b{bottom:621.461850px;}
.y5a{bottom:624.334500px;}
.y91{bottom:624.598200px;}
.yba{bottom:624.977850px;}
.ye3{bottom:630.377850px;}
.y37{bottom:634.383300px;}
.y2a{bottom:637.958850px;}
.ya{bottom:642.520950px;}
.y59{bottom:644.299500px;}
.y90{bottom:644.398200px;}
.yb9{bottom:644.777850px;}
.ye2{bottom:648.377850px;}
.y29{bottom:654.455850px;}
.y68{bottom:658.419000px;}
.y36{bottom:658.605300px;}
.y7{bottom:660.906600px;}
.y8f{bottom:664.198200px;}
.yb8{bottom:664.577850px;}
.ye1{bottom:666.377850px;}
.y28{bottom:670.952850px;}
.y58{bottom:672.762000px;}
.y67{bottom:676.419000px;}
.y9{bottom:682.420950px;}
.y8e{bottom:683.998200px;}
.yb7{bottom:684.377850px;}
.y6{bottom:686.106600px;}
.y27{bottom:687.449850px;}
.y57{bottom:696.984000px;}
.ye0{bottom:702.377850px;}
.y8d{bottom:703.798200px;}
.y26{bottom:703.946850px;}
.yb6{bottom:704.177850px;}
.y8{bottom:706.532250px;}
.y56{bottom:716.949000px;}
.ydf{bottom:720.377850px;}
.y25{bottom:720.443850px;}
.y8c{bottom:723.598200px;}
.yb5{bottom:723.977850px;}
.y35{bottom:726.674250px;}
.y5{bottom:734.283300px;}
.y66{bottom:735.819000px;}
.yde{bottom:738.377850px;}
.y8b{bottom:743.398200px;}
.yb4{bottom:743.777850px;}
.y55{bottom:745.411500px;}
.y24{bottom:753.437850px;}
.ydd{bottom:756.377850px;}
.y65{bottom:762.819000px;}
.y8a{bottom:763.198200px;}
.yb3{bottom:763.577850px;}
.y54{bottom:769.633500px;}
.y23{bottom:769.934850px;}
.y4{bottom:773.283300px;}
.ydc{bottom:774.377850px;}
.y89{bottom:782.998200px;}
.yb2{bottom:783.377850px;}
.y22{bottom:786.431850px;}
.y53{bottom:789.598500px;}
.y64{bottom:789.819000px;}
.ydb{bottom:792.377850px;}
.y88{bottom:802.798200px;}
.y21{bottom:802.928850px;}
.yb1{bottom:803.177850px;}
.y52{bottom:809.563500px;}
.yda{bottom:810.377850px;}
.y3{bottom:812.283300px;}
.y63{bottom:816.819000px;}
.y87{bottom:822.598200px;}
.yb0{bottom:822.977850px;}
.y20{bottom:823.678350px;}
.ye{bottom:826.763400px;}
.yd9{bottom:828.377850px;}
.y51{bottom:838.026000px;}
.y1f{bottom:840.175350px;}
.y86{bottom:842.398200px;}
.yaf{bottom:842.777850px;}
.yd8{bottom:846.377850px;}
.y2{bottom:851.283300px;}
.yd{bottom:851.963400px;}
.y85{bottom:862.198200px;}
.y50{bottom:862.248000px;}
.yae{bottom:862.577850px;}
.yd7{bottom:864.377850px;}
.yc{bottom:877.163400px;}
.y84{bottom:881.998200px;}
.y4f{bottom:882.213000px;}
.yd6{bottom:882.377850px;}
.y1e{bottom:887.862000px;}
.y83{bottom:901.798200px;}
.yad{bottom:902.177850px;}
.y4e{bottom:902.178000px;}
.y10{bottom:904.358850px;}
.y82{bottom:943.936950px;}
.hb{height:44.172000px;}
.h11{height:49.080000px;}
.hf{height:49.140000px;}
.hd{height:53.988000px;}
.he{height:54.054000px;}
.h10{height:54.912000px;}
.ha{height:58.896000px;}
.h6{height:63.804000px;}
.h9{height:68.712000px;}
.h2{height:70.822266px;}
.hc{height:74.880000px;}
.h5{height:76.356000px;}
.h4{height:88.800000px;}
.h8{height:93.252000px;}
.h7{height:106.749000px;}
.h3{height:128.202000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:76.830150px;}
.xf{left:85.039350px;}
.x9{left:88.398300px;}
.x10{left:97.796850px;}
.x12{left:106.299150px;}
.x16{left:107.314500px;}
.x13{left:127.551150px;}
.x1a{left:134.185050px;}
.x19{left:136.065000px;}
.x1d{left:144.564150px;}
.x6{left:147.952950px;}
.x1b{left:151.276050px;}
.x17{left:157.174500px;}
.xa{left:159.671250px;}
.x1c{left:165.829050px;}
.x5{left:167.290650px;}
.x4{left:170.560650px;}
.x15{left:174.094500px;}
.x3{left:185.290650px;}
.x8{left:195.797250px;}
.x1{left:197.478900px;}
.xb{left:210.250650px;}
.xc{left:264.976650px;}
.x18{left:277.433100px;}
.xd{left:280.894650px;}
.x14{left:293.569500px;}
.x7{left:295.777800px;}
.xe{left:318.578550px;}
.x11{left:322.087500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-4.704000pt;}
.lsa{letter-spacing:-1.114667pt;}
.ls6{letter-spacing:-0.762667pt;}
.lsc{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.693333pt;}
.ls4{letter-spacing:-0.586667pt;}
.ls5{letter-spacing:-0.234667pt;}
.ls8{letter-spacing:-0.213333pt;}
.lsd{letter-spacing:-0.176000pt;}
.lsb{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.373333pt;}
.ls7{letter-spacing:0.586667pt;}
.ls1{letter-spacing:0.693333pt;}
.ls3{letter-spacing:0.800000pt;}
.wsc{word-spacing:-18.480000pt;}
.ws0{word-spacing:-17.397333pt;}
.ws4{word-spacing:-16.949333pt;}
.wsc3{word-spacing:-13.552000pt;}
.wsd{word-spacing:-13.317333pt;}
.ws19{word-spacing:-13.200000pt;}
.ws12{word-spacing:-12.789333pt;}
.ws80{word-spacing:-12.730667pt;}
.ws57{word-spacing:-12.672000pt;}
.ws56{word-spacing:-12.320000pt;}
.wsa7{word-spacing:-12.202667pt;}
.ws1{word-spacing:-12.178133pt;}
.wsc4{word-spacing:-12.106667pt;}
.ws17{word-spacing:-11.498667pt;}
.ws5{word-spacing:-10.896000pt;}
.ws11{word-spacing:-10.736000pt;}
.ws1c{word-spacing:-7.685333pt;}
.ws16{word-spacing:-7.040000pt;}
.ws14{word-spacing:-6.746667pt;}
.ws1f{word-spacing:-5.104000pt;}
.ws18{word-spacing:-4.986667pt;}
.ws1a{word-spacing:-3.930667pt;}
.ws79{word-spacing:-3.461333pt;}
.wse{word-spacing:-3.402667pt;}
.wsb6{word-spacing:-3.109333pt;}
.ws58{word-spacing:-2.933333pt;}
.ws20{word-spacing:-2.816000pt;}
.wsa9{word-spacing:-2.757333pt;}
.ws8f{word-spacing:-2.698667pt;}
.wsbe{word-spacing:-2.581333pt;}
.ws72{word-spacing:-2.522667pt;}
.ws51{word-spacing:-2.464000pt;}
.ws5d{word-spacing:-2.405333pt;}
.ws4a{word-spacing:-2.229333pt;}
.wscd{word-spacing:-2.133333pt;}
.ws1d{word-spacing:-2.053333pt;}
.ws8e{word-spacing:-1.994667pt;}
.wsb4{word-spacing:-1.818667pt;}
.wsa4{word-spacing:-1.760000pt;}
.ws67{word-spacing:-1.701333pt;}
.ws4c{word-spacing:-1.584000pt;}
.wsc0{word-spacing:-1.525333pt;}
.ws78{word-spacing:-1.466667pt;}
.ws63{word-spacing:-1.408000pt;}
.wsc5{word-spacing:-1.386667pt;}
.ws62{word-spacing:-1.349333pt;}
.wsb5{word-spacing:-1.290667pt;}
.ws66{word-spacing:-1.232000pt;}
.wsc7{word-spacing:-1.226667pt;}
.ws4e{word-spacing:-1.173333pt;}
.ws8a{word-spacing:-1.114667pt;}
.wsc1{word-spacing:-1.056000pt;}
.ws81{word-spacing:-0.997333pt;}
.wsd6{word-spacing:-0.960000pt;}
.wsd5{word-spacing:-0.906667pt;}
.wsce{word-spacing:-0.853333pt;}
.ws95{word-spacing:-0.821333pt;}
.ws7{word-spacing:-0.816000pt;}
.ws7a{word-spacing:-0.704000pt;}
.ws9f{word-spacing:-0.645333pt;}
.ws5a{word-spacing:-0.586667pt;}
.ws54{word-spacing:-0.528000pt;}
.ws7d{word-spacing:-0.469333pt;}
.ws21{word-spacing:-0.400000pt;}
.ws70{word-spacing:-0.352000pt;}
.ws3{word-spacing:-0.346667pt;}
.ws38{word-spacing:-0.293333pt;}
.ws73{word-spacing:-0.234667pt;}
.wsd9{word-spacing:-0.213333pt;}
.ws3a{word-spacing:-0.186667pt;}
.ws41{word-spacing:-0.176000pt;}
.wscf{word-spacing:-0.160000pt;}
.ws2a{word-spacing:-0.117333pt;}
.ws75{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws64{word-spacing:0.058667pt;}
.ws87{word-spacing:0.117333pt;}
.ws92{word-spacing:0.176000pt;}
.ws22{word-spacing:0.213333pt;}
.ws15{word-spacing:0.234667pt;}
.ws59{word-spacing:0.293333pt;}
.ws43{word-spacing:0.410667pt;}
.ws55{word-spacing:0.469333pt;}
.wsb9{word-spacing:0.528000pt;}
.ws13{word-spacing:0.586667pt;}
.ws7c{word-spacing:0.645333pt;}
.ws88{word-spacing:0.704000pt;}
.ws1b{word-spacing:0.762667pt;}
.ws2c{word-spacing:0.821333pt;}
.ws53{word-spacing:0.880000pt;}
.wsd1{word-spacing:0.906667pt;}
.wsb0{word-spacing:0.938667pt;}
.wsd2{word-spacing:0.960000pt;}
.wsa1{word-spacing:0.997333pt;}
.ws93{word-spacing:1.056000pt;}
.wsc6{word-spacing:1.120000pt;}
.wsb2{word-spacing:1.173333pt;}
.ws82{word-spacing:1.232000pt;}
.ws28{word-spacing:1.290667pt;}
.ws45{word-spacing:1.349333pt;}
.ws96{word-spacing:1.408000pt;}
.ws77{word-spacing:1.466667pt;}
.ws46{word-spacing:1.525333pt;}
.ws9a{word-spacing:1.584000pt;}
.ws65{word-spacing:1.642667pt;}
.wsbd{word-spacing:1.701333pt;}
.ws52{word-spacing:1.760000pt;}
.wsa{word-spacing:1.776000pt;}
.ws6f{word-spacing:1.877333pt;}
.ws37{word-spacing:1.936000pt;}
.ws2f{word-spacing:1.994667pt;}
.ws24{word-spacing:2.053333pt;}
.ws74{word-spacing:2.112000pt;}
.ws9e{word-spacing:2.170667pt;}
.ws6c{word-spacing:2.229333pt;}
.ws4d{word-spacing:2.288000pt;}
.ws49{word-spacing:2.346667pt;}
.ws9{word-spacing:2.400000pt;}
.ws29{word-spacing:2.405333pt;}
.wsd0{word-spacing:2.453333pt;}
.ws25{word-spacing:2.464000pt;}
.ws7e{word-spacing:2.522667pt;}
.wsd8{word-spacing:2.560000pt;}
.ws6b{word-spacing:2.581333pt;}
.wsd7{word-spacing:2.613333pt;}
.wsb8{word-spacing:2.640000pt;}
.ws34{word-spacing:2.698667pt;}
.ws36{word-spacing:2.757333pt;}
.ws2d{word-spacing:2.816000pt;}
.ws61{word-spacing:2.874667pt;}
.ws3e{word-spacing:2.933333pt;}
.ws50{word-spacing:2.992000pt;}
.wsc8{word-spacing:3.040000pt;}
.ws3f{word-spacing:3.050667pt;}
.ws6d{word-spacing:3.109333pt;}
.wsa8{word-spacing:3.168000pt;}
.wsc9{word-spacing:3.253333pt;}
.wsad{word-spacing:3.285333pt;}
.wsb7{word-spacing:3.402667pt;}
.ws33{word-spacing:3.461333pt;}
.ws76{word-spacing:3.520000pt;}
.ws86{word-spacing:3.578667pt;}
.ws3c{word-spacing:3.637333pt;}
.ws90{word-spacing:3.696000pt;}
.ws8{word-spacing:3.744000pt;}
.ws94{word-spacing:3.754667pt;}
.wsac{word-spacing:3.813333pt;}
.ws40{word-spacing:3.872000pt;}
.ws7b{word-spacing:3.930667pt;}
.wsca{word-spacing:3.946667pt;}
.wscb{word-spacing:4.000000pt;}
.ws3d{word-spacing:4.048000pt;}
.ws7f{word-spacing:4.106667pt;}
.wsba{word-spacing:4.165333pt;}
.ws89{word-spacing:4.224000pt;}
.ws6e{word-spacing:4.282667pt;}
.ws31{word-spacing:4.341333pt;}
.ws99{word-spacing:4.400000pt;}
.wsa0{word-spacing:4.458667pt;}
.ws27{word-spacing:4.517333pt;}
.ws5f{word-spacing:4.576000pt;}
.ws60{word-spacing:4.752000pt;}
.ws48{word-spacing:4.810667pt;}
.ws9d{word-spacing:4.869333pt;}
.ws39{word-spacing:4.928000pt;}
.ws3b{word-spacing:4.986667pt;}
.wsa6{word-spacing:5.162667pt;}
.ws42{word-spacing:5.221333pt;}
.ws44{word-spacing:5.280000pt;}
.ws68{word-spacing:5.338667pt;}
.ws4f{word-spacing:5.397333pt;}
.ws84{word-spacing:5.456000pt;}
.wsc2{word-spacing:5.573333pt;}
.wsb1{word-spacing:5.632000pt;}
.wsb{word-spacing:5.664000pt;}
.wsaa{word-spacing:5.808000pt;}
.ws2e{word-spacing:5.866667pt;}
.wsd4{word-spacing:5.920000pt;}
.wsb3{word-spacing:5.925333pt;}
.wsd3{word-spacing:5.973333pt;}
.ws5c{word-spacing:5.984000pt;}
.ws8b{word-spacing:6.042667pt;}
.ws6a{word-spacing:6.101333pt;}
.wsbf{word-spacing:6.160000pt;}
.wsa3{word-spacing:6.277333pt;}
.wsa5{word-spacing:6.394667pt;}
.ws8c{word-spacing:6.453333pt;}
.ws47{word-spacing:6.629333pt;}
.ws5e{word-spacing:6.688000pt;}
.wsbb{word-spacing:6.805333pt;}
.ws71{word-spacing:6.922667pt;}
.wsae{word-spacing:6.981333pt;}
.wscc{word-spacing:7.146667pt;}
.ws69{word-spacing:7.157333pt;}
.ws30{word-spacing:7.216000pt;}
.ws4b{word-spacing:7.274667pt;}
.ws91{word-spacing:7.333333pt;}
.ws85{word-spacing:7.450667pt;}
.ws35{word-spacing:7.568000pt;}
.wsaf{word-spacing:7.744000pt;}
.wsbc{word-spacing:7.802667pt;}
.ws2b{word-spacing:7.861333pt;}
.wsab{word-spacing:7.978667pt;}
.ws32{word-spacing:8.154667pt;}
.ws5b{word-spacing:8.389333pt;}
.ws83{word-spacing:8.448000pt;}
.ws9c{word-spacing:8.682667pt;}
.ws98{word-spacing:8.858667pt;}
.ws8d{word-spacing:9.504000pt;}
.ws26{word-spacing:9.562667pt;}
.ws9b{word-spacing:9.797333pt;}
.wsa2{word-spacing:12.261333pt;}
.ws97{word-spacing:12.320000pt;}
.ws23{word-spacing:16.074667pt;}
.ws6{word-spacing:34.464000pt;}
.ws1e{word-spacing:53.386667pt;}
.ws10{word-spacing:81.546667pt;}
.wsf{word-spacing:109.706667pt;}
._d{margin-left:-575.636267pt;}
._10{margin-left:-67.408000pt;}
._7{margin-left:-34.713067pt;}
._6{margin-left:-12.068267pt;}
._8{margin-left:-10.128000pt;}
._c{margin-left:-7.259733pt;}
._5{margin-left:-5.674667pt;}
._0{margin-left:-4.550933pt;}
._2{margin-left:-3.078933pt;}
._1{margin-left:-1.594667pt;}
._4{width:1.109440pt;}
._3{width:2.224000pt;}
._a{width:3.738667pt;}
._9{width:4.650667pt;}
._e{width:6.425600pt;}
._14{width:7.679467pt;}
._12{width:8.846933pt;}
._13{width:12.846933pt;}
._b{width:20.554667pt;}
._15{width:32.426667pt;}
._11{width:51.744000pt;}
._f{width:75.556160pt;}
.fsd{font-size:37.333333pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:52.266667pt;}
.fsc{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.fsa{font-size:80.000000pt;}
.fs0{font-size:90.666667pt;}
.fs7{font-size:101.333333pt;}
.fs2{font-size:106.666667pt;}
.fs6{font-size:116.000000pt;}
.fs1{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:74.939600pt;}
.y1d{bottom:75.614400pt;}
.ya9{bottom:79.998400pt;}
.yd5{bottom:80.335867pt;}
.y81{bottom:86.143733pt;}
.y1c{bottom:90.278400pt;}
.y4d{bottom:94.108267pt;}
.ya8{bottom:97.598400pt;}
.yd4{bottom:97.935867pt;}
.y80{bottom:103.743733pt;}
.y1b{bottom:108.722400pt;}
.yf{bottom:113.385867pt;}
.ya7{bottom:115.198400pt;}
.yd3{bottom:115.535867pt;}
.y4c{bottom:115.638933pt;}
.y7f{bottom:121.343733pt;}
.y1a{bottom:123.386400pt;}
.ya6{bottom:132.798400pt;}
.yd2{bottom:133.135867pt;}
.y4b{bottom:133.385600pt;}
.y7e{bottom:138.943733pt;}
.y19{bottom:141.830400pt;}
.ya5{bottom:150.398400pt;}
.yd1{bottom:150.735867pt;}
.y7d{bottom:156.543733pt;}
.y4a{bottom:158.685600pt;}
.y18{bottom:164.054400pt;}
.ya4{bottom:167.998400pt;}
.yd0{bottom:168.335867pt;}
.y7c{bottom:174.143733pt;}
.y49{bottom:180.216267pt;}
.ya3{bottom:185.598400pt;}
.ycf{bottom:185.935867pt;}
.y17{bottom:186.278400pt;}
.y7b{bottom:191.743733pt;}
.y48{bottom:197.962933pt;}
.y16{bottom:200.942400pt;}
.ya2{bottom:203.198400pt;}
.yce{bottom:203.535867pt;}
.y7a{bottom:209.343733pt;}
.y15{bottom:215.606400pt;}
.y47{bottom:215.709600pt;}
.ya1{bottom:220.798400pt;}
.ycd{bottom:221.135867pt;}
.y79{bottom:226.943733pt;}
.y14{bottom:230.270400pt;}
.y46{bottom:233.456267pt;}
.ya0{bottom:238.398400pt;}
.ycc{bottom:238.735867pt;}
.y78{bottom:244.543733pt;}
.y13{bottom:244.934400pt;}
.y9f{bottom:255.998400pt;}
.ycb{bottom:256.335867pt;}
.y45{bottom:258.756267pt;}
.y77{bottom:262.143733pt;}
.y9e{bottom:273.598400pt;}
.yca{bottom:273.935867pt;}
.y76{bottom:279.743733pt;}
.y44{bottom:280.286933pt;}
.y9d{bottom:291.198400pt;}
.yc9{bottom:291.535867pt;}
.y75{bottom:297.343733pt;}
.y43{bottom:298.033600pt;}
.y9c{bottom:308.798400pt;}
.yc8{bottom:309.135867pt;}
.y74{bottom:314.943733pt;}
.y12{bottom:321.690533pt;}
.y42{bottom:323.333600pt;}
.y9b{bottom:326.398400pt;}
.yc7{bottom:326.735867pt;}
.y73{bottom:332.543733pt;}
.y9a{bottom:343.998400pt;}
.yc6{bottom:344.335867pt;}
.y41{bottom:344.864267pt;}
.y72{bottom:350.143733pt;}
.y99{bottom:361.598400pt;}
.yc5{bottom:361.935867pt;}
.y40{bottom:362.610933pt;}
.y11{bottom:363.894533pt;}
.y71{bottom:367.743733pt;}
.yee{bottom:368.335867pt;}
.yac{bottom:379.198400pt;}
.yc4{bottom:379.535867pt;}
.yed{bottom:384.335867pt;}
.y70{bottom:385.343733pt;}
.y62{bottom:386.532000pt;}
.y3f{bottom:387.910933pt;}
.y34{bottom:392.946533pt;}
.y98{bottom:396.798400pt;}
.yc3{bottom:397.135867pt;}
.yec{bottom:400.335867pt;}
.y6f{bottom:402.943733pt;}
.y33{bottom:407.610533pt;}
.y61{bottom:408.062667pt;}
.y3e{bottom:409.441600pt;}
.yab{bottom:414.398400pt;}
.yc2{bottom:414.735867pt;}
.yeb{bottom:416.335867pt;}
.y6e{bottom:420.543733pt;}
.y32{bottom:422.274533pt;}
.y60{bottom:425.809333pt;}
.y3d{bottom:427.188267pt;}
.yaa{bottom:431.998400pt;}
.yc1{bottom:432.335867pt;}
.y31{bottom:436.938533pt;}
.y6d{bottom:438.143733pt;}
.yea{bottom:448.335867pt;}
.y97{bottom:449.598400pt;}
.yc0{bottom:449.935867pt;}
.y5f{bottom:451.109333pt;}
.y30{bottom:451.602533pt;}
.y3c{bottom:452.488267pt;}
.y6c{bottom:455.743733pt;}
.ye9{bottom:464.335867pt;}
.y2f{bottom:466.266533pt;}
.y96{bottom:467.198400pt;}
.ybf{bottom:467.535867pt;}
.y5e{bottom:472.640000pt;}
.y6b{bottom:473.343733pt;}
.y3b{bottom:474.018933pt;}
.ye8{bottom:480.335867pt;}
.y95{bottom:484.798400pt;}
.ybe{bottom:485.135867pt;}
.y5d{bottom:490.386667pt;}
.y6a{bottom:490.943733pt;}
.y3a{bottom:491.765600pt;}
.ye7{bottom:496.335867pt;}
.y94{bottom:502.398400pt;}
.ybd{bottom:502.735867pt;}
.y2e{bottom:508.418533pt;}
.ye6{bottom:512.335867pt;}
.y5c{bottom:515.686667pt;}
.y39{bottom:517.065600pt;}
.y93{bottom:519.998400pt;}
.ybc{bottom:520.335867pt;}
.y2d{bottom:523.082533pt;}
.y69{bottom:526.143733pt;}
.ye5{bottom:528.335867pt;}
.yb{bottom:535.663067pt;}
.y5b{bottom:537.217333pt;}
.y92{bottom:537.598400pt;}
.y2c{bottom:537.746533pt;}
.ybb{bottom:537.935867pt;}
.y38{bottom:538.596267pt;}
.ye4{bottom:544.335867pt;}
.y2b{bottom:552.410533pt;}
.y5a{bottom:554.964000pt;}
.y91{bottom:555.198400pt;}
.yba{bottom:555.535867pt;}
.ye3{bottom:560.335867pt;}
.y37{bottom:563.896267pt;}
.y2a{bottom:567.074533pt;}
.ya{bottom:571.129733pt;}
.y59{bottom:572.710667pt;}
.y90{bottom:572.798400pt;}
.yb9{bottom:573.135867pt;}
.ye2{bottom:576.335867pt;}
.y29{bottom:581.738533pt;}
.y68{bottom:585.261333pt;}
.y36{bottom:585.426933pt;}
.y7{bottom:587.472533pt;}
.y8f{bottom:590.398400pt;}
.yb8{bottom:590.735867pt;}
.ye1{bottom:592.335867pt;}
.y28{bottom:596.402533pt;}
.y58{bottom:598.010667pt;}
.y67{bottom:601.261333pt;}
.y9{bottom:606.596400pt;}
.y8e{bottom:607.998400pt;}
.yb7{bottom:608.335867pt;}
.y6{bottom:609.872533pt;}
.y27{bottom:611.066533pt;}
.y57{bottom:619.541333pt;}
.ye0{bottom:624.335867pt;}
.y8d{bottom:625.598400pt;}
.y26{bottom:625.730533pt;}
.yb6{bottom:625.935867pt;}
.y8{bottom:628.028667pt;}
.y56{bottom:637.288000pt;}
.ydf{bottom:640.335867pt;}
.y25{bottom:640.394533pt;}
.y8c{bottom:643.198400pt;}
.yb5{bottom:643.535867pt;}
.y35{bottom:645.932667pt;}
.y5{bottom:652.696267pt;}
.y66{bottom:654.061333pt;}
.yde{bottom:656.335867pt;}
.y8b{bottom:660.798400pt;}
.yb4{bottom:661.135867pt;}
.y55{bottom:662.588000pt;}
.y24{bottom:669.722533pt;}
.ydd{bottom:672.335867pt;}
.y65{bottom:678.061333pt;}
.y8a{bottom:678.398400pt;}
.yb3{bottom:678.735867pt;}
.y54{bottom:684.118667pt;}
.y23{bottom:684.386533pt;}
.y4{bottom:687.362933pt;}
.ydc{bottom:688.335867pt;}
.y89{bottom:695.998400pt;}
.yb2{bottom:696.335867pt;}
.y22{bottom:699.050533pt;}
.y53{bottom:701.865333pt;}
.y64{bottom:702.061333pt;}
.ydb{bottom:704.335867pt;}
.y88{bottom:713.598400pt;}
.y21{bottom:713.714533pt;}
.yb1{bottom:713.935867pt;}
.y52{bottom:719.612000pt;}
.yda{bottom:720.335867pt;}
.y3{bottom:722.029600pt;}
.y63{bottom:726.061333pt;}
.y87{bottom:731.198400pt;}
.yb0{bottom:731.535867pt;}
.y20{bottom:732.158533pt;}
.ye{bottom:734.900800pt;}
.yd9{bottom:736.335867pt;}
.y51{bottom:744.912000pt;}
.y1f{bottom:746.822533pt;}
.y86{bottom:748.798400pt;}
.yaf{bottom:749.135867pt;}
.yd8{bottom:752.335867pt;}
.y2{bottom:756.696267pt;}
.yd{bottom:757.300800pt;}
.y85{bottom:766.398400pt;}
.y50{bottom:766.442667pt;}
.yae{bottom:766.735867pt;}
.yd7{bottom:768.335867pt;}
.yc{bottom:779.700800pt;}
.y84{bottom:783.998400pt;}
.y4f{bottom:784.189333pt;}
.yd6{bottom:784.335867pt;}
.y1e{bottom:789.210667pt;}
.y83{bottom:801.598400pt;}
.yad{bottom:801.935867pt;}
.y4e{bottom:801.936000pt;}
.y10{bottom:803.874533pt;}
.y82{bottom:839.055067pt;}
.hb{height:39.264000pt;}
.h11{height:43.626667pt;}
.hf{height:43.680000pt;}
.hd{height:47.989333pt;}
.he{height:48.048000pt;}
.h10{height:48.810667pt;}
.ha{height:52.352000pt;}
.h6{height:56.714667pt;}
.h9{height:61.077333pt;}
.h2{height:62.953125pt;}
.hc{height:66.560000pt;}
.h5{height:67.872000pt;}
.h4{height:78.933333pt;}
.h8{height:82.890667pt;}
.h7{height:94.888000pt;}
.h3{height:113.957333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:68.293467pt;}
.xf{left:75.590533pt;}
.x9{left:78.576267pt;}
.x10{left:86.930533pt;}
.x12{left:94.488133pt;}
.x16{left:95.390667pt;}
.x13{left:113.378800pt;}
.x1a{left:119.275600pt;}
.x19{left:120.946667pt;}
.x1d{left:128.501467pt;}
.x6{left:131.513733pt;}
.x1b{left:134.467600pt;}
.x17{left:139.710667pt;}
.xa{left:141.930000pt;}
.x1c{left:147.403600pt;}
.x5{left:148.702800pt;}
.x4{left:151.609467pt;}
.x15{left:154.750667pt;}
.x3{left:164.702800pt;}
.x8{left:174.042000pt;}
.x1{left:175.536800pt;}
.xb{left:186.889467pt;}
.xc{left:235.534800pt;}
.x18{left:246.607200pt;}
.xd{left:249.684133pt;}
.x14{left:260.950667pt;}
.x7{left:262.913600pt;}
.xe{left:283.180933pt;}
.x11{left:286.300000pt;}
}

