
    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_790aa06cb3a2be93856ed83c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_02f9bb11580a491ec25e48ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_09504a331db1dc23c74ba93e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_8dd7629c182a956065b7ff52.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_efd844df5bb7e64cf5eba571.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.862793;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_6ebaee1f47ee35658fa079d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_d670cd5870c3dfedfd4b62dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_2e9336ba7832068baedb0ea0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.843750;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;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m3{transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls21{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.864000px;}
.ls5a{letter-spacing:-0.794880px;}
.ls15{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.675360px;}
.lsc{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.504000px;}
.ls56{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.337680px;}
.ls20{letter-spacing:-0.289440px;}
.ls11{letter-spacing:-0.288000px;}
.ls59{letter-spacing:-0.264960px;}
.ls31{letter-spacing:-0.241200px;}
.ls2f{letter-spacing:-0.240546px;}
.ls7{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.215413px;}
.ls58{letter-spacing:-0.198720px;}
.ls30{letter-spacing:-0.144720px;}
.ls2d{letter-spacing:-0.144328px;}
.ls14{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls57{letter-spacing:-0.066240px;}
.ls2a{letter-spacing:-0.048240px;}
.ls2e{letter-spacing:-0.048109px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.ls1{letter-spacing:0.022920px;}
.lsb{letter-spacing:0.048240px;}
.ls23{letter-spacing:0.066240px;}
.ls2b{letter-spacing:0.071804px;}
.ls3{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.079200px;}
.ls1a{letter-spacing:0.086400px;}
.ls1e{letter-spacing:0.093600px;}
.ls22{letter-spacing:0.132480px;}
.ls5{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.149760px;}
.ls1b{letter-spacing:0.151200px;}
.ls28{letter-spacing:0.215413px;}
.ls4{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.244800px;}
.lsd{letter-spacing:0.264960px;}
.ls1c{letter-spacing:0.280800px;}
.ls29{letter-spacing:0.287218px;}
.ls2{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.295200px;}
.ls25{letter-spacing:0.302400px;}
.lsf{letter-spacing:0.309600px;}
.lse{letter-spacing:0.316800px;}
.ls24{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.936000px;}
.ls55{letter-spacing:3.888000px;}
.ls27{letter-spacing:13.968000px;}
.ls50{letter-spacing:48.528000px;}
.ls51{letter-spacing:49.248000px;}
.ls49{letter-spacing:62.928000px;}
.ls4f{letter-spacing:88.848000px;}
.ls44{letter-spacing:100.368000px;}
.ls33{letter-spacing:101.088000px;}
.ls37{letter-spacing:118.368000px;}
.ls3e{letter-spacing:119.088000px;}
.ls54{letter-spacing:119.808000px;}
.ls34{letter-spacing:122.688000px;}
.ls3c{letter-spacing:127.728000px;}
.ls3f{letter-spacing:140.688000px;}
.ls36{letter-spacing:143.568000px;}
.ls3b{letter-spacing:150.048000px;}
.ls40{letter-spacing:158.688000px;}
.ls3a{letter-spacing:163.728000px;}
.ls43{letter-spacing:173.808000px;}
.ls53{letter-spacing:174.528000px;}
.ls42{letter-spacing:176.688000px;}
.ls39{letter-spacing:179.568000px;}
.ls35{letter-spacing:186.048000px;}
.ls4e{letter-spacing:196.848000px;}
.ls38{letter-spacing:204.048000px;}
.ls41{letter-spacing:240.048000px;}
.ls52{letter-spacing:248.688000px;}
.ls32{letter-spacing:682.128000px;}
.ls3d{letter-spacing:746.208000px;}
.ls46{letter-spacing:4104.123840px;}
.ls48{letter-spacing:4120.683840px;}
.ls4c{letter-spacing:4165.323840px;}
.ls4a{letter-spacing:4206.363840px;}
.ls45{letter-spacing:4208.523840px;}
.ls4b{letter-spacing:4230.123840px;}
.ls47{letter-spacing:4241.643840px;}
.ls4d{letter-spacing:4393.563840px;}
.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;}
}
.ws4{word-spacing:-16.632000px;}
.ws1d{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.488000px;}
.ws36{word-spacing:-16.443208px;}
.ws1e{word-spacing:-16.416000px;}
.ws3{word-spacing:-16.344000px;}
.ws37{word-spacing:-16.299599px;}
.ws6{word-spacing:-16.272000px;}
.ws13{word-spacing:-16.200000px;}
.ws26{word-spacing:-16.128000px;}
.ws5{word-spacing:-16.056000px;}
.ws38{word-spacing:-16.012381px;}
.ws27{word-spacing:-15.984000px;}
.ws14{word-spacing:-15.912000px;}
.ws52{word-spacing:-15.840000px;}
.ws12{word-spacing:-15.768000px;}
.ws15{word-spacing:-15.696000px;}
.ws1c{word-spacing:-15.624000px;}
.ws1f{word-spacing:-15.480000px;}
.ws2b{word-spacing:-15.408000px;}
.ws32{word-spacing:-15.336000px;}
.ws2e{word-spacing:-15.235200px;}
.ws31{word-spacing:-15.036480px;}
.ws53{word-spacing:-14.904000px;}
.ws54{word-spacing:-14.771520px;}
.ws55{word-spacing:-14.175360px;}
.ws7{word-spacing:-13.848000px;}
.ws2{word-spacing:-10.950480px;}
.ws1{word-spacing:-10.902240px;}
.ws35{word-spacing:-10.854000px;}
.ws39{word-spacing:-10.757520px;}
.ws3a{word-spacing:-10.661040px;}
.ws2c{word-spacing:-10.612800px;}
.ws28{word-spacing:-10.564560px;}
.ws0{word-spacing:-10.226880px;}
.ws34{word-spacing:-0.936000px;}
.ws19{word-spacing:-0.792000px;}
.ws24{word-spacing:-0.648000px;}
.ws9{word-spacing:-0.576000px;}
.wse{word-spacing:-0.504000px;}
.ws2d{word-spacing:-0.432000px;}
.ws23{word-spacing:-0.360000px;}
.ws2a{word-spacing:-0.288000px;}
.ws47{word-spacing:-0.287218px;}
.ws11{word-spacing:-0.264960px;}
.wsf{word-spacing:-0.216000px;}
.ws43{word-spacing:-0.215413px;}
.ws18{word-spacing:-0.144000px;}
.wsd{word-spacing:-0.072000px;}
.ws8{word-spacing:0.000000px;}
.ws46{word-spacing:0.048109px;}
.ws44{word-spacing:0.071804px;}
.ws20{word-spacing:0.072000px;}
.ws1a{word-spacing:0.144000px;}
.ws45{word-spacing:0.144328px;}
.ws57{word-spacing:0.198720px;}
.wsa{word-spacing:0.216000px;}
.ws48{word-spacing:0.240546px;}
.ws33{word-spacing:0.288000px;}
.ws1b{word-spacing:0.360000px;}
.ws56{word-spacing:0.397440px;}
.ws21{word-spacing:0.432000px;}
.wsc{word-spacing:0.504000px;}
.ws17{word-spacing:0.576000px;}
.ws10{word-spacing:0.648000px;}
.wsb{word-spacing:0.792000px;}
.ws25{word-spacing:0.864000px;}
.ws22{word-spacing:0.936000px;}
.ws29{word-spacing:1.080000px;}
.ws30{word-spacing:1.152000px;}
.ws2f{word-spacing:1.224000px;}
.ws3c{word-spacing:1.512000px;}
.ws3b{word-spacing:2.088000px;}
.ws3d{word-spacing:2.376000px;}
.ws58{word-spacing:3.024000px;}
.ws59{word-spacing:3.816000px;}
.ws5a{word-spacing:4.536000px;}
.ws49{word-spacing:5.256000px;}
.ws4a{word-spacing:8.064000px;}
.ws3f{word-spacing:14.328000px;}
.ws3e{word-spacing:14.616000px;}
.ws51{word-spacing:17.496000px;}
.ws4e{word-spacing:31.896000px;}
.ws4c{word-spacing:35.352000px;}
.ws42{word-spacing:59.884870px;}
.ws4d{word-spacing:63.144000px;}
.ws40{word-spacing:75.681838px;}
.ws4f{word-spacing:80.280000px;}
.ws50{word-spacing:112.248000px;}
.ws41{word-spacing:123.790786px;}
.ws4b{word-spacing:138.888000px;}
._140{margin-left:-4600.958400px;}
._129{margin-left:-4569.573600px;}
._13b{margin-left:-4465.166400px;}
._143{margin-left:-3772.324800px;}
._11b{margin-left:-3132.360000px;}
._115{margin-left:-3117.758400px;}
._68{margin-left:-3116.541600px;}
._e0{margin-left:-3115.411200px;}
._f9{margin-left:-3113.452800px;}
._90{margin-left:-3112.272000px;}
._6c{margin-left:-3111.220800px;}
._97{margin-left:-3109.449600px;}
._c6{margin-left:-3107.116800px;}
._be{margin-left:-3105.432000px;}
._53{margin-left:-3103.344000px;}
._bd{margin-left:-3101.918400px;}
._99{margin-left:-3100.564800px;}
._5c{margin-left:-3097.900800px;}
._57{margin-left:-3095.136000px;}
._56{margin-left:-3093.264000px;}
._f6{margin-left:-3091.996800px;}
._88{margin-left:-3090.844800px;}
._a6{margin-left:-3088.008000px;}
._55{margin-left:-3086.784000px;}
._79{margin-left:-3085.070400px;}
._4b{margin-left:-3083.184000px;}
._5e{margin-left:-3080.966400px;}
._89{margin-left:-3079.598400px;}
._3f{margin-left:-3078.475200px;}
._42{margin-left:-3076.502400px;}
._10{margin-left:-3074.443200px;}
._26{margin-left:-3073.161600px;}
._34{margin-left:-3071.332800px;}
._c5{margin-left:-3069.936000px;}
._2f{margin-left:-3068.899200px;}
._64{margin-left:-3067.228800px;}
._44{margin-left:-3065.011200px;}
._54{margin-left:-3063.830400px;}
._b4{margin-left:-3062.088000px;}
._62{margin-left:-3060.547200px;}
._5{margin-left:-3057.220800px;}
._93{margin-left:-3056.155200px;}
._c{margin-left:-3054.816000px;}
._4e{margin-left:-3052.584000px;}
._52{margin-left:-3050.617680px;}
._5f{margin-left:-3049.300800px;}
._b0{margin-left:-3048.076800px;}
._ba{margin-left:-3046.507200px;}
._b{margin-left:-3045.225600px;}
._8f{margin-left:-3044.044800px;}
._17{margin-left:-3042.648000px;}
._63{margin-left:-3041.150400px;}
._65{margin-left:-3039.624000px;}
._a4{margin-left:-3037.795200px;}
._67{margin-left:-3036.268800px;}
._c9{margin-left:-3034.584000px;}
._70{margin-left:-3033.043200px;}
._92{margin-left:-3030.912000px;}
._35{margin-left:-3029.860800px;}
._2c{margin-left:-3028.680000px;}
._43{margin-left:-3027.492000px;}
._7b{margin-left:-3025.396800px;}
._a9{margin-left:-3024.230400px;}
._16{margin-left:-3023.121600px;}
._b8{margin-left:-3022.012800px;}
._28{margin-left:-3018.441600px;}
._9f{margin-left:-3016.656000px;}
._d7{margin-left:-3015.273600px;}
._7a{margin-left:-3013.660800px;}
._30{margin-left:-3012.192000px;}
._3{margin-left:-3009.096000px;}
._29{margin-left:-3007.972800px;}
._46{margin-left:-3006.230400px;}
._4d{margin-left:-3005.150400px;}
._23{margin-left:-3004.056000px;}
._6{margin-left:-3002.184000px;}
._e{margin-left:-3001.147200px;}
._a8{margin-left:-2999.044800px;}
._72{margin-left:-2997.172800px;}
._1f{margin-left:-2996.078400px;}
._d5{margin-left:-2994.696000px;}
._6b{margin-left:-2993.515200px;}
._a{margin-left:-2991.405600px;}
._33{margin-left:-2988.892800px;}
._9a{margin-left:-2986.891200px;}
._24{margin-left:-2985.667200px;}
._10d{margin-left:-2983.622400px;}
._36{margin-left:-2982.542400px;}
._b6{margin-left:-2980.728000px;}
._df{margin-left:-2979.432000px;}
._3a{margin-left:-2977.660800px;}
._22{margin-left:-2976.120000px;}
._8{margin-left:-2974.104000px;}
._1a{margin-left:-2969.956800px;}
._4{margin-left:-2968.704000px;}
._c1{margin-left:-2967.696000px;}
._4a{margin-left:-2966.040000px;}
._98{margin-left:-2963.822400px;}
._1e{margin-left:-2962.728000px;}
._a5{margin-left:-2960.654400px;}
._8a{margin-left:-2959.171200px;}
._45{margin-left:-2957.515200px;}
._f8{margin-left:-2952.547200px;}
._32{margin-left:-2950.790400px;}
._39{margin-left:-2949.120000px;}
._1d{margin-left:-2947.478400px;}
._ac{margin-left:-2944.814400px;}
._27{margin-left:-2943.720000px;}
._6a{margin-left:-2939.846400px;}
._41{margin-left:-2937.715200px;}
._d{margin-left:-2934.576000px;}
._3b{margin-left:-2931.364800px;}
._a1{margin-left:-2930.040000px;}
._77{margin-left:-2926.915200px;}
._cb{margin-left:-2924.136000px;}
._bb{margin-left:-2918.808000px;}
._78{margin-left:-2911.852800px;}
._c8{margin-left:-2909.908800px;}
._2e{margin-left:-2908.584000px;}
._14{margin-left:-2906.366400px;}
._7{margin-left:-2903.212800px;}
._cf{margin-left:-2901.556800px;}
._38{margin-left:-2900.347200px;}
._13{margin-left:-2898.115200px;}
._c2{margin-left:-2897.092800px;}
._e4{margin-left:-2893.896000px;}
._31{margin-left:-2891.620800px;}
._47{margin-left:-2889.504000px;}
._10f{margin-left:-2887.329600px;}
._2a{margin-left:-2886.091200px;}
._4c{margin-left:-2884.694400px;}
._71{margin-left:-2881.728000px;}
._e8{margin-left:-2878.862400px;}
._9b{margin-left:-2875.824000px;}
._9{margin-left:-2874.412800px;}
._18{margin-left:-2868.206400px;}
._11a{margin-left:-2864.592000px;}
._102{margin-left:-2862.489600px;}
._b5{margin-left:-2858.486400px;}
._76{margin-left:-2855.534400px;}
._f5{margin-left:-2852.222400px;}
._110{margin-left:-2851.084800px;}
._8c{margin-left:-2842.776000px;}
._b1{margin-left:-2840.284800px;}
._b3{margin-left:-2836.224000px;}
._20{margin-left:-2831.227200px;}
._2b{margin-left:-2829.614400px;}
._7e{margin-left:-2824.300800px;}
._40{margin-left:-2823.091200px;}
._2d{margin-left:-2821.665600px;}
._d3{margin-left:-2817.288000px;}
._6d{margin-left:-2815.732800px;}
._1b{margin-left:-2811.772800px;}
._c3{margin-left:-2808.900000px;}
._d0{margin-left:-2801.102400px;}
._51{margin-left:-2799.288000px;}
._91{margin-left:-2798.064000px;}
._66{margin-left:-2796.566400px;}
._21{margin-left:-2791.900800px;}
._f0{margin-left:-2784.614400px;}
._ef{margin-left:-2776.953600px;}
._73{margin-left:-2770.488000px;}
._37{margin-left:-2767.665600px;}
._4f{margin-left:-2765.966400px;}
._a2{margin-left:-2764.094400px;}
._c4{margin-left:-2762.726400px;}
._c0{margin-left:-2754.172800px;}
._d9{margin-left:-2747.289600px;}
._ca{margin-left:-2742.782400px;}
._15{margin-left:-2734.603200px;}
._cd{margin-left:-2727.763200px;}
._ff{margin-left:-2726.020800px;}
._5d{margin-left:-2715.912000px;}
._1c{margin-left:-2704.824000px;}
._bf{margin-left:-2690.294400px;}
._10c{margin-left:-2644.977600px;}
._e7{margin-left:-2624.472000px;}
._e6{margin-left:-2577.816000px;}
._87{margin-left:-2542.752000px;}
._e9{margin-left:-2407.896000px;}
._da{margin-left:-2380.708800px;}
._139{margin-left:-2345.544000px;}
._103{margin-left:-2276.164800px;}
._83{margin-left:-2273.933520px;}
._f{margin-left:-2256.451200px;}
._86{margin-left:-2253.816000px;}
._ec{margin-left:-2236.262400px;}
._cc{margin-left:-2205.835200px;}
._111{margin-left:-2193.120000px;}
._fb{margin-left:-2191.147200px;}
._de{margin-left:-2127.326400px;}
._c7{margin-left:-2118.600000px;}
._aa{margin-left:-2111.544000px;}
._f2{margin-left:-2100.124800px;}
._d4{margin-left:-2098.684800px;}
._eb{margin-left:-2006.654400px;}
._b9{margin-left:-1994.990400px;}
._a0{margin-left:-1989.720000px;}
._f4{margin-left:-1960.308000px;}
._107{margin-left:-1904.472000px;}
._fe{margin-left:-1860.753600px;}
._10a{margin-left:-1857.960000px;}
._5b{margin-left:-1840.564800px;}
._58{margin-left:-1833.408000px;}
._8b{margin-left:-1799.870400px;}
._69{margin-left:-1794.888000px;}
._6e{margin-left:-1783.022400px;}
._104{margin-left:-1757.232000px;}
._100{margin-left:-1738.843200px;}
._f3{margin-left:-1730.347200px;}
._b7{margin-left:-1718.064000px;}
._50{margin-left:-1686.196800px;}
._a3{margin-left:-1665.360000px;}
._dd{margin-left:-1627.308000px;}
._fd{margin-left:-1595.232000px;}
._19{margin-left:-1587.816000px;}
._ee{margin-left:-1581.076800px;}
._101{margin-left:-1521.216000px;}
._25{margin-left:-1508.616000px;}
._10b{margin-left:-1496.260800px;}
._bc{margin-left:-1490.731200px;}
._142{margin-left:-1449.432000px;}
._116{margin-left:-1421.596800px;}
._db{margin-left:-1411.185600px;}
._80{margin-left:-1404.172800px;}
._e5{margin-left:-1401.523200px;}
._96{margin-left:-1387.008000px;}
._82{margin-left:-1375.084800px;}
._ea{margin-left:-1355.169600px;}
._84{margin-left:-1348.884720px;}
._d6{margin-left:-1289.390400px;}
._106{margin-left:-1255.420800px;}
._60{margin-left:-1229.328000px;}
._48{margin-left:-1222.358400px;}
._85{margin-left:-1201.564800px;}
._af{margin-left:-1192.118400px;}
._8e{margin-left:-1183.622400px;}
._ae{margin-left:-1167.148800px;}
._7c{margin-left:-1158.782400px;}
._b2{margin-left:-1156.968000px;}
._113{margin-left:-1089.792000px;}
._9e{margin-left:-1086.451200px;}
._ab{margin-left:-1085.184000px;}
._fc{margin-left:-1082.707200px;}
._ed{margin-left:-1081.209600px;}
._e2{margin-left:-1074.859200px;}
._95{margin-left:-1054.728000px;}
._61{margin-left:-1021.579200px;}
._74{margin-left:-1002.600000px;}
._75{margin-left:-983.390400px;}
._94{margin-left:-964.656000px;}
._3d{margin-left:-929.822400px;}
._d1{margin-left:-928.296000px;}
._6f{margin-left:-924.206400px;}
._108{margin-left:-917.208000px;}
._118{margin-left:-904.780800px;}
._7d{margin-left:-898.617600px;}
._11c{margin-left:-888.768000px;}
._105{margin-left:-875.102400px;}
._d2{margin-left:-848.044800px;}
._5a{margin-left:-837.648000px;}
._3e{margin-left:-807.192000px;}
._dc{margin-left:-799.272000px;}
._ad{margin-left:-783.936000px;}
._12a{margin-left:-716.544000px;}
._59{margin-left:-711.936000px;}
._135{margin-left:-697.896000px;}
._10e{margin-left:-678.096000px;}
._134{margin-left:-665.352000px;}
._ce{margin-left:-652.248000px;}
._81{margin-left:-649.944000px;}
._e3{margin-left:-643.608000px;}
._12{margin-left:-638.496000px;}
._11{margin-left:-634.680000px;}
._fa{margin-left:-630.504000px;}
._49{margin-left:-628.272000px;}
._e1{margin-left:-614.952000px;}
._9d{margin-left:-592.358400px;}
._132{margin-left:-590.904000px;}
._133{margin-left:-585.504000px;}
._137{margin-left:-581.126400px;}
._f1{margin-left:-569.880000px;}
._3c{margin-left:-559.800000px;}
._138{margin-left:-553.392000px;}
._11d{margin-left:-544.320000px;}
._12d{margin-left:-539.856000px;}
._12f{margin-left:-521.136000px;}
._141{margin-left:-519.624000px;}
._8d{margin-left:-506.088000px;}
._d8{margin-left:-497.318400px;}
._12e{margin-left:-479.016000px;}
._7f{margin-left:-463.104000px;}
._9c{margin-left:-454.464000px;}
._130{margin-left:-448.272000px;}
._2{margin-left:-443.635200px;}
._a7{margin-left:-429.120000px;}
._f7{margin-left:-421.056000px;}
._136{margin-left:-355.536000px;}
._109{margin-left:-350.856000px;}
._12b{margin-left:-346.320000px;}
._119{margin-left:-225.792000px;}
._0{margin-left:-1.584000px;}
._1{width:1.166400px;}
._114{width:2.361600px;}
._131{width:5.616000px;}
._117{width:14.616000px;}
._124{width:25.131540px;}
._12c{width:31.982400px;}
._127{width:37.338288px;}
._13a{width:48.556800px;}
._13d{width:83.736000px;}
._13e{width:86.040000px;}
._126{width:89.037456px;}
._128{width:123.504769px;}
._13c{width:125.280000px;}
._125{width:134.993473px;}
._120{width:150.071196px;}
._13f{width:179.640000px;}
._11e{width:184.825126px;}
._123{width:256.345310px;}
._122{width:272.138676px;}
._11f{width:310.482826px;}
._121{width:370.510704px;}
._112{width:847.728000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.109200px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:71.804400px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:75.894664px;}
.y0{bottom:0.000000px;}
.yd6{bottom:4.500000px;}
.y55{bottom:4.845900px;}
.y57{bottom:4.846050px;}
.y5c{bottom:4.846200px;}
.y47{bottom:4.846500px;}
.y4a{bottom:4.846650px;}
.y4d{bottom:4.846800px;}
.y59{bottom:4.847550px;}
.y5b{bottom:4.847700px;}
.y43{bottom:4.847850px;}
.y2d{bottom:4.859850px;}
.y2b{bottom:4.860000px;}
.y51{bottom:5.026800px;}
.y53{bottom:5.026950px;}
.y76{bottom:5.040000px;}
.y8e{bottom:5.400000px;}
.y8f{bottom:5.940000px;}
.yd3{bottom:6.840000px;}
.ybe{bottom:7.020000px;}
.y56{bottom:10.769850px;}
.y5d{bottom:10.770150px;}
.y48{bottom:10.770300px;}
.y4b{bottom:10.770450px;}
.y4c{bottom:10.770600px;}
.y5a{bottom:10.771500px;}
.y52{bottom:10.950750px;}
.y6e{bottom:11.160000px;}
.y95{bottom:11.880000px;}
.y7d{bottom:26.820000px;}
.y9f{bottom:27.000000px;}
.y45{bottom:27.465150px;}
.y4f{bottom:38.773800px;}
.ye4{bottom:57.606480px;}
.y23{bottom:57.772080px;}
.y1{bottom:77.760000px;}
.y28{bottom:106.020000px;}
.y3e{bottom:114.480000px;}
.y9b{bottom:127.620000px;}
.y99{bottom:149.580000px;}
.y27{bottom:149.940000px;}
.y97{bottom:154.440000px;}
.y3d{bottom:158.580000px;}
.y9a{bottom:165.420000px;}
.y96{bottom:176.400000px;}
.y41{bottom:188.665800px;}
.y98{bottom:193.500000px;}
.y26{bottom:193.860000px;}
.ybb{bottom:196.380000px;}
.y3c{bottom:202.500000px;}
.y94{bottom:216.360000px;}
.y93{bottom:224.640000px;}
.y91{bottom:225.000000px;}
.yba{bottom:232.020000px;}
.y25{bottom:237.960000px;}
.y40{bottom:244.493700px;}
.y92{bottom:246.060000px;}
.y90{bottom:246.960000px;}
.yb9{bottom:255.600000px;}
.y3b{bottom:258.480000px;}
.y8d{bottom:268.740000px;}
.yb8{bottom:279.360000px;}
.y24{bottom:281.880000px;}
.y3a{bottom:282.060000px;}
.yee{bottom:285.480000px;}
.y8c{bottom:291.780000px;}
.ycf{bottom:297.360000px;}
.yb7{bottom:302.940000px;}
.y39{bottom:305.820000px;}
.ycd{bottom:313.560000px;}
.y8b{bottom:313.740000px;}
.yed{bottom:316.080000px;}
.y87{bottom:318.060000px;}
.yce{bottom:320.040000px;}
.ye3{bottom:323.820000px;}
.y22{bottom:325.800000px;}
.yb6{bottom:326.700000px;}
.y38{bottom:329.580000px;}
.y8a{bottom:335.700000px;}
.y86{bottom:340.020000px;}
.ycc{bottom:342.900000px;}
.ye2{bottom:347.400000px;}
.yb5{bottom:350.460000px;}
.y37{bottom:353.160000px;}
.y89{bottom:357.660000px;}
.ycb{bottom:365.580000px;}
.y21{bottom:369.720000px;}
.ye1{bottom:371.160000px;}
.yb4{bottom:374.220000px;}
.y88{bottom:379.620000px;}
.yca{bottom:388.260000px;}
.ye0{bottom:394.920000px;}
.yb3{bottom:397.800000px;}
.y85{bottom:402.300000px;}
.y36{bottom:402.480000px;}
.y3f{bottom:403.086000px;}
.y4e{bottom:403.804500px;}
.yc9{bottom:410.940000px;}
.y20{bottom:413.640000px;}
.yc5{bottom:415.800000px;}
.y81{bottom:418.320000px;}
.ydf{bottom:418.500000px;}
.yb2{bottom:421.560000px;}
.y84{bottom:424.260000px;}
.y58{bottom:426.421500px;}
.yc8{bottom:433.800000px;}
.yf4{bottom:434.340000px;}
.y80{bottom:440.280000px;}
.yde{bottom:442.260000px;}
.yb1{bottom:445.320000px;}
.y83{bottom:446.400000px;}
.y54{bottom:449.041500px;}
.yc7{bottom:456.480000px;}
.y1f{bottom:457.560000px;}
.ydd{bottom:460.080000px;}
.y7f{bottom:462.240000px;}
.yf3{bottom:464.940000px;}
.y82{bottom:468.360000px;}
.yb0{bottom:469.080000px;}
.y50{bottom:471.658500px;}
.yc6{bottom:479.160000px;}
.ydc{bottom:482.040000px;}
.y7e{bottom:491.040000px;}
.yaf{bottom:492.660000px;}
.y44{bottom:494.457000px;}
.y1e{bottom:501.480000px;}
.yc4{bottom:501.840000px;}
.ydb{bottom:504.000000px;}
.y7b{bottom:506.880000px;}
.yae{bottom:516.420000px;}
.y49{bottom:517.075500px;}
.yc3{bottom:524.520000px;}
.yda{bottom:525.960000px;}
.y7a{bottom:528.840000px;}
.y7c{bottom:534.960000px;}
.y46{bottom:539.694000px;}
.yad{bottom:540.180000px;}
.yc0{bottom:540.900000px;}
.y1d{bottom:545.580000px;}
.yc2{bottom:547.380000px;}
.yd9{bottom:547.920000px;}
.y79{bottom:550.800000px;}
.y42{bottom:562.311000px;}
.yac{bottom:563.940000px;}
.yc1{bottom:570.060000px;}
.y78{bottom:579.600000px;}
.yab{bottom:587.520000px;}
.y1c{bottom:589.500000px;}
.yd8{bottom:592.020000px;}
.ybf{bottom:592.740000px;}
.y9d{bottom:600.300000px;}
.y77{bottom:601.560000px;}
.ybc{bottom:610.920000px;}
.yaa{bottom:611.280000px;}
.yd7{bottom:613.980000px;}
.ybd{bottom:615.420000px;}
.y73{bottom:617.400000px;}
.y75{bottom:623.520000px;}
.y35{bottom:627.300000px;}
.y1b{bottom:633.420000px;}
.ya9{bottom:635.040000px;}
.yd5{bottom:635.940000px;}
.yec{bottom:641.340000px;}
.y74{bottom:645.660000px;}
.y9c{bottom:655.920000px;}
.yd4{bottom:658.620000px;}
.yeb{bottom:664.920000px;}
.y72{bottom:668.340000px;}
.y34{bottom:671.220000px;}
.ya5{bottom:673.920000px;}
.y10{bottom:675.807450px;}
.yd1{bottom:676.800000px;}
.y13{bottom:677.340000px;}
.yd2{bottom:681.300000px;}
.yea{bottom:688.680000px;}
.ya6{bottom:689.760000px;}
.y71{bottom:690.300000px;}
.ya8{bottom:691.020000px;}
.y6f{bottom:695.160000px;}
.ya2{bottom:701.460000px;}
.y70{bottom:712.260000px;}
.y33{bottom:715.140000px;}
.ya4{bottom:718.560000px;}
.y12{bottom:721.260000px;}
.ya1{bottom:723.420000px;}
.yd{bottom:732.406800px;}
.y6d{bottom:734.940000px;}
.ya3{bottom:741.240000px;}
.y6c{bottom:742.860000px;}
.ye9{bottom:743.220000px;}
.yd0{bottom:746.820000px;}
.y6a{bottom:754.020000px;}
.y32{bottom:759.240000px;}
.y6b{bottom:763.200000px;}
.yf2{bottom:763.380000px;}
.y9e{bottom:763.920000px;}
.y11{bottom:765.180000px;}
.yb{bottom:770.386800px;}
.ya0{bottom:779.760000px;}
.y31{bottom:782.820000px;}
.y68{bottom:785.880000px;}
.yf1{bottom:786.960000px;}
.ya7{bottom:790.920000px;}
.y30{bottom:806.580000px;}
.y69{bottom:808.560000px;}
.y1a{bottom:809.100000px;}
.yf{bottom:809.100720px;}
.yf0{bottom:817.560000px;}
.y9{bottom:820.246800px;}
.y2f{bottom:830.340000px;}
.y2e{bottom:848.160000px;}
.ye{bottom:853.200000px;}
.y7{bottom:861.889650px;}
.y2c{bottom:870.120000px;}
.y2a{bottom:892.800000px;}
.yc{bottom:897.120000px;}
.y5{bottom:911.747130px;}
.y67{bottom:916.380000px;}
.y66{bottom:939.060000px;}
.ya{bottom:941.040000px;}
.y4{bottom:949.729650px;}
.y63{bottom:955.260000px;}
.y65{bottom:961.740000px;}
.y64{bottom:984.420000px;}
.y8{bottom:984.960000px;}
.y29{bottom:985.140000px;}
.y3{bottom:993.649650px;}
.y62{bottom:1007.280000px;}
.y6{bottom:1028.880000px;}
.y61{bottom:1029.960000px;}
.y5f{bottom:1034.820000px;}
.y2{bottom:1037.749650px;}
.y60{bottom:1052.640000px;}
.ye8{bottom:1068.480000px;}
.y19{bottom:1072.800000px;}
.y5e{bottom:1075.320000px;}
.ye7{bottom:1092.060000px;}
.ye6{bottom:1115.820000px;}
.yef{bottom:1116.000000px;}
.y18{bottom:1116.720000px;}
.ye5{bottom:1139.580000px;}
.y17{bottom:1160.820000px;}
.y16{bottom:1182.086100px;}
.y15{bottom:1200.086100px;}
.y14{bottom:1218.085500px;}
.h13{height:21.900000px;}
.hf{height:21.901500px;}
.hc{height:21.958500px;}
.ha{height:21.960000px;}
.h15{height:22.080000px;}
.h1a{height:22.140000px;}
.h1d{height:23.038500px;}
.h21{height:25.920000px;}
.h20{height:26.100000px;}
.h19{height:28.260000px;}
.h1e{height:28.978500px;}
.h12{height:39.675996px;}
.h5{height:39.783867px;}
.h8{height:43.066406px;}
.h7{height:43.068806px;}
.h1b{height:43.920000px;}
.h1c{height:43.921500px;}
.h1f{height:44.098500px;}
.h18{height:44.640000px;}
.h22{height:46.057500px;}
.h10{height:49.926497px;}
.h3{height:50.062500px;}
.h9{height:50.584090px;}
.h2{height:54.628594px;}
.he{height:59.217594px;}
.h6{height:59.378906px;}
.h4{height:63.543867px;}
.hb{height:63.544467px;}
.h11{height:67.138500px;}
.h14{height:89.935500px;}
.hd{height:185.334000px;}
.h16{height:892.980000px;}
.h17{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:31.860000px;}
.w29{width:41.940000px;}
.w2e{width:44.820000px;}
.w36{width:53.100000px;}
.wc{width:55.435500px;}
.w13{width:55.620000px;}
.w26{width:56.520000px;}
.w2b{width:60.840000px;}
.w2a{width:61.020000px;}
.w2f{width:62.460000px;}
.w2d{width:70.018500px;}
.w2c{width:70.200000px;}
.w30{width:71.820000px;}
.w33{width:74.340000px;}
.w37{width:74.520000px;}
.w10{width:75.886500px;}
.w17{width:76.321500px;}
.wf{width:76.962000px;}
.wd{width:77.142000px;}
.we{width:77.143500px;}
.w15{width:77.220000px;}
.w14{width:77.400000px;}
.w16{width:77.401500px;}
.w27{width:80.640000px;}
.w31{width:81.000000px;}
.wb{width:82.524000px;}
.w8{width:82.800000px;}
.w12{width:82.801500px;}
.w7{width:83.160000px;}
.w1c{width:84.960000px;}
.w34{width:85.140000px;}
.w21{width:95.580000px;}
.w20{width:95.760000px;}
.w4{width:103.861500px;}
.w3{width:104.038500px;}
.w23{width:106.380000px;}
.w5{width:107.100000px;}
.w6{width:107.280000px;}
.wa{width:113.380500px;}
.w11{width:113.940000px;}
.w22{width:127.621500px;}
.w28{width:132.658500px;}
.w2{width:134.641500px;}
.w25{width:137.160000px;}
.w32{width:159.481500px;}
.w1a{width:169.741500px;}
.w35{width:201.960000px;}
.w1b{width:202.500000px;}
.w24{width:207.900000px;}
.w1d{width:318.960000px;}
.w1f{width:382.678500px;}
.w9{width:657.861000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w18{width:1262.880000px;}
.w19{width:1263.000000px;}
.x0{left:0.000000px;}
.x23{left:8.073600px;}
.x4c{left:9.540000px;}
.x63{left:10.800000px;}
.x4e{left:11.880000px;}
.x1c{left:13.500000px;}
.x25{left:15.070650px;}
.x21{left:16.380000px;}
.x6c{left:17.460000px;}
.x13{left:18.540000px;}
.x32{left:19.734750px;}
.x1e{left:20.880000px;}
.x2e{left:21.887400px;}
.x27{left:22.963050px;}
.x1a{left:25.020000px;}
.x29{left:27.090000px;}
.x67{left:28.260000px;}
.x54{left:29.340000px;}
.x48{left:30.960000px;}
.x1d{left:32.220000px;}
.x34{left:34.086600px;}
.x20{left:35.100000px;}
.x2f{left:36.598800px;}
.x17{left:37.620000px;}
.x59{left:39.060000px;}
.xc{left:41.040000px;}
.x41{left:42.480000px;}
.x1f{left:44.640000px;}
.x65{left:45.720000px;}
.x6{left:49.500000px;}
.x3e{left:50.760000px;}
.x30{left:52.026750px;}
.x64{left:53.460000px;}
.x31{left:57.049800px;}
.x33{left:60.098550px;}
.xd{left:61.534500px;}
.x6a{left:69.480000px;}
.x8{left:71.581350px;}
.x43{left:74.700000px;}
.x74{left:77.220000px;}
.xb{left:78.366900px;}
.x73{left:82.620000px;}
.xe{left:84.960000px;}
.x51{left:88.560000px;}
.x3{left:95.245050px;}
.x5{left:103.705050px;}
.x10{left:106.200000px;}
.x3c{left:119.160000px;}
.x76{left:127.620000px;}
.xa{left:129.721350px;}
.x69{left:131.760000px;}
.x2{left:138.625050px;}
.x4d{left:185.040000px;}
.x3f{left:190.440000px;}
.x4f{left:193.140000px;}
.x35{left:198.900000px;}
.x58{left:202.680000px;}
.x24{left:209.014500px;}
.x14{left:219.600000px;}
.x55{left:220.680000px;}
.x62{left:225.900000px;}
.x9{left:248.161350px;}
.x7{left:263.545050px;}
.x36{left:281.700000px;}
.x26{left:291.540000px;}
.x15{left:323.640000px;}
.x6b{left:333.720000px;}
.x37{left:337.320000px;}
.x28{left:346.974000px;}
.x4{left:382.165050px;}
.x6d{left:386.820000px;}
.x40{left:392.940000px;}
.x52{left:404.820000px;}
.x38{left:414.720000px;}
.x2a{left:424.116000px;}
.x16{left:427.500000px;}
.x5a{left:455.400000px;}
.x6e{left:471.960000px;}
.x42{left:477.900000px;}
.x39{left:491.940000px;}
.x5b{left:497.340000px;}
.x78{left:498.780000px;}
.x2b{left:501.259500px;}
.x18{left:534.600000px;}
.x11{left:546.840000px;}
.x12{left:556.740000px;}
.x5c{left:558.360000px;}
.x3a{left:569.340000px;}
.x46{left:573.660000px;}
.x2c{left:578.221500px;}
.x5d{left:619.200000px;}
.x6f{left:620.820000px;}
.x19{left:641.880000px;}
.x3b{left:646.560000px;}
.x2d{left:655.365000px;}
.x47{left:669.240000px;}
.x5e{left:689.400000px;}
.x70{left:705.780000px;}
.x1b{left:725.040000px;}
.x77{left:738.180000px;}
.x22{left:744.660000px;}
.x75{left:748.620000px;}
.x5f{left:759.420000px;}
.xf{left:791.100000px;}
.x44{left:796.860000px;}
.x1{left:799.560000px;}
.x71{left:801.540000px;}
.x60{left:804.240000px;}
.x45{left:828.720000px;}
.x50{left:851.400000px;}
.x53{left:855.900000px;}
.x61{left:866.700000px;}
.x72{left:875.880000px;}
.x49{left:935.100000px;}
.x56{left:938.520000px;}
.x66{left:971.640000px;}
.x57{left:995.040000px;}
.x4a{left:1030.860000px;}
.x68{left:1045.980000px;}
.x4b{left:1126.440000px;}
.x3d{left:1161.000000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls21{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.768000pt;}
.ls5a{letter-spacing:-0.706560pt;}
.ls15{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.600320pt;}
.lsc{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.448000pt;}
.ls56{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.300160pt;}
.ls20{letter-spacing:-0.257280pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls59{letter-spacing:-0.235520pt;}
.ls31{letter-spacing:-0.214400pt;}
.ls2f{letter-spacing:-0.213819pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.191478pt;}
.ls58{letter-spacing:-0.176640pt;}
.ls30{letter-spacing:-0.128640pt;}
.ls2d{letter-spacing:-0.128291pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls57{letter-spacing:-0.058880pt;}
.ls2a{letter-spacing:-0.042880pt;}
.ls2e{letter-spacing:-0.042764pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.ls1{letter-spacing:0.020373pt;}
.lsb{letter-spacing:0.042880pt;}
.ls23{letter-spacing:0.058880pt;}
.ls2b{letter-spacing:0.063826pt;}
.ls3{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.070400pt;}
.ls1a{letter-spacing:0.076800pt;}
.ls1e{letter-spacing:0.083200pt;}
.ls22{letter-spacing:0.117760pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.133120pt;}
.ls1b{letter-spacing:0.134400pt;}
.ls28{letter-spacing:0.191478pt;}
.ls4{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.217600pt;}
.lsd{letter-spacing:0.235520pt;}
.ls1c{letter-spacing:0.249600pt;}
.ls29{letter-spacing:0.255305pt;}
.ls2{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.262400pt;}
.ls25{letter-spacing:0.268800pt;}
.lsf{letter-spacing:0.275200pt;}
.lse{letter-spacing:0.281600pt;}
.ls24{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.832000pt;}
.ls55{letter-spacing:3.456000pt;}
.ls27{letter-spacing:12.416000pt;}
.ls50{letter-spacing:43.136000pt;}
.ls51{letter-spacing:43.776000pt;}
.ls49{letter-spacing:55.936000pt;}
.ls4f{letter-spacing:78.976000pt;}
.ls44{letter-spacing:89.216000pt;}
.ls33{letter-spacing:89.856000pt;}
.ls37{letter-spacing:105.216000pt;}
.ls3e{letter-spacing:105.856000pt;}
.ls54{letter-spacing:106.496000pt;}
.ls34{letter-spacing:109.056000pt;}
.ls3c{letter-spacing:113.536000pt;}
.ls3f{letter-spacing:125.056000pt;}
.ls36{letter-spacing:127.616000pt;}
.ls3b{letter-spacing:133.376000pt;}
.ls40{letter-spacing:141.056000pt;}
.ls3a{letter-spacing:145.536000pt;}
.ls43{letter-spacing:154.496000pt;}
.ls53{letter-spacing:155.136000pt;}
.ls42{letter-spacing:157.056000pt;}
.ls39{letter-spacing:159.616000pt;}
.ls35{letter-spacing:165.376000pt;}
.ls4e{letter-spacing:174.976000pt;}
.ls38{letter-spacing:181.376000pt;}
.ls41{letter-spacing:213.376000pt;}
.ls52{letter-spacing:221.056000pt;}
.ls32{letter-spacing:606.336000pt;}
.ls3d{letter-spacing:663.296000pt;}
.ls46{letter-spacing:3648.110080pt;}
.ls48{letter-spacing:3662.830080pt;}
.ls4c{letter-spacing:3702.510080pt;}
.ls4a{letter-spacing:3738.990080pt;}
.ls45{letter-spacing:3740.910080pt;}
.ls4b{letter-spacing:3760.110080pt;}
.ls47{letter-spacing:3770.350080pt;}
.ls4d{letter-spacing:3905.390080pt;}
.ws4{word-spacing:-14.784000pt;}
.ws1d{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.656000pt;}
.ws36{word-spacing:-14.616185pt;}
.ws1e{word-spacing:-14.592000pt;}
.ws3{word-spacing:-14.528000pt;}
.ws37{word-spacing:-14.488532pt;}
.ws6{word-spacing:-14.464000pt;}
.ws13{word-spacing:-14.400000pt;}
.ws26{word-spacing:-14.336000pt;}
.ws5{word-spacing:-14.272000pt;}
.ws38{word-spacing:-14.233228pt;}
.ws27{word-spacing:-14.208000pt;}
.ws14{word-spacing:-14.144000pt;}
.ws52{word-spacing:-14.080000pt;}
.ws12{word-spacing:-14.016000pt;}
.ws15{word-spacing:-13.952000pt;}
.ws1c{word-spacing:-13.888000pt;}
.ws1f{word-spacing:-13.760000pt;}
.ws2b{word-spacing:-13.696000pt;}
.ws32{word-spacing:-13.632000pt;}
.ws2e{word-spacing:-13.542400pt;}
.ws31{word-spacing:-13.365760pt;}
.ws53{word-spacing:-13.248000pt;}
.ws54{word-spacing:-13.130240pt;}
.ws55{word-spacing:-12.600320pt;}
.ws7{word-spacing:-12.309333pt;}
.ws2{word-spacing:-9.733760pt;}
.ws1{word-spacing:-9.690880pt;}
.ws35{word-spacing:-9.648000pt;}
.ws39{word-spacing:-9.562240pt;}
.ws3a{word-spacing:-9.476480pt;}
.ws2c{word-spacing:-9.433600pt;}
.ws28{word-spacing:-9.390720pt;}
.ws0{word-spacing:-9.090560pt;}
.ws34{word-spacing:-0.832000pt;}
.ws19{word-spacing:-0.704000pt;}
.ws24{word-spacing:-0.576000pt;}
.ws9{word-spacing:-0.512000pt;}
.wse{word-spacing:-0.448000pt;}
.ws2d{word-spacing:-0.384000pt;}
.ws23{word-spacing:-0.320000pt;}
.ws2a{word-spacing:-0.256000pt;}
.ws47{word-spacing:-0.255305pt;}
.ws11{word-spacing:-0.235520pt;}
.wsf{word-spacing:-0.192000pt;}
.ws43{word-spacing:-0.191478pt;}
.ws18{word-spacing:-0.128000pt;}
.wsd{word-spacing:-0.064000pt;}
.ws8{word-spacing:0.000000pt;}
.ws46{word-spacing:0.042764pt;}
.ws44{word-spacing:0.063826pt;}
.ws20{word-spacing:0.064000pt;}
.ws1a{word-spacing:0.128000pt;}
.ws45{word-spacing:0.128291pt;}
.ws57{word-spacing:0.176640pt;}
.wsa{word-spacing:0.192000pt;}
.ws48{word-spacing:0.213819pt;}
.ws33{word-spacing:0.256000pt;}
.ws1b{word-spacing:0.320000pt;}
.ws56{word-spacing:0.353280pt;}
.ws21{word-spacing:0.384000pt;}
.wsc{word-spacing:0.448000pt;}
.ws17{word-spacing:0.512000pt;}
.ws10{word-spacing:0.576000pt;}
.wsb{word-spacing:0.704000pt;}
.ws25{word-spacing:0.768000pt;}
.ws22{word-spacing:0.832000pt;}
.ws29{word-spacing:0.960000pt;}
.ws30{word-spacing:1.024000pt;}
.ws2f{word-spacing:1.088000pt;}
.ws3c{word-spacing:1.344000pt;}
.ws3b{word-spacing:1.856000pt;}
.ws3d{word-spacing:2.112000pt;}
.ws58{word-spacing:2.688000pt;}
.ws59{word-spacing:3.392000pt;}
.ws5a{word-spacing:4.032000pt;}
.ws49{word-spacing:4.672000pt;}
.ws4a{word-spacing:7.168000pt;}
.ws3f{word-spacing:12.736000pt;}
.ws3e{word-spacing:12.992000pt;}
.ws51{word-spacing:15.552000pt;}
.ws4e{word-spacing:28.352000pt;}
.ws4c{word-spacing:31.424000pt;}
.ws42{word-spacing:53.230995pt;}
.ws4d{word-spacing:56.128000pt;}
.ws40{word-spacing:67.272745pt;}
.ws4f{word-spacing:71.360000pt;}
.ws50{word-spacing:99.776000pt;}
.ws41{word-spacing:110.036254pt;}
.ws4b{word-spacing:123.456000pt;}
._140{margin-left:-4089.740800pt;}
._129{margin-left:-4061.843200pt;}
._13b{margin-left:-3969.036800pt;}
._143{margin-left:-3353.177600pt;}
._11b{margin-left:-2784.320000pt;}
._115{margin-left:-2771.340800pt;}
._68{margin-left:-2770.259200pt;}
._e0{margin-left:-2769.254400pt;}
._f9{margin-left:-2767.513600pt;}
._90{margin-left:-2766.464000pt;}
._6c{margin-left:-2765.529600pt;}
._97{margin-left:-2763.955200pt;}
._c6{margin-left:-2761.881600pt;}
._be{margin-left:-2760.384000pt;}
._53{margin-left:-2758.528000pt;}
._bd{margin-left:-2757.260800pt;}
._99{margin-left:-2756.057600pt;}
._5c{margin-left:-2753.689600pt;}
._57{margin-left:-2751.232000pt;}
._56{margin-left:-2749.568000pt;}
._f6{margin-left:-2748.441600pt;}
._88{margin-left:-2747.417600pt;}
._a6{margin-left:-2744.896000pt;}
._55{margin-left:-2743.808000pt;}
._79{margin-left:-2742.284800pt;}
._4b{margin-left:-2740.608000pt;}
._5e{margin-left:-2738.636800pt;}
._89{margin-left:-2737.420800pt;}
._3f{margin-left:-2736.422400pt;}
._42{margin-left:-2734.668800pt;}
._10{margin-left:-2732.838400pt;}
._26{margin-left:-2731.699200pt;}
._34{margin-left:-2730.073600pt;}
._c5{margin-left:-2728.832000pt;}
._2f{margin-left:-2727.910400pt;}
._64{margin-left:-2726.425600pt;}
._44{margin-left:-2724.454400pt;}
._54{margin-left:-2723.404800pt;}
._b4{margin-left:-2721.856000pt;}
._62{margin-left:-2720.486400pt;}
._5{margin-left:-2717.529600pt;}
._93{margin-left:-2716.582400pt;}
._c{margin-left:-2715.392000pt;}
._4e{margin-left:-2713.408000pt;}
._52{margin-left:-2711.660160pt;}
._5f{margin-left:-2710.489600pt;}
._b0{margin-left:-2709.401600pt;}
._ba{margin-left:-2708.006400pt;}
._b{margin-left:-2706.867200pt;}
._8f{margin-left:-2705.817600pt;}
._17{margin-left:-2704.576000pt;}
._63{margin-left:-2703.244800pt;}
._65{margin-left:-2701.888000pt;}
._a4{margin-left:-2700.262400pt;}
._67{margin-left:-2698.905600pt;}
._c9{margin-left:-2697.408000pt;}
._70{margin-left:-2696.038400pt;}
._92{margin-left:-2694.144000pt;}
._35{margin-left:-2693.209600pt;}
._2c{margin-left:-2692.160000pt;}
._43{margin-left:-2691.104000pt;}
._7b{margin-left:-2689.241600pt;}
._a9{margin-left:-2688.204800pt;}
._16{margin-left:-2687.219200pt;}
._b8{margin-left:-2686.233600pt;}
._28{margin-left:-2683.059200pt;}
._9f{margin-left:-2681.472000pt;}
._d7{margin-left:-2680.243200pt;}
._7a{margin-left:-2678.809600pt;}
._30{margin-left:-2677.504000pt;}
._3{margin-left:-2674.752000pt;}
._29{margin-left:-2673.753600pt;}
._46{margin-left:-2672.204800pt;}
._4d{margin-left:-2671.244800pt;}
._23{margin-left:-2670.272000pt;}
._6{margin-left:-2668.608000pt;}
._e{margin-left:-2667.686400pt;}
._a8{margin-left:-2665.817600pt;}
._72{margin-left:-2664.153600pt;}
._1f{margin-left:-2663.180800pt;}
._d5{margin-left:-2661.952000pt;}
._6b{margin-left:-2660.902400pt;}
._a{margin-left:-2659.027200pt;}
._33{margin-left:-2656.793600pt;}
._9a{margin-left:-2655.014400pt;}
._24{margin-left:-2653.926400pt;}
._10d{margin-left:-2652.108800pt;}
._36{margin-left:-2651.148800pt;}
._b6{margin-left:-2649.536000pt;}
._df{margin-left:-2648.384000pt;}
._3a{margin-left:-2646.809600pt;}
._22{margin-left:-2645.440000pt;}
._8{margin-left:-2643.648000pt;}
._1a{margin-left:-2639.961600pt;}
._4{margin-left:-2638.848000pt;}
._c1{margin-left:-2637.952000pt;}
._4a{margin-left:-2636.480000pt;}
._98{margin-left:-2634.508800pt;}
._1e{margin-left:-2633.536000pt;}
._a5{margin-left:-2631.692800pt;}
._8a{margin-left:-2630.374400pt;}
._45{margin-left:-2628.902400pt;}
._f8{margin-left:-2624.486400pt;}
._32{margin-left:-2622.924800pt;}
._39{margin-left:-2621.440000pt;}
._1d{margin-left:-2619.980800pt;}
._ac{margin-left:-2617.612800pt;}
._27{margin-left:-2616.640000pt;}
._6a{margin-left:-2613.196800pt;}
._41{margin-left:-2611.302400pt;}
._d{margin-left:-2608.512000pt;}
._3b{margin-left:-2605.657600pt;}
._a1{margin-left:-2604.480000pt;}
._77{margin-left:-2601.702400pt;}
._cb{margin-left:-2599.232000pt;}
._bb{margin-left:-2594.496000pt;}
._78{margin-left:-2588.313600pt;}
._c8{margin-left:-2586.585600pt;}
._2e{margin-left:-2585.408000pt;}
._14{margin-left:-2583.436800pt;}
._7{margin-left:-2580.633600pt;}
._cf{margin-left:-2579.161600pt;}
._38{margin-left:-2578.086400pt;}
._13{margin-left:-2576.102400pt;}
._c2{margin-left:-2575.193600pt;}
._e4{margin-left:-2572.352000pt;}
._31{margin-left:-2570.329600pt;}
._47{margin-left:-2568.448000pt;}
._10f{margin-left:-2566.515200pt;}
._2a{margin-left:-2565.414400pt;}
._4c{margin-left:-2564.172800pt;}
._71{margin-left:-2561.536000pt;}
._e8{margin-left:-2558.988800pt;}
._9b{margin-left:-2556.288000pt;}
._9{margin-left:-2555.033600pt;}
._18{margin-left:-2549.516800pt;}
._11a{margin-left:-2546.304000pt;}
._102{margin-left:-2544.435200pt;}
._b5{margin-left:-2540.876800pt;}
._76{margin-left:-2538.252800pt;}
._f5{margin-left:-2535.308800pt;}
._110{margin-left:-2534.297600pt;}
._8c{margin-left:-2526.912000pt;}
._b1{margin-left:-2524.697600pt;}
._b3{margin-left:-2521.088000pt;}
._20{margin-left:-2516.646400pt;}
._2b{margin-left:-2515.212800pt;}
._7e{margin-left:-2510.489600pt;}
._40{margin-left:-2509.414400pt;}
._2d{margin-left:-2508.147200pt;}
._d3{margin-left:-2504.256000pt;}
._6d{margin-left:-2502.873600pt;}
._1b{margin-left:-2499.353600pt;}
._c3{margin-left:-2496.800000pt;}
._d0{margin-left:-2489.868800pt;}
._51{margin-left:-2488.256000pt;}
._91{margin-left:-2487.168000pt;}
._66{margin-left:-2485.836800pt;}
._21{margin-left:-2481.689600pt;}
._f0{margin-left:-2475.212800pt;}
._ef{margin-left:-2468.403200pt;}
._73{margin-left:-2462.656000pt;}
._37{margin-left:-2460.147200pt;}
._4f{margin-left:-2458.636800pt;}
._a2{margin-left:-2456.972800pt;}
._c4{margin-left:-2455.756800pt;}
._c0{margin-left:-2448.153600pt;}
._d9{margin-left:-2442.035200pt;}
._ca{margin-left:-2438.028800pt;}
._15{margin-left:-2430.758400pt;}
._cd{margin-left:-2424.678400pt;}
._ff{margin-left:-2423.129600pt;}
._5d{margin-left:-2414.144000pt;}
._1c{margin-left:-2404.288000pt;}
._bf{margin-left:-2391.372800pt;}
._10c{margin-left:-2351.091200pt;}
._e7{margin-left:-2332.864000pt;}
._e6{margin-left:-2291.392000pt;}
._87{margin-left:-2260.224000pt;}
._e9{margin-left:-2140.352000pt;}
._da{margin-left:-2116.185600pt;}
._139{margin-left:-2084.928000pt;}
._103{margin-left:-2023.257600pt;}
._83{margin-left:-2021.274240pt;}
._f{margin-left:-2005.734400pt;}
._86{margin-left:-2003.392000pt;}
._ec{margin-left:-1987.788800pt;}
._cc{margin-left:-1960.742400pt;}
._111{margin-left:-1949.440000pt;}
._fb{margin-left:-1947.686400pt;}
._de{margin-left:-1890.956800pt;}
._c7{margin-left:-1883.200000pt;}
._aa{margin-left:-1876.928000pt;}
._f2{margin-left:-1866.777600pt;}
._d4{margin-left:-1865.497600pt;}
._eb{margin-left:-1783.692800pt;}
._b9{margin-left:-1773.324800pt;}
._a0{margin-left:-1768.640000pt;}
._f4{margin-left:-1742.496000pt;}
._107{margin-left:-1692.864000pt;}
._fe{margin-left:-1654.003200pt;}
._10a{margin-left:-1651.520000pt;}
._5b{margin-left:-1636.057600pt;}
._58{margin-left:-1629.696000pt;}
._8b{margin-left:-1599.884800pt;}
._69{margin-left:-1595.456000pt;}
._6e{margin-left:-1584.908800pt;}
._104{margin-left:-1561.984000pt;}
._100{margin-left:-1545.638400pt;}
._f3{margin-left:-1538.086400pt;}
._b7{margin-left:-1527.168000pt;}
._50{margin-left:-1498.841600pt;}
._a3{margin-left:-1480.320000pt;}
._dd{margin-left:-1446.496000pt;}
._fd{margin-left:-1417.984000pt;}
._19{margin-left:-1411.392000pt;}
._ee{margin-left:-1405.401600pt;}
._101{margin-left:-1352.192000pt;}
._25{margin-left:-1340.992000pt;}
._10b{margin-left:-1330.009600pt;}
._bc{margin-left:-1325.094400pt;}
._142{margin-left:-1288.384000pt;}
._116{margin-left:-1263.641600pt;}
._db{margin-left:-1254.387200pt;}
._80{margin-left:-1248.153600pt;}
._e5{margin-left:-1245.798400pt;}
._96{margin-left:-1232.896000pt;}
._82{margin-left:-1222.297600pt;}
._ea{margin-left:-1204.595200pt;}
._84{margin-left:-1199.008640pt;}
._d6{margin-left:-1146.124800pt;}
._106{margin-left:-1115.929600pt;}
._60{margin-left:-1092.736000pt;}
._48{margin-left:-1086.540800pt;}
._85{margin-left:-1068.057600pt;}
._af{margin-left:-1059.660800pt;}
._8e{margin-left:-1052.108800pt;}
._ae{margin-left:-1037.465600pt;}
._7c{margin-left:-1030.028800pt;}
._b2{margin-left:-1028.416000pt;}
._113{margin-left:-968.704000pt;}
._9e{margin-left:-965.734400pt;}
._ab{margin-left:-964.608000pt;}
._fc{margin-left:-962.406400pt;}
._ed{margin-left:-961.075200pt;}
._e2{margin-left:-955.430400pt;}
._95{margin-left:-937.536000pt;}
._61{margin-left:-908.070400pt;}
._74{margin-left:-891.200000pt;}
._75{margin-left:-874.124800pt;}
._94{margin-left:-857.472000pt;}
._3d{margin-left:-826.508800pt;}
._d1{margin-left:-825.152000pt;}
._6f{margin-left:-821.516800pt;}
._108{margin-left:-815.296000pt;}
._118{margin-left:-804.249600pt;}
._7d{margin-left:-798.771200pt;}
._11c{margin-left:-790.016000pt;}
._105{margin-left:-777.868800pt;}
._d2{margin-left:-753.817600pt;}
._5a{margin-left:-744.576000pt;}
._3e{margin-left:-717.504000pt;}
._dc{margin-left:-710.464000pt;}
._ad{margin-left:-696.832000pt;}
._12a{margin-left:-636.928000pt;}
._59{margin-left:-632.832000pt;}
._135{margin-left:-620.352000pt;}
._10e{margin-left:-602.752000pt;}
._134{margin-left:-591.424000pt;}
._ce{margin-left:-579.776000pt;}
._81{margin-left:-577.728000pt;}
._e3{margin-left:-572.096000pt;}
._12{margin-left:-567.552000pt;}
._11{margin-left:-564.160000pt;}
._fa{margin-left:-560.448000pt;}
._49{margin-left:-558.464000pt;}
._e1{margin-left:-546.624000pt;}
._9d{margin-left:-526.540800pt;}
._132{margin-left:-525.248000pt;}
._133{margin-left:-520.448000pt;}
._137{margin-left:-516.556800pt;}
._f1{margin-left:-506.560000pt;}
._3c{margin-left:-497.600000pt;}
._138{margin-left:-491.904000pt;}
._11d{margin-left:-483.840000pt;}
._12d{margin-left:-479.872000pt;}
._12f{margin-left:-463.232000pt;}
._141{margin-left:-461.888000pt;}
._8d{margin-left:-449.856000pt;}
._d8{margin-left:-442.060800pt;}
._12e{margin-left:-425.792000pt;}
._7f{margin-left:-411.648000pt;}
._9c{margin-left:-403.968000pt;}
._130{margin-left:-398.464000pt;}
._2{margin-left:-394.342400pt;}
._a7{margin-left:-381.440000pt;}
._f7{margin-left:-374.272000pt;}
._136{margin-left:-316.032000pt;}
._109{margin-left:-311.872000pt;}
._12b{margin-left:-307.840000pt;}
._119{margin-left:-200.704000pt;}
._0{margin-left:-1.408000pt;}
._1{width:1.036800pt;}
._114{width:2.099200pt;}
._131{width:4.992000pt;}
._117{width:12.992000pt;}
._124{width:22.339147pt;}
._12c{width:28.428800pt;}
._127{width:33.189589pt;}
._13a{width:43.161600pt;}
._13d{width:74.432000pt;}
._13e{width:76.480000pt;}
._126{width:79.144405pt;}
._128{width:109.782017pt;}
._13c{width:111.360000pt;}
._125{width:119.994198pt;}
._120{width:133.396619pt;}
._13f{width:159.680000pt;}
._11e{width:164.289001pt;}
._123{width:227.862498pt;}
._122{width:241.901045pt;}
._11f{width:275.984734pt;}
._121{width:329.342848pt;}
._112{width:753.536000pt;}
.fs6{font-size:42.763733pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:63.826133pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:67.461923pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:4.000000pt;}
.y55{bottom:4.307467pt;}
.y57{bottom:4.307600pt;}
.y5c{bottom:4.307733pt;}
.y47{bottom:4.308000pt;}
.y4a{bottom:4.308133pt;}
.y4d{bottom:4.308267pt;}
.y59{bottom:4.308933pt;}
.y5b{bottom:4.309067pt;}
.y43{bottom:4.309200pt;}
.y2d{bottom:4.319867pt;}
.y2b{bottom:4.320000pt;}
.y51{bottom:4.468267pt;}
.y53{bottom:4.468400pt;}
.y76{bottom:4.480000pt;}
.y8e{bottom:4.800000pt;}
.y8f{bottom:5.280000pt;}
.yd3{bottom:6.080000pt;}
.ybe{bottom:6.240000pt;}
.y56{bottom:9.573200pt;}
.y5d{bottom:9.573467pt;}
.y48{bottom:9.573600pt;}
.y4b{bottom:9.573733pt;}
.y4c{bottom:9.573867pt;}
.y5a{bottom:9.574667pt;}
.y52{bottom:9.734000pt;}
.y6e{bottom:9.920000pt;}
.y95{bottom:10.560000pt;}
.y7d{bottom:23.840000pt;}
.y9f{bottom:24.000000pt;}
.y45{bottom:24.413467pt;}
.y4f{bottom:34.465600pt;}
.ye4{bottom:51.205760pt;}
.y23{bottom:51.352960pt;}
.y1{bottom:69.120000pt;}
.y28{bottom:94.240000pt;}
.y3e{bottom:101.760000pt;}
.y9b{bottom:113.440000pt;}
.y99{bottom:132.960000pt;}
.y27{bottom:133.280000pt;}
.y97{bottom:137.280000pt;}
.y3d{bottom:140.960000pt;}
.y9a{bottom:147.040000pt;}
.y96{bottom:156.800000pt;}
.y41{bottom:167.702933pt;}
.y98{bottom:172.000000pt;}
.y26{bottom:172.320000pt;}
.ybb{bottom:174.560000pt;}
.y3c{bottom:180.000000pt;}
.y94{bottom:192.320000pt;}
.y93{bottom:199.680000pt;}
.y91{bottom:200.000000pt;}
.yba{bottom:206.240000pt;}
.y25{bottom:211.520000pt;}
.y40{bottom:217.327733pt;}
.y92{bottom:218.720000pt;}
.y90{bottom:219.520000pt;}
.yb9{bottom:227.200000pt;}
.y3b{bottom:229.760000pt;}
.y8d{bottom:238.880000pt;}
.yb8{bottom:248.320000pt;}
.y24{bottom:250.560000pt;}
.y3a{bottom:250.720000pt;}
.yee{bottom:253.760000pt;}
.y8c{bottom:259.360000pt;}
.ycf{bottom:264.320000pt;}
.yb7{bottom:269.280000pt;}
.y39{bottom:271.840000pt;}
.ycd{bottom:278.720000pt;}
.y8b{bottom:278.880000pt;}
.yed{bottom:280.960000pt;}
.y87{bottom:282.720000pt;}
.yce{bottom:284.480000pt;}
.ye3{bottom:287.840000pt;}
.y22{bottom:289.600000pt;}
.yb6{bottom:290.400000pt;}
.y38{bottom:292.960000pt;}
.y8a{bottom:298.400000pt;}
.y86{bottom:302.240000pt;}
.ycc{bottom:304.800000pt;}
.ye2{bottom:308.800000pt;}
.yb5{bottom:311.520000pt;}
.y37{bottom:313.920000pt;}
.y89{bottom:317.920000pt;}
.ycb{bottom:324.960000pt;}
.y21{bottom:328.640000pt;}
.ye1{bottom:329.920000pt;}
.yb4{bottom:332.640000pt;}
.y88{bottom:337.440000pt;}
.yca{bottom:345.120000pt;}
.ye0{bottom:351.040000pt;}
.yb3{bottom:353.600000pt;}
.y85{bottom:357.600000pt;}
.y36{bottom:357.760000pt;}
.y3f{bottom:358.298667pt;}
.y4e{bottom:358.937333pt;}
.yc9{bottom:365.280000pt;}
.y20{bottom:367.680000pt;}
.yc5{bottom:369.600000pt;}
.y81{bottom:371.840000pt;}
.ydf{bottom:372.000000pt;}
.yb2{bottom:374.720000pt;}
.y84{bottom:377.120000pt;}
.y58{bottom:379.041333pt;}
.yc8{bottom:385.600000pt;}
.yf4{bottom:386.080000pt;}
.y80{bottom:391.360000pt;}
.yde{bottom:393.120000pt;}
.yb1{bottom:395.840000pt;}
.y83{bottom:396.800000pt;}
.y54{bottom:399.148000pt;}
.yc7{bottom:405.760000pt;}
.y1f{bottom:406.720000pt;}
.ydd{bottom:408.960000pt;}
.y7f{bottom:410.880000pt;}
.yf3{bottom:413.280000pt;}
.y82{bottom:416.320000pt;}
.yb0{bottom:416.960000pt;}
.y50{bottom:419.252000pt;}
.yc6{bottom:425.920000pt;}
.ydc{bottom:428.480000pt;}
.y7e{bottom:436.480000pt;}
.yaf{bottom:437.920000pt;}
.y44{bottom:439.517333pt;}
.y1e{bottom:445.760000pt;}
.yc4{bottom:446.080000pt;}
.ydb{bottom:448.000000pt;}
.y7b{bottom:450.560000pt;}
.yae{bottom:459.040000pt;}
.y49{bottom:459.622667pt;}
.yc3{bottom:466.240000pt;}
.yda{bottom:467.520000pt;}
.y7a{bottom:470.080000pt;}
.y7c{bottom:475.520000pt;}
.y46{bottom:479.728000pt;}
.yad{bottom:480.160000pt;}
.yc0{bottom:480.800000pt;}
.y1d{bottom:484.960000pt;}
.yc2{bottom:486.560000pt;}
.yd9{bottom:487.040000pt;}
.y79{bottom:489.600000pt;}
.y42{bottom:499.832000pt;}
.yac{bottom:501.280000pt;}
.yc1{bottom:506.720000pt;}
.y78{bottom:515.200000pt;}
.yab{bottom:522.240000pt;}
.y1c{bottom:524.000000pt;}
.yd8{bottom:526.240000pt;}
.ybf{bottom:526.880000pt;}
.y9d{bottom:533.600000pt;}
.y77{bottom:534.720000pt;}
.ybc{bottom:543.040000pt;}
.yaa{bottom:543.360000pt;}
.yd7{bottom:545.760000pt;}
.ybd{bottom:547.040000pt;}
.y73{bottom:548.800000pt;}
.y75{bottom:554.240000pt;}
.y35{bottom:557.600000pt;}
.y1b{bottom:563.040000pt;}
.ya9{bottom:564.480000pt;}
.yd5{bottom:565.280000pt;}
.yec{bottom:570.080000pt;}
.y74{bottom:573.920000pt;}
.y9c{bottom:583.040000pt;}
.yd4{bottom:585.440000pt;}
.yeb{bottom:591.040000pt;}
.y72{bottom:594.080000pt;}
.y34{bottom:596.640000pt;}
.ya5{bottom:599.040000pt;}
.y10{bottom:600.717733pt;}
.yd1{bottom:601.600000pt;}
.y13{bottom:602.080000pt;}
.yd2{bottom:605.600000pt;}
.yea{bottom:612.160000pt;}
.ya6{bottom:613.120000pt;}
.y71{bottom:613.600000pt;}
.ya8{bottom:614.240000pt;}
.y6f{bottom:617.920000pt;}
.ya2{bottom:623.520000pt;}
.y70{bottom:633.120000pt;}
.y33{bottom:635.680000pt;}
.ya4{bottom:638.720000pt;}
.y12{bottom:641.120000pt;}
.ya1{bottom:643.040000pt;}
.yd{bottom:651.028267pt;}
.y6d{bottom:653.280000pt;}
.ya3{bottom:658.880000pt;}
.y6c{bottom:660.320000pt;}
.ye9{bottom:660.640000pt;}
.yd0{bottom:663.840000pt;}
.y6a{bottom:670.240000pt;}
.y32{bottom:674.880000pt;}
.y6b{bottom:678.400000pt;}
.yf2{bottom:678.560000pt;}
.y9e{bottom:679.040000pt;}
.y11{bottom:680.160000pt;}
.yb{bottom:684.788267pt;}
.ya0{bottom:693.120000pt;}
.y31{bottom:695.840000pt;}
.y68{bottom:698.560000pt;}
.yf1{bottom:699.520000pt;}
.ya7{bottom:703.040000pt;}
.y30{bottom:716.960000pt;}
.y69{bottom:718.720000pt;}
.y1a{bottom:719.200000pt;}
.yf{bottom:719.200640pt;}
.yf0{bottom:726.720000pt;}
.y9{bottom:729.108267pt;}
.y2f{bottom:738.080000pt;}
.y2e{bottom:753.920000pt;}
.ye{bottom:758.400000pt;}
.y7{bottom:766.124133pt;}
.y2c{bottom:773.440000pt;}
.y2a{bottom:793.600000pt;}
.yc{bottom:797.440000pt;}
.y5{bottom:810.441893pt;}
.y67{bottom:814.560000pt;}
.y66{bottom:834.720000pt;}
.ya{bottom:836.480000pt;}
.y4{bottom:844.204133pt;}
.y63{bottom:849.120000pt;}
.y65{bottom:854.880000pt;}
.y64{bottom:875.040000pt;}
.y8{bottom:875.520000pt;}
.y29{bottom:875.680000pt;}
.y3{bottom:883.244133pt;}
.y62{bottom:895.360000pt;}
.y6{bottom:914.560000pt;}
.y61{bottom:915.520000pt;}
.y5f{bottom:919.840000pt;}
.y2{bottom:922.444133pt;}
.y60{bottom:935.680000pt;}
.ye8{bottom:949.760000pt;}
.y19{bottom:953.600000pt;}
.y5e{bottom:955.840000pt;}
.ye7{bottom:970.720000pt;}
.ye6{bottom:991.840000pt;}
.yef{bottom:992.000000pt;}
.y18{bottom:992.640000pt;}
.ye5{bottom:1012.960000pt;}
.y17{bottom:1031.840000pt;}
.y16{bottom:1050.743200pt;}
.y15{bottom:1066.743200pt;}
.y14{bottom:1082.742667pt;}
.h13{height:19.466667pt;}
.hf{height:19.468000pt;}
.hc{height:19.518667pt;}
.ha{height:19.520000pt;}
.h15{height:19.626667pt;}
.h1a{height:19.680000pt;}
.h1d{height:20.478667pt;}
.h21{height:23.040000pt;}
.h20{height:23.200000pt;}
.h19{height:25.120000pt;}
.h1e{height:25.758667pt;}
.h12{height:35.267552pt;}
.h5{height:35.363437pt;}
.h8{height:38.281250pt;}
.h7{height:38.283383pt;}
.h1b{height:39.040000pt;}
.h1c{height:39.041333pt;}
.h1f{height:39.198667pt;}
.h18{height:39.680000pt;}
.h22{height:40.940000pt;}
.h10{height:44.379108pt;}
.h3{height:44.500000pt;}
.h9{height:44.963635pt;}
.h2{height:48.558750pt;}
.he{height:52.637861pt;}
.h6{height:52.781250pt;}
.h4{height:56.483438pt;}
.hb{height:56.483971pt;}
.h11{height:59.678667pt;}
.h14{height:79.942667pt;}
.hd{height:164.741333pt;}
.h16{height:793.760000pt;}
.h17{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:28.320000pt;}
.w29{width:37.280000pt;}
.w2e{width:39.840000pt;}
.w36{width:47.200000pt;}
.wc{width:49.276000pt;}
.w13{width:49.440000pt;}
.w26{width:50.240000pt;}
.w2b{width:54.080000pt;}
.w2a{width:54.240000pt;}
.w2f{width:55.520000pt;}
.w2d{width:62.238667pt;}
.w2c{width:62.400000pt;}
.w30{width:63.840000pt;}
.w33{width:66.080000pt;}
.w37{width:66.240000pt;}
.w10{width:67.454667pt;}
.w17{width:67.841333pt;}
.wf{width:68.410667pt;}
.wd{width:68.570667pt;}
.we{width:68.572000pt;}
.w15{width:68.640000pt;}
.w14{width:68.800000pt;}
.w16{width:68.801333pt;}
.w27{width:71.680000pt;}
.w31{width:72.000000pt;}
.wb{width:73.354667pt;}
.w8{width:73.600000pt;}
.w12{width:73.601333pt;}
.w7{width:73.920000pt;}
.w1c{width:75.520000pt;}
.w34{width:75.680000pt;}
.w21{width:84.960000pt;}
.w20{width:85.120000pt;}
.w4{width:92.321333pt;}
.w3{width:92.478667pt;}
.w23{width:94.560000pt;}
.w5{width:95.200000pt;}
.w6{width:95.360000pt;}
.wa{width:100.782667pt;}
.w11{width:101.280000pt;}
.w22{width:113.441333pt;}
.w28{width:117.918667pt;}
.w2{width:119.681333pt;}
.w25{width:121.920000pt;}
.w32{width:141.761333pt;}
.w1a{width:150.881333pt;}
.w35{width:179.520000pt;}
.w1b{width:180.000000pt;}
.w24{width:184.800000pt;}
.w1d{width:283.520000pt;}
.w1f{width:340.158667pt;}
.w9{width:584.765333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w18{width:1122.560000pt;}
.w19{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x23{left:7.176533pt;}
.x4c{left:8.480000pt;}
.x63{left:9.600000pt;}
.x4e{left:10.560000pt;}
.x1c{left:12.000000pt;}
.x25{left:13.396133pt;}
.x21{left:14.560000pt;}
.x6c{left:15.520000pt;}
.x13{left:16.480000pt;}
.x32{left:17.542000pt;}
.x1e{left:18.560000pt;}
.x2e{left:19.455467pt;}
.x27{left:20.411600pt;}
.x1a{left:22.240000pt;}
.x29{left:24.080000pt;}
.x67{left:25.120000pt;}
.x54{left:26.080000pt;}
.x48{left:27.520000pt;}
.x1d{left:28.640000pt;}
.x34{left:30.299200pt;}
.x20{left:31.200000pt;}
.x2f{left:32.532267pt;}
.x17{left:33.440000pt;}
.x59{left:34.720000pt;}
.xc{left:36.480000pt;}
.x41{left:37.760000pt;}
.x1f{left:39.680000pt;}
.x65{left:40.640000pt;}
.x6{left:44.000000pt;}
.x3e{left:45.120000pt;}
.x30{left:46.246000pt;}
.x64{left:47.520000pt;}
.x31{left:50.710933pt;}
.x33{left:53.420933pt;}
.xd{left:54.697333pt;}
.x6a{left:61.760000pt;}
.x8{left:63.627867pt;}
.x43{left:66.400000pt;}
.x74{left:68.640000pt;}
.xb{left:69.659467pt;}
.x73{left:73.440000pt;}
.xe{left:75.520000pt;}
.x51{left:78.720000pt;}
.x3{left:84.662267pt;}
.x5{left:92.182267pt;}
.x10{left:94.400000pt;}
.x3c{left:105.920000pt;}
.x76{left:113.440000pt;}
.xa{left:115.307867pt;}
.x69{left:117.120000pt;}
.x2{left:123.222267pt;}
.x4d{left:164.480000pt;}
.x3f{left:169.280000pt;}
.x4f{left:171.680000pt;}
.x35{left:176.800000pt;}
.x58{left:180.160000pt;}
.x24{left:185.790667pt;}
.x14{left:195.200000pt;}
.x55{left:196.160000pt;}
.x62{left:200.800000pt;}
.x9{left:220.587867pt;}
.x7{left:234.262267pt;}
.x36{left:250.400000pt;}
.x26{left:259.146667pt;}
.x15{left:287.680000pt;}
.x6b{left:296.640000pt;}
.x37{left:299.840000pt;}
.x28{left:308.421333pt;}
.x4{left:339.702267pt;}
.x6d{left:343.840000pt;}
.x40{left:349.280000pt;}
.x52{left:359.840000pt;}
.x38{left:368.640000pt;}
.x2a{left:376.992000pt;}
.x16{left:380.000000pt;}
.x5a{left:404.800000pt;}
.x6e{left:419.520000pt;}
.x42{left:424.800000pt;}
.x39{left:437.280000pt;}
.x5b{left:442.080000pt;}
.x78{left:443.360000pt;}
.x2b{left:445.564000pt;}
.x18{left:475.200000pt;}
.x11{left:486.080000pt;}
.x12{left:494.880000pt;}
.x5c{left:496.320000pt;}
.x3a{left:506.080000pt;}
.x46{left:509.920000pt;}
.x2c{left:513.974667pt;}
.x5d{left:550.400000pt;}
.x6f{left:551.840000pt;}
.x19{left:570.560000pt;}
.x3b{left:574.720000pt;}
.x2d{left:582.546667pt;}
.x47{left:594.880000pt;}
.x5e{left:612.800000pt;}
.x70{left:627.360000pt;}
.x1b{left:644.480000pt;}
.x77{left:656.160000pt;}
.x22{left:661.920000pt;}
.x75{left:665.440000pt;}
.x5f{left:675.040000pt;}
.xf{left:703.200000pt;}
.x44{left:708.320000pt;}
.x1{left:710.720000pt;}
.x71{left:712.480000pt;}
.x60{left:714.880000pt;}
.x45{left:736.640000pt;}
.x50{left:756.800000pt;}
.x53{left:760.800000pt;}
.x61{left:770.400000pt;}
.x72{left:778.560000pt;}
.x49{left:831.200000pt;}
.x56{left:834.240000pt;}
.x66{left:863.680000pt;}
.x57{left:884.480000pt;}
.x4a{left:916.320000pt;}
.x68{left:929.760000pt;}
.x4b{left:1001.280000pt;}
.x3d{left:1032.000000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  