
    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_0e5ad2dd3a6560fb50053c68.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_5fbaa3ea3b1cb13e76db901e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_e97a9b3e81d1579babd27872.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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);}
.v4{vertical-align:-68.760000px;}
.v2{vertical-align:-27.000000px;}
.v5{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.000000px;}
.v1{vertical-align:29.880000px;}
.ls5d{letter-spacing:-1.082160px;}
.ls1e{letter-spacing:-0.661320px;}
.lse{letter-spacing:-0.480960px;}
.ls12{letter-spacing:-0.420840px;}
.ls64{letter-spacing:-0.360720px;}
.ls13{letter-spacing:-0.349920px;}
.lsf{letter-spacing:-0.300600px;}
.ls11{letter-spacing:-0.240480px;}
.ls34{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.180360px;}
.ls33{letter-spacing:-0.162000px;}
.lsc{letter-spacing:-0.120240px;}
.ls53{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.065880px;}
.lsd{letter-spacing:-0.060120px;}
.lsb{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.060120px;}
.ls0{letter-spacing:0.065880px;}
.ls35{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.120240px;}
.ls5c{letter-spacing:0.140040px;}
.ls43{letter-spacing:0.153360px;}
.ls2e{letter-spacing:0.162000px;}
.ls58{letter-spacing:0.166680px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.180360px;}
.ls1{letter-spacing:0.197640px;}
.ls37{letter-spacing:0.204120px;}
.ls3a{letter-spacing:0.240480px;}
.ls3f{letter-spacing:0.300600px;}
.ls3b{letter-spacing:0.360720px;}
.ls59{letter-spacing:0.388800px;}
.ls19{letter-spacing:0.420840px;}
.ls42{letter-spacing:0.480960px;}
.ls47{letter-spacing:0.601200px;}
.ls48{letter-spacing:0.661320px;}
.ls5e{letter-spacing:0.721440px;}
.ls7{letter-spacing:0.781560px;}
.ls63{letter-spacing:0.841680px;}
.ls52{letter-spacing:0.901800px;}
.ls1a{letter-spacing:0.961920px;}
.ls54{letter-spacing:1.082160px;}
.ls9{letter-spacing:1.142280px;}
.ls4c{letter-spacing:1.202400px;}
.ls55{letter-spacing:1.442880px;}
.ls5{letter-spacing:1.503000px;}
.ls5f{letter-spacing:1.803600px;}
.ls32{letter-spacing:1.863720px;}
.ls16{letter-spacing:2.224440px;}
.ls22{letter-spacing:2.284560px;}
.ls1c{letter-spacing:2.585160px;}
.ls2c{letter-spacing:2.765520px;}
.ls1d{letter-spacing:2.945880px;}
.ls4a{letter-spacing:3.006000px;}
.ls25{letter-spacing:3.306600px;}
.ls31{letter-spacing:3.667320px;}
.ls24{letter-spacing:4.028040px;}
.ls23{letter-spacing:4.569120px;}
.ls2a{letter-spacing:4.749480px;}
.ls3c{letter-spacing:5.110200px;}
.ls20{letter-spacing:5.470920px;}
.ls2f{letter-spacing:5.831640px;}
.ls4f{letter-spacing:6.072120px;}
.ls44{letter-spacing:6.192360px;}
.ls41{letter-spacing:6.553080px;}
.ls1b{letter-spacing:6.913800px;}
.ls50{letter-spacing:7.274520px;}
.ls39{letter-spacing:7.454880px;}
.ls49{letter-spacing:7.995960px;}
.ls30{letter-spacing:8.356680px;}
.ls40{letter-spacing:8.717400px;}
.ls2d{letter-spacing:9.078120px;}
.ls5a{letter-spacing:9.438840px;}
.ls3d{letter-spacing:9.559080px;}
.ls38{letter-spacing:9.799560px;}
.ls36{letter-spacing:9.859680px;}
.ls2b{letter-spacing:10.160280px;}
.ls21{letter-spacing:10.521000px;}
.ls62{letter-spacing:10.581120px;}
.ls8{letter-spacing:11.242440px;}
.ls60{letter-spacing:11.603160px;}
.ls45{letter-spacing:11.963880px;}
.ls46{letter-spacing:12.324600px;}
.ls51{letter-spacing:12.685320px;}
.ls4b{letter-spacing:13.406760px;}
.ls57{letter-spacing:13.767480px;}
.ls56{letter-spacing:14.488920px;}
.ls15{letter-spacing:15.510960px;}
.ls14{letter-spacing:15.571080px;}
.ls18{letter-spacing:15.931800px;}
.ls17{letter-spacing:16.292520px;}
.ls26{letter-spacing:18.456840px;}
.ls61{letter-spacing:19.178280px;}
.ls4d{letter-spacing:19.539000px;}
.ls27{letter-spacing:19.899720px;}
.ls28{letter-spacing:20.260440px;}
.ls29{letter-spacing:20.320560px;}
.ls5b{letter-spacing:21.342600px;}
.ls4e{letter-spacing:21.703320px;}
.ls3e{letter-spacing:25.310520px;}
.ls65{letter-spacing:33.907680px;}
.ls4{letter-spacing:34.629120px;}
.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;}
}
.ws0{word-spacing:-16.404120px;}
.ws28{word-spacing:-15.210360px;}
.ws8{word-spacing:-15.150240px;}
.ws27{word-spacing:-15.090120px;}
.ws2{word-spacing:-15.030000px;}
.ws3{word-spacing:-14.969880px;}
.ws26{word-spacing:-14.909760px;}
.ws7{word-spacing:-14.849640px;}
.wsab{word-spacing:-14.789520px;}
.ws6{word-spacing:-14.729400px;}
.wsf2{word-spacing:-14.669280px;}
.ws46{word-spacing:-14.609160px;}
.ws4{word-spacing:-14.549040px;}
.ws25{word-spacing:-14.368680px;}
.ws7a{word-spacing:-13.662000px;}
.ws7b{word-spacing:-13.608000px;}
.ws7c{word-spacing:-13.500000px;}
.wsbf{word-spacing:-13.392000px;}
.wsc0{word-spacing:-13.338000px;}
.ws1{word-spacing:-10.530000px;}
.ws5{word-spacing:-9.720000px;}
.ws9{word-spacing:-9.370080px;}
.wsd{word-spacing:-0.420840px;}
.wse{word-spacing:-0.360720px;}
.ws56{word-spacing:-0.300600px;}
.ws17{word-spacing:-0.180360px;}
.ws84{word-spacing:-0.162000px;}
.ws1a{word-spacing:-0.120240px;}
.wsc{word-spacing:-0.065880px;}
.ws11{word-spacing:-0.060120px;}
.wsb{word-spacing:0.000000px;}
.ws6b{word-spacing:0.060120px;}
.wsf{word-spacing:0.120240px;}
.wsa{word-spacing:0.131760px;}
.ws83{word-spacing:0.162000px;}
.ws12{word-spacing:0.180360px;}
.ws86{word-spacing:0.216000px;}
.ws10{word-spacing:0.240480px;}
.wsc3{word-spacing:0.270000px;}
.ws14{word-spacing:0.300600px;}
.ws85{word-spacing:0.324000px;}
.wsc8{word-spacing:0.349920px;}
.ws13{word-spacing:0.360720px;}
.ws1e{word-spacing:0.420840px;}
.ws8a{word-spacing:0.541080px;}
.wsc2{word-spacing:0.601200px;}
.ws34{word-spacing:0.661320px;}
.ws89{word-spacing:0.721440px;}
.ws4f{word-spacing:0.901800px;}
.ws50{word-spacing:0.961920px;}
.ws1b{word-spacing:1.022040px;}
.wsb7{word-spacing:1.082160px;}
.ws1f{word-spacing:1.262520px;}
.ws20{word-spacing:1.322640px;}
.wsb6{word-spacing:1.382760px;}
.wse1{word-spacing:1.442880px;}
.ws66{word-spacing:1.563120px;}
.ws67{word-spacing:1.623240px;}
.ws16{word-spacing:1.683360px;}
.ws57{word-spacing:1.743480px;}
.ws19{word-spacing:1.923840px;}
.ws18{word-spacing:1.983960px;}
.ws2c{word-spacing:2.044080px;}
.wsa5{word-spacing:2.104200px;}
.ws2e{word-spacing:2.284560px;}
.ws2d{word-spacing:2.344680px;}
.ws4c{word-spacing:2.404800px;}
.ws5f{word-spacing:2.464920px;}
.ws4b{word-spacing:2.585160px;}
.ws4a{word-spacing:2.645280px;}
.ws3d{word-spacing:2.705400px;}
.ws3e{word-spacing:2.765520px;}
.ws78{word-spacing:2.825640px;}
.ws79{word-spacing:3.006000px;}
.ws3f{word-spacing:3.066120px;}
.ws3c{word-spacing:3.126240px;}
.ws55{word-spacing:3.186360px;}
.ws23{word-spacing:3.366720px;}
.ws22{word-spacing:3.426840px;}
.ws6f{word-spacing:3.486960px;}
.wsdc{word-spacing:3.547080px;}
.wsdd{word-spacing:3.667320px;}
.ws54{word-spacing:3.727440px;}
.ws62{word-spacing:3.787560px;}
.ws5e{word-spacing:3.847680px;}
.ws8e{word-spacing:3.907800px;}
.ws88{word-spacing:4.088160px;}
.ws5d{word-spacing:4.148280px;}
.ws59{word-spacing:4.208400px;}
.wsf4{word-spacing:4.268520px;}
.ws58{word-spacing:4.448880px;}
.ws98{word-spacing:4.509000px;}
.ws5a{word-spacing:4.569120px;}
.ws8f{word-spacing:4.629240px;}
.ws95{word-spacing:4.809600px;}
.ws90{word-spacing:4.869720px;}
.ws6e{word-spacing:4.929840px;}
.ws6d{word-spacing:4.989960px;}
.ws99{word-spacing:5.110200px;}
.ws33{word-spacing:5.170320px;}
.ws6c{word-spacing:5.230440px;}
.ws2f{word-spacing:5.290560px;}
.ws51{word-spacing:5.350680px;}
.ws53{word-spacing:5.531040px;}
.ws47{word-spacing:5.591160px;}
.ws71{word-spacing:5.651280px;}
.ws52{word-spacing:5.711400px;}
.wse2{word-spacing:5.831640px;}
.ws72{word-spacing:5.891760px;}
.ws70{word-spacing:5.951880px;}
.ws9d{word-spacing:6.012000px;}
.wsa6{word-spacing:6.252480px;}
.wsaa{word-spacing:6.312600px;}
.ws9e{word-spacing:6.372720px;}
.wsad{word-spacing:6.432840px;}
.wsa7{word-spacing:6.613200px;}
.ws96{word-spacing:6.673320px;}
.ws3b{word-spacing:6.733440px;}
.ws45{word-spacing:6.793560px;}
.wsb1{word-spacing:6.973920px;}
.ws61{word-spacing:7.034040px;}
.ws39{word-spacing:7.094160px;}
.wsc9{word-spacing:7.154280px;}
.ws44{word-spacing:7.334640px;}
.ws92{word-spacing:7.394760px;}
.ws93{word-spacing:7.454880px;}
.wsa2{word-spacing:7.515000px;}
.ws94{word-spacing:7.695360px;}
.wsa1{word-spacing:7.755480px;}
.ws68{word-spacing:7.815600px;}
.wsee{word-spacing:7.875720px;}
.ws87{word-spacing:8.056080px;}
.wsa4{word-spacing:8.116200px;}
.ws21{word-spacing:8.176320px;}
.wsda{word-spacing:8.236440px;}
.ws7e{word-spacing:8.416800px;}
.ws7f{word-spacing:8.537040px;}
.wsdb{word-spacing:8.597160px;}
.ws9a{word-spacing:8.777520px;}
.wsd8{word-spacing:8.837640px;}
.ws82{word-spacing:8.897760px;}
.wsd9{word-spacing:8.957880px;}
.ws80{word-spacing:9.138240px;}
.ws81{word-spacing:9.198360px;}
.ws24{word-spacing:9.258480px;}
.wscf{word-spacing:9.318600px;}
.wsc4{word-spacing:9.498960px;}
.wsc1{word-spacing:9.559080px;}
.ws35{word-spacing:9.619200px;}
.ws42{word-spacing:9.679320px;}
.ws41{word-spacing:9.859680px;}
.ws43{word-spacing:9.919800px;}
.ws36{word-spacing:9.979920px;}
.ws76{word-spacing:10.040040px;}
.ws77{word-spacing:10.220400px;}
.ws3a{word-spacing:10.280520px;}
.ws37{word-spacing:10.340640px;}
.wse9{word-spacing:10.400760px;}
.ws38{word-spacing:10.641240px;}
.ws1d{word-spacing:10.701360px;}
.wsdf{word-spacing:10.761480px;}
.wsf6{word-spacing:11.001960px;}
.ws1c{word-spacing:11.062080px;}
.wsde{word-spacing:11.122200px;}
.wsa3{word-spacing:11.302560px;}
.wsd1{word-spacing:11.362680px;}
.ws75{word-spacing:11.422800px;}
.ws97{word-spacing:11.663280px;}
.ws74{word-spacing:11.723400px;}
.ws73{word-spacing:11.783520px;}
.wscb{word-spacing:11.843640px;}
.wsa8{word-spacing:12.024000px;}
.wsa9{word-spacing:12.084120px;}
.wsac{word-spacing:12.144240px;}
.wsae{word-spacing:12.204360px;}
.ws60{word-spacing:12.384720px;}
.wsaf{word-spacing:12.444840px;}
.ws40{word-spacing:12.504960px;}
.wsa0{word-spacing:12.865680px;}
.ws9f{word-spacing:13.106160px;}
.wsca{word-spacing:13.166280px;}
.wsb4{word-spacing:13.226400px;}
.wsb3{word-spacing:13.527000px;}
.ws49{word-spacing:13.947840px;}
.ws5c{word-spacing:14.007960px;}
.ws5b{word-spacing:14.188320px;}
.ws48{word-spacing:14.248440px;}
.wsc6{word-spacing:14.308560px;}
.wsd0{word-spacing:14.549040px;}
.wsc5{word-spacing:14.609160px;}
.wsce{word-spacing:14.669280px;}
.wscc{word-spacing:14.969880px;}
.wse4{word-spacing:15.030000px;}
.wse3{word-spacing:15.090120px;}
.wsba{word-spacing:15.330600px;}
.ws2b{word-spacing:15.390720px;}
.ws2a{word-spacing:15.631200px;}
.ws29{word-spacing:15.691320px;}
.wsf5{word-spacing:15.751440px;}
.wsb5{word-spacing:15.991920px;}
.ws31{word-spacing:16.052040px;}
.wsea{word-spacing:16.112160px;}
.ws30{word-spacing:16.352640px;}
.ws32{word-spacing:16.412760px;}
.wsf3{word-spacing:16.472880px;}
.wsf0{word-spacing:16.533000px;}
.wsb2{word-spacing:16.713360px;}
.ws7d{word-spacing:16.833600px;}
.wse0{word-spacing:16.893720px;}
.wsef{word-spacing:17.134200px;}
.wsf1{word-spacing:17.194320px;}
.wse5{word-spacing:17.434800px;}
.wse6{word-spacing:17.555040px;}
.wsd6{word-spacing:17.915760px;}
.wsd7{word-spacing:18.156240px;}
.ws64{word-spacing:18.276480px;}
.ws63{word-spacing:18.516960px;}
.ws65{word-spacing:18.577080px;}
.wse7{word-spacing:18.637200px;}
.wse8{word-spacing:18.877680px;}
.wsd5{word-spacing:19.238400px;}
.wsd4{word-spacing:19.298520px;}
.wsb9{word-spacing:19.358640px;}
.wsb8{word-spacing:19.599120px;}
.ws6a{word-spacing:20.080080px;}
.ws15{word-spacing:20.140200px;}
.ws69{word-spacing:20.320560px;}
.ws91{word-spacing:20.440800px;}
.ws8d{word-spacing:20.801520px;}
.wsb0{word-spacing:20.861640px;}
.ws8c{word-spacing:21.042000px;}
.wsbe{word-spacing:21.402720px;}
.wsbd{word-spacing:21.522960px;}
.wsbb{word-spacing:21.583080px;}
.wsc7{word-spacing:21.763440px;}
.wsbc{word-spacing:21.883680px;}
.wscd{word-spacing:22.124160px;}
.wsd3{word-spacing:23.206320px;}
.wsd2{word-spacing:23.326560px;}
.ws9b{word-spacing:25.370640px;}
.ws9c{word-spacing:25.430760px;}
.wsed{word-spacing:25.490880px;}
.wseb{word-spacing:25.551000px;}
.wsec{word-spacing:25.851600px;}
.ws8b{word-spacing:26.212320px;}
.wsf7{word-spacing:33.727320px;}
.ws4e{word-spacing:36.973800px;}
.ws4d{word-spacing:37.334520px;}
._3e{margin-left:-2772.374400px;}
._7d{margin-left:-2769.165720px;}
._40{margin-left:-2767.925520px;}
._e{margin-left:-2765.821320px;}
._9d{margin-left:-2764.258200px;}
._89{margin-left:-2762.875440px;}
._2a{margin-left:-2761.071840px;}
._4d{margin-left:-2759.689080px;}
._21{margin-left:-2758.667040px;}
._31{margin-left:-2757.615840px;}
._1d{margin-left:-2755.939320px;}
._12{margin-left:-2754.338400px;}
._1e{margin-left:-2752.775280px;}
._1c{margin-left:-2750.490720px;}
._20{margin-left:-2748.838320px;}
._10{margin-left:-2747.364480px;}
._f{margin-left:-2745.876960px;}
._3f{margin-left:-2744.779320px;}
._42{margin-left:-2743.470000px;}
._39{margin-left:-2742.390000px;}
._4a{margin-left:-2735.225280px;}
._32{margin-left:-2731.958280px;}
._3a{margin-left:-2730.688920px;}
._9b{margin-left:-2728.296000px;}
._15{margin-left:-2726.672760px;}
._5f{margin-left:-2725.252200px;}
._25{margin-left:-2723.606640px;}
._63{margin-left:-2722.539960px;}
._48{margin-left:-2721.103920px;}
._3b{margin-left:-2719.857240px;}
._33{margin-left:-2718.699120px;}
._2e{margin-left:-2717.376480px;}
._36{margin-left:-2715.924960px;}
._18{margin-left:-2714.851440px;}
._26{margin-left:-2713.446360px;}
._4b{margin-left:-2712.025800px;}
._17{margin-left:-2711.003760px;}
._23{margin-left:-2709.545400px;}
._2c{margin-left:-2708.190000px;}
._5a{margin-left:-2706.750000px;}
._59{margin-left:-2703.514680px;}
._74{margin-left:-2696.334480px;}
._4f{margin-left:-2694.651120px;}
._86{margin-left:-2681.871480px;}
._1{margin-left:-2651.458680px;}
._19{margin-left:-2648.539080px;}
._a1{margin-left:-2600.927640px;}
._80{margin-left:-2570.623560px;}
._a3{margin-left:-2563.146360px;}
._99{margin-left:-2554.090560px;}
._5c{margin-left:-2524.150800px;}
._72{margin-left:-2520.014760px;}
._50{margin-left:-2495.888640px;}
._94{margin-left:-2483.107920px;}
._a9{margin-left:-2437.220880px;}
._bf{margin-left:-2421.371520px;}
._5{margin-left:-2407.820400px;}
._2d{margin-left:-2390.504040px;}
._70{margin-left:-2385.428400px;}
._ab{margin-left:-2382.436080px;}
._71{margin-left:-2375.762400px;}
._90{margin-left:-2363.618520px;}
._7a{margin-left:-2357.486280px;}
._8d{margin-left:-2228.338080px;}
._96{margin-left:-2217.925440px;}
._a4{margin-left:-2213.270280px;}
._88{margin-left:-2208.809520px;}
._5b{margin-left:-2198.157840px;}
._7e{margin-left:-2164.813560px;}
._bb{margin-left:-2162.036160px;}
._81{margin-left:-2158.008120px;}
._68{margin-left:-2145.875760px;}
._79{margin-left:-2130.342480px;}
._13{margin-left:-2125.198080px;}
._b6{margin-left:-2123.583480px;}
._95{margin-left:-2120.831640px;}
._77{margin-left:-2119.261680px;}
._af{margin-left:-2118.017880px;}
._34{margin-left:-2093.128200px;}
._69{margin-left:-2052.898920px;}
._53{margin-left:-2034.762120px;}
._91{margin-left:-1911.335760px;}
._b9{margin-left:-1885.094280px;}
._4c{margin-left:-1850.193720px;}
._bd{margin-left:-1823.271840px;}
._b7{margin-left:-1821.877200px;}
._b4{margin-left:-1818.630720px;}
._a7{margin-left:-1811.175840px;}
._bc{margin-left:-1795.917240px;}
._8{margin-left:-1771.397640px;}
._c{margin-left:-1725.776280px;}
._67{margin-left:-1704.550320px;}
._aa{margin-left:-1562.760000px;}
._ad{margin-left:-1499.063760px;}
._2b{margin-left:-1470.645720px;}
._6{margin-left:-1460.440800px;}
._b{margin-left:-1455.166440px;}
._b5{margin-left:-1440.896760px;}
._ae{margin-left:-1414.864800px;}
._ba{margin-left:-1387.706040px;}
._61{margin-left:-1380.150000px;}
._1a{margin-left:-1375.463880px;}
._56{margin-left:-1356.477840px;}
._1f{margin-left:-1349.995320px;}
._8e{margin-left:-1333.053360px;}
._51{margin-left:-1309.173840px;}
._43{margin-left:-1302.110640px;}
._24{margin-left:-1283.153760px;}
._9{margin-left:-1280.917440px;}
._4e{margin-left:-1264.257360px;}
._28{margin-left:-1253.803320px;}
._92{margin-left:-1241.238240px;}
._47{margin-left:-1227.749040px;}
._b0{margin-left:-1218.961080px;}
._60{margin-left:-1192.125240px;}
._6b{margin-left:-1135.344600px;}
._5e{margin-left:-1112.521320px;}
._ac{margin-left:-1106.629560px;}
._b2{margin-left:-1094.256720px;}
._27{margin-left:-1082.739600px;}
._6f{margin-left:-1046.487240px;}
._8b{margin-left:-1034.550720px;}
._65{margin-left:-1012.820040px;}
._9a{margin-left:-1010.104200px;}
._9f{margin-left:-980.016840px;}
._6c{margin-left:-950.908320px;}
._a6{margin-left:-941.299560px;}
._97{margin-left:-910.037160px;}
._a5{margin-left:-896.702400px;}
._93{margin-left:-888.033240px;}
._9e{margin-left:-880.052760px;}
._98{margin-left:-877.524120px;}
._84{margin-left:-853.524360px;}
._8a{margin-left:-840.718800px;}
._a0{margin-left:-828.973080px;}
._b8{margin-left:-821.097360px;}
._b1{margin-left:-786.442320px;}
._8f{margin-left:-779.757120px;}
._a2{margin-left:-718.134120px;}
._6d{margin-left:-701.552880px;}
._a8{margin-left:-696.911760px;}
._be{margin-left:-691.933680px;}
._7b{margin-left:-665.048160px;}
._45{margin-left:-632.414880px;}
._46{margin-left:-628.495200px;}
._58{margin-left:-592.495200px;}
._9c{margin-left:-591.461280px;}
._85{margin-left:-589.958280px;}
._44{margin-left:-585.160560px;}
._83{margin-left:-571.922280px;}
._75{margin-left:-554.765760px;}
._76{margin-left:-549.715680px;}
._3c{margin-left:-541.934280px;}
._2{margin-left:-540.136440px;}
._8c{margin-left:-525.401280px;}
._6a{margin-left:-524.187000px;}
._1b{margin-left:-521.842320px;}
._6e{margin-left:-499.838400px;}
._38{margin-left:-487.972440px;}
._73{margin-left:-465.630120px;}
._29{margin-left:-447.534000px;}
._b3{margin-left:-442.303560px;}
._7f{margin-left:-438.828480px;}
._62{margin-left:-434.056680px;}
._41{margin-left:-431.301600px;}
._54{margin-left:-425.950920px;}
._d{margin-left:-418.435920px;}
._82{margin-left:-409.297680px;}
._52{margin-left:-381.642480px;}
._78{margin-left:-363.666600px;}
._87{margin-left:-300.961440px;}
._37{margin-left:-297.479520px;}
._a{margin-left:-195.030000px;}
._3{margin-left:-160.470000px;}
._7{margin-left:-159.030000px;}
._4{margin-left:-1.262520px;}
._0{width:1.119960px;}
._16{width:3.050640px;}
._22{width:4.936680px;}
._30{width:6.005160px;}
._55{width:7.214400px;}
._3d{width:8.844480px;}
._57{width:10.581120px;}
._11{width:11.843640px;}
._5d{width:12.925800px;}
._14{width:16.141320px;}
._64{width:19.380960px;}
._2f{width:20.440800px;}
._66{width:21.808080px;}
._7c{width:23.987880px;}
._49{width:26.152200px;}
._35{width:90.570240px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:42.120000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y65{bottom:3.060000px;}
.y6d{bottom:3.240000px;}
.y6a{bottom:3.330000px;}
.yd9{bottom:3.420000px;}
.yd6{bottom:3.510000px;}
.y67{bottom:4.590000px;}
.y68{bottom:16.200000px;}
.yb2{bottom:18.810000px;}
.yd8{bottom:20.700000px;}
.y63{bottom:34.020000px;}
.yd2{bottom:37.800000px;}
.yae{bottom:113.490000px;}
.y87{bottom:114.300000px;}
.y8f{bottom:120.060000px;}
.ybf{bottom:120.780000px;}
.y1e{bottom:121.680000px;}
.y61{bottom:122.580000px;}
.yfe{bottom:125.100000px;}
.ya4{bottom:126.090000px;}
.y3c{bottom:133.380000px;}
.ye7{bottom:137.880000px;}
.y54{bottom:142.380000px;}
.yd0{bottom:143.100000px;}
.yad{bottom:147.960000px;}
.y86{bottom:148.860000px;}
.y8e{bottom:154.620000px;}
.ybe{bottom:155.250000px;}
.y1d{bottom:156.150000px;}
.y60{bottom:157.050000px;}
.y7f{bottom:159.570000px;}
.ya3{bottom:160.560000px;}
.ya1{bottom:165.600000px;}
.y3b{bottom:167.850000px;}
.ye6{bottom:172.350000px;}
.y53{bottom:176.850000px;}
.ycf{bottom:177.660000px;}
.yac{bottom:182.520000px;}
.y85{bottom:183.330000px;}
.y8d{bottom:189.090000px;}
.ybd{bottom:189.810000px;}
.y1c{bottom:190.620000px;}
.y5f{bottom:191.610000px;}
.ya2{bottom:191.700000px;}
.y7e{bottom:194.130000px;}
.ya0{bottom:200.160000px;}
.y3a{bottom:202.320000px;}
.ye5{bottom:206.820000px;}
.y52{bottom:211.320000px;}
.yce{bottom:212.130000px;}
.yab{bottom:216.990000px;}
.y84{bottom:217.800000px;}
.y8c{bottom:223.560000px;}
.ybc{bottom:224.280000px;}
.y1b{bottom:225.180000px;}
.y5e{bottom:226.080000px;}
.yfd{bottom:228.600000px;}
.y9f{bottom:234.630000px;}
.y39{bottom:236.880000px;}
.ye4{bottom:241.380000px;}
.y51{bottom:245.880000px;}
.ycd{bottom:246.600000px;}
.yaa{bottom:251.460000px;}
.y83{bottom:252.360000px;}
.y8b{bottom:254.610000px;}
.ybb{bottom:258.750000px;}
.y1a{bottom:259.650000px;}
.y5d{bottom:260.550000px;}
.yfc{bottom:263.070000px;}
.y9e{bottom:269.100000px;}
.y38{bottom:271.350000px;}
.ye3{bottom:275.670000px;}
.ycc{bottom:277.650000px;}
.y50{bottom:280.350000px;}
.y82{bottom:283.410000px;}
.ya9{bottom:286.020000px;}
.yba{bottom:293.310000px;}
.y19{bottom:294.120000px;}
.y5c{bottom:295.110000px;}
.yfb{bottom:297.540000px;}
.y9d{bottom:303.570000px;}
.y37{bottom:305.820000px;}
.ye2{bottom:310.320000px;}
.y4f{bottom:314.820000px;}
.ya8{bottom:320.490000px;}
.yb9{bottom:327.780000px;}
.y18{bottom:328.590000px;}
.y5b{bottom:329.580000px;}
.yfa{bottom:332.100000px;}
.y9c{bottom:334.710000px;}
.y9b{bottom:337.860000px;}
.y36{bottom:340.290000px;}
.ye1{bottom:344.790000px;}
.y4e{bottom:349.290000px;}
.ya5{bottom:353.700000px;}
.ya7{bottom:354.960000px;}
.yb8{bottom:362.250000px;}
.y17{bottom:363.150000px;}
.y5a{bottom:364.050000px;}
.yf9{bottom:366.570000px;}
.y35{bottom:374.850000px;}
.ye0{bottom:379.350000px;}
.y4d{bottom:383.850000px;}
.ya6{bottom:386.010000px;}
.yb7{bottom:396.720000px;}
.y16{bottom:397.620000px;}
.y59{bottom:398.520000px;}
.yf8{bottom:401.040000px;}
.y34{bottom:409.320000px;}
.ydf{bottom:413.820000px;}
.y4c{bottom:418.320000px;}
.yb6{bottom:427.860000px;}
.y15{bottom:432.090000px;}
.y58{bottom:433.080000px;}
.yf7{bottom:435.600000px;}
.y33{bottom:443.790000px;}
.y7d{bottom:447.030000px;}
.yde{bottom:448.290000px;}
.y4b{bottom:452.790000px;}
.y14{bottom:466.650000px;}
.y57{bottom:467.550000px;}
.yf6{bottom:470.070000px;}
.y32{bottom:478.350000px;}
.y7c{bottom:481.500000px;}
.ydd{bottom:482.850000px;}
.y9a{bottom:484.830000px;}
.y4a{bottom:487.350000px;}
.y13{bottom:500.940000px;}
.y56{bottom:502.020000px;}
.yf5{bottom:504.540000px;}
.y31{bottom:512.820000px;}
.y7b{bottom:516.060000px;}
.ydc{bottom:517.320000px;}
.y99{bottom:519.390000px;}
.y49{bottom:521.640000px;}
.y81{bottom:521.820000px;}
.y55{bottom:533.160000px;}
.y12{bottom:535.590000px;}
.yf4{bottom:539.100000px;}
.y30{bottom:547.290000px;}
.y7a{bottom:550.530000px;}
.ydb{bottom:551.790000px;}
.y98{bottom:553.860000px;}
.y48{bottom:556.110000px;}
.y80{bottom:556.290000px;}
.yda{bottom:566.370000px;}
.y11{bottom:570.150000px;}
.yf3{bottom:573.570000px;}
.y2f{bottom:581.850000px;}
.yd7{bottom:584.370000px;}
.y79{bottom:585.000000px;}
.y97{bottom:588.330000px;}
.y8a{bottom:590.670000px;}
.y47{bottom:590.850000px;}
.y10{bottom:604.620000px;}
.yf2{bottom:608.040000px;}
.y2e{bottom:616.320000px;}
.y78{bottom:619.560000px;}
.y96{bottom:622.890000px;}
.y89{bottom:625.140000px;}
.y46{bottom:625.320000px;}
.yd5{bottom:637.560000px;}
.yf{bottom:639.090000px;}
.yf1{bottom:642.510000px;}
.y2d{bottom:650.790000px;}
.y77{bottom:654.030000px;}
.yd1{bottom:655.560000px;}
.y95{bottom:657.360000px;}
.y45{bottom:659.790000px;}
.ye{bottom:673.560000px;}
.yd4{bottom:676.080000px;}
.yf0{bottom:677.070000px;}
.y2c{bottom:685.080000px;}
.y76{bottom:688.500000px;}
.yd3{bottom:691.110000px;}
.y94{bottom:691.830000px;}
.y44{bottom:694.260000px;}
.yef{bottom:711.540000px;}
.yd{bottom:714.870000px;}
.y2b{bottom:719.820000px;}
.y75{bottom:723.060000px;}
.y93{bottom:726.390000px;}
.y43{bottom:728.820000px;}
.yc{bottom:742.590000px;}
.yee{bottom:746.010000px;}
.ycb{bottom:747.270000px;}
.y2a{bottom:754.290000px;}
.y74{bottom:757.530000px;}
.y92{bottom:760.860000px;}
.y42{bottom:763.290000px;}
.yb5{bottom:768.150000px;}
.yb{bottom:777.060000px;}
.yed{bottom:780.570000px;}
.yca{bottom:781.740000px;}
.y29{bottom:788.760000px;}
.y73{bottom:792.000000px;}
.y91{bottom:795.330000px;}
.y41{bottom:797.760000px;}
.yb4{bottom:802.620000px;}
.y72{bottom:806.490000px;}
.yec{bottom:815.040000px;}
.yc9{bottom:816.210000px;}
.yb3{bottom:817.200000px;}
.ya{bottom:818.370000px;}
.y71{bottom:822.780000px;}
.y28{bottom:823.320000px;}
.y90{bottom:826.380000px;}
.y40{bottom:832.320000px;}
.yb1{bottom:833.490000px;}
.y70{bottom:839.070000px;}
.y9{bottom:846.090000px;}
.yeb{bottom:849.510000px;}
.yc8{bottom:850.770000px;}
.y6f{bottom:855.360000px;}
.y27{bottom:857.790000px;}
.yb0{bottom:865.260000px;}
.y3f{bottom:866.790000px;}
.y6e{bottom:871.650000px;}
.y8{bottom:880.560000px;}
.yaf{bottom:881.550000px;}
.yea{bottom:884.070000px;}
.yc7{bottom:885.240000px;}
.y6c{bottom:887.940000px;}
.y26{bottom:892.260000px;}
.y3e{bottom:901.260000px;}
.y6b{bottom:904.140000px;}
.yc6{bottom:919.710000px;}
.y69{bottom:920.430000px;}
.y7{bottom:921.870000px;}
.y25{bottom:926.820000px;}
.y88{bottom:935.640000px;}
.y3d{bottom:935.820000px;}
.y62{bottom:936.720000px;}
.y6{bottom:951.570000px;}
.yc5{bottom:954.270000px;}
.y64{bottom:955.260000px;}
.y66{bottom:966.150000px;}
.ye9{bottom:970.110000px;}
.y24{bottom:970.290000px;}
.yc4{bottom:988.560000px;}
.y5{bottom:989.550000px;}
.ye8{bottom:1004.580000px;}
.y23{bottom:1004.760000px;}
.yc3{bottom:1023.030000px;}
.y4{bottom:1027.440000px;}
.y22{bottom:1039.230000px;}
.yc2{bottom:1057.500000px;}
.y3{bottom:1065.420000px;}
.yc1{bottom:1072.260000px;}
.y21{bottom:1073.790000px;}
.yc0{bottom:1088.550000px;}
.y2{bottom:1103.310000px;}
.y20{bottom:1108.260000px;}
.y1{bottom:1141.200000px;}
.y1f{bottom:1142.730000px;}
.hd{height:15.478500px;}
.hc{height:15.480000px;}
.h9{height:15.570000px;}
.hb{height:15.571500px;}
.h7{height:17.098500px;}
.h15{height:17.191500px;}
.h12{height:17.280000px;}
.h8{height:28.708500px;}
.he{height:31.050000px;}
.h14{height:34.470000px;}
.h11{height:39.183750px;}
.h4{height:43.664062px;}
.h5{height:46.528500px;}
.hf{height:51.750000px;}
.ha{height:52.998047px;}
.h6{height:54.421875px;}
.h13{height:59.004492px;}
.h10{height:60.589687px;}
.h2{height:70.664062px;}
.h3{height:71.218477px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:45.448500px;}
.w14{width:48.511500px;}
.w10{width:49.950000px;}
.w13{width:50.670000px;}
.w1a{width:52.468500px;}
.wf{width:52.560000px;}
.w12{width:52.650000px;}
.w11{width:53.008500px;}
.w7{width:55.440000px;}
.wd{width:57.151500px;}
.we{width:61.650000px;}
.w16{width:68.668500px;}
.wb{width:71.280000px;}
.wc{width:71.370000px;}
.w5{width:75.240000px;}
.w18{width:75.600000px;}
.w4{width:84.328500px;}
.wa{width:84.420000px;}
.w17{width:87.930000px;}
.w1b{width:87.931500px;}
.w19{width:88.020000px;}
.w2{width:97.110000px;}
.w6{width:104.040000px;}
.w8{width:137.788500px;}
.w3{width:149.580000px;}
.w15{width:188.100000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1b{left:8.820000px;}
.x1f{left:10.620000px;}
.x40{left:11.790000px;}
.x9{left:14.310000px;}
.x22{left:17.370000px;}
.x13{left:18.450000px;}
.x17{left:19.800000px;}
.xf{left:22.410000px;}
.x36{left:23.940000px;}
.x2c{left:25.560000px;}
.x15{left:27.450000px;}
.x11{left:28.890000px;}
.x19{left:30.240000px;}
.xc{left:34.470000px;}
.x2d{left:35.730000px;}
.x7{left:37.890000px;}
.x21{left:40.950000px;}
.x35{left:42.660000px;}
.x1d{left:43.920000px;}
.x48{left:45.270000px;}
.x3d{left:46.620000px;}
.x20{left:54.000000px;}
.x3a{left:60.930000px;}
.x2b{left:63.540000px;}
.x1c{left:69.840000px;}
.x1e{left:82.800000px;}
.x24{left:89.550000px;}
.x2{left:91.620000px;}
.x5{left:100.170000px;}
.x23{left:114.840000px;}
.x37{left:119.880000px;}
.x1{left:127.620000px;}
.x6{left:190.260000px;}
.x2e{left:230.760000px;}
.x26{left:260.100000px;}
.x2f{left:288.630000px;}
.x38{left:308.700000px;}
.x3b{left:332.640000px;}
.x8{left:340.560000px;}
.x27{left:345.330000px;}
.x30{left:351.000000px;}
.x39{left:364.770000px;}
.xa{left:373.680000px;}
.x3c{left:378.090000px;}
.x3e{left:385.830000px;}
.x31{left:404.370000px;}
.x28{left:417.420000px;}
.xb{left:425.610000px;}
.x25{left:432.900000px;}
.xd{left:439.470000px;}
.x32{left:455.040000px;}
.x3f{left:466.830000px;}
.x29{left:489.420000px;}
.xe{left:501.570000px;}
.x33{left:508.770000px;}
.x10{left:535.230000px;}
.x41{left:543.150000px;}
.x42{left:550.890000px;}
.x2a{left:561.510000px;}
.x12{left:606.420000px;}
.x34{left:613.620000px;}
.x14{left:618.120000px;}
.x43{left:631.890000px;}
.x45{left:639.720000px;}
.x16{left:662.670000px;}
.x44{left:666.990000px;}
.x46{left:685.170000px;}
.x47{left:692.820000px;}
.x18{left:708.840000px;}
.x1a{left:755.010000px;}
.x3{left:764.910000px;}
@media print{
.v4{vertical-align:-61.120000pt;}
.v2{vertical-align:-24.000000pt;}
.v5{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.000000pt;}
.v1{vertical-align:26.560000pt;}
.ls5d{letter-spacing:-0.961920pt;}
.ls1e{letter-spacing:-0.587840pt;}
.lse{letter-spacing:-0.427520pt;}
.ls12{letter-spacing:-0.374080pt;}
.ls64{letter-spacing:-0.320640pt;}
.ls13{letter-spacing:-0.311040pt;}
.lsf{letter-spacing:-0.267200pt;}
.ls11{letter-spacing:-0.213760pt;}
.ls34{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.160320pt;}
.ls33{letter-spacing:-0.144000pt;}
.lsc{letter-spacing:-0.106880pt;}
.ls53{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.058560pt;}
.lsd{letter-spacing:-0.053440pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.053440pt;}
.ls0{letter-spacing:0.058560pt;}
.ls35{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.106880pt;}
.ls5c{letter-spacing:0.124480pt;}
.ls43{letter-spacing:0.136320pt;}
.ls2e{letter-spacing:0.144000pt;}
.ls58{letter-spacing:0.148160pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.160320pt;}
.ls1{letter-spacing:0.175680pt;}
.ls37{letter-spacing:0.181440pt;}
.ls3a{letter-spacing:0.213760pt;}
.ls3f{letter-spacing:0.267200pt;}
.ls3b{letter-spacing:0.320640pt;}
.ls59{letter-spacing:0.345600pt;}
.ls19{letter-spacing:0.374080pt;}
.ls42{letter-spacing:0.427520pt;}
.ls47{letter-spacing:0.534400pt;}
.ls48{letter-spacing:0.587840pt;}
.ls5e{letter-spacing:0.641280pt;}
.ls7{letter-spacing:0.694720pt;}
.ls63{letter-spacing:0.748160pt;}
.ls52{letter-spacing:0.801600pt;}
.ls1a{letter-spacing:0.855040pt;}
.ls54{letter-spacing:0.961920pt;}
.ls9{letter-spacing:1.015360pt;}
.ls4c{letter-spacing:1.068800pt;}
.ls55{letter-spacing:1.282560pt;}
.ls5{letter-spacing:1.336000pt;}
.ls5f{letter-spacing:1.603200pt;}
.ls32{letter-spacing:1.656640pt;}
.ls16{letter-spacing:1.977280pt;}
.ls22{letter-spacing:2.030720pt;}
.ls1c{letter-spacing:2.297920pt;}
.ls2c{letter-spacing:2.458240pt;}
.ls1d{letter-spacing:2.618560pt;}
.ls4a{letter-spacing:2.672000pt;}
.ls25{letter-spacing:2.939200pt;}
.ls31{letter-spacing:3.259840pt;}
.ls24{letter-spacing:3.580480pt;}
.ls23{letter-spacing:4.061440pt;}
.ls2a{letter-spacing:4.221760pt;}
.ls3c{letter-spacing:4.542400pt;}
.ls20{letter-spacing:4.863040pt;}
.ls2f{letter-spacing:5.183680pt;}
.ls4f{letter-spacing:5.397440pt;}
.ls44{letter-spacing:5.504320pt;}
.ls41{letter-spacing:5.824960pt;}
.ls1b{letter-spacing:6.145600pt;}
.ls50{letter-spacing:6.466240pt;}
.ls39{letter-spacing:6.626560pt;}
.ls49{letter-spacing:7.107520pt;}
.ls30{letter-spacing:7.428160pt;}
.ls40{letter-spacing:7.748800pt;}
.ls2d{letter-spacing:8.069440pt;}
.ls5a{letter-spacing:8.390080pt;}
.ls3d{letter-spacing:8.496960pt;}
.ls38{letter-spacing:8.710720pt;}
.ls36{letter-spacing:8.764160pt;}
.ls2b{letter-spacing:9.031360pt;}
.ls21{letter-spacing:9.352000pt;}
.ls62{letter-spacing:9.405440pt;}
.ls8{letter-spacing:9.993280pt;}
.ls60{letter-spacing:10.313920pt;}
.ls45{letter-spacing:10.634560pt;}
.ls46{letter-spacing:10.955200pt;}
.ls51{letter-spacing:11.275840pt;}
.ls4b{letter-spacing:11.917120pt;}
.ls57{letter-spacing:12.237760pt;}
.ls56{letter-spacing:12.879040pt;}
.ls15{letter-spacing:13.787520pt;}
.ls14{letter-spacing:13.840960pt;}
.ls18{letter-spacing:14.161600pt;}
.ls17{letter-spacing:14.482240pt;}
.ls26{letter-spacing:16.406080pt;}
.ls61{letter-spacing:17.047360pt;}
.ls4d{letter-spacing:17.368000pt;}
.ls27{letter-spacing:17.688640pt;}
.ls28{letter-spacing:18.009280pt;}
.ls29{letter-spacing:18.062720pt;}
.ls5b{letter-spacing:18.971200pt;}
.ls4e{letter-spacing:19.291840pt;}
.ls3e{letter-spacing:22.498240pt;}
.ls65{letter-spacing:30.140160pt;}
.ls4{letter-spacing:30.781440pt;}
.ws0{word-spacing:-14.581440pt;}
.ws28{word-spacing:-13.520320pt;}
.ws8{word-spacing:-13.466880pt;}
.ws27{word-spacing:-13.413440pt;}
.ws2{word-spacing:-13.360000pt;}
.ws3{word-spacing:-13.306560pt;}
.ws26{word-spacing:-13.253120pt;}
.ws7{word-spacing:-13.199680pt;}
.wsab{word-spacing:-13.146240pt;}
.ws6{word-spacing:-13.092800pt;}
.wsf2{word-spacing:-13.039360pt;}
.ws46{word-spacing:-12.985920pt;}
.ws4{word-spacing:-12.932480pt;}
.ws25{word-spacing:-12.772160pt;}
.ws7a{word-spacing:-12.144000pt;}
.ws7b{word-spacing:-12.096000pt;}
.ws7c{word-spacing:-12.000000pt;}
.wsbf{word-spacing:-11.904000pt;}
.wsc0{word-spacing:-11.856000pt;}
.ws1{word-spacing:-9.360000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws9{word-spacing:-8.328960pt;}
.wsd{word-spacing:-0.374080pt;}
.wse{word-spacing:-0.320640pt;}
.ws56{word-spacing:-0.267200pt;}
.ws17{word-spacing:-0.160320pt;}
.ws84{word-spacing:-0.144000pt;}
.ws1a{word-spacing:-0.106880pt;}
.wsc{word-spacing:-0.058560pt;}
.ws11{word-spacing:-0.053440pt;}
.wsb{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.053440pt;}
.wsf{word-spacing:0.106880pt;}
.wsa{word-spacing:0.117120pt;}
.ws83{word-spacing:0.144000pt;}
.ws12{word-spacing:0.160320pt;}
.ws86{word-spacing:0.192000pt;}
.ws10{word-spacing:0.213760pt;}
.wsc3{word-spacing:0.240000pt;}
.ws14{word-spacing:0.267200pt;}
.ws85{word-spacing:0.288000pt;}
.wsc8{word-spacing:0.311040pt;}
.ws13{word-spacing:0.320640pt;}
.ws1e{word-spacing:0.374080pt;}
.ws8a{word-spacing:0.480960pt;}
.wsc2{word-spacing:0.534400pt;}
.ws34{word-spacing:0.587840pt;}
.ws89{word-spacing:0.641280pt;}
.ws4f{word-spacing:0.801600pt;}
.ws50{word-spacing:0.855040pt;}
.ws1b{word-spacing:0.908480pt;}
.wsb7{word-spacing:0.961920pt;}
.ws1f{word-spacing:1.122240pt;}
.ws20{word-spacing:1.175680pt;}
.wsb6{word-spacing:1.229120pt;}
.wse1{word-spacing:1.282560pt;}
.ws66{word-spacing:1.389440pt;}
.ws67{word-spacing:1.442880pt;}
.ws16{word-spacing:1.496320pt;}
.ws57{word-spacing:1.549760pt;}
.ws19{word-spacing:1.710080pt;}
.ws18{word-spacing:1.763520pt;}
.ws2c{word-spacing:1.816960pt;}
.wsa5{word-spacing:1.870400pt;}
.ws2e{word-spacing:2.030720pt;}
.ws2d{word-spacing:2.084160pt;}
.ws4c{word-spacing:2.137600pt;}
.ws5f{word-spacing:2.191040pt;}
.ws4b{word-spacing:2.297920pt;}
.ws4a{word-spacing:2.351360pt;}
.ws3d{word-spacing:2.404800pt;}
.ws3e{word-spacing:2.458240pt;}
.ws78{word-spacing:2.511680pt;}
.ws79{word-spacing:2.672000pt;}
.ws3f{word-spacing:2.725440pt;}
.ws3c{word-spacing:2.778880pt;}
.ws55{word-spacing:2.832320pt;}
.ws23{word-spacing:2.992640pt;}
.ws22{word-spacing:3.046080pt;}
.ws6f{word-spacing:3.099520pt;}
.wsdc{word-spacing:3.152960pt;}
.wsdd{word-spacing:3.259840pt;}
.ws54{word-spacing:3.313280pt;}
.ws62{word-spacing:3.366720pt;}
.ws5e{word-spacing:3.420160pt;}
.ws8e{word-spacing:3.473600pt;}
.ws88{word-spacing:3.633920pt;}
.ws5d{word-spacing:3.687360pt;}
.ws59{word-spacing:3.740800pt;}
.wsf4{word-spacing:3.794240pt;}
.ws58{word-spacing:3.954560pt;}
.ws98{word-spacing:4.008000pt;}
.ws5a{word-spacing:4.061440pt;}
.ws8f{word-spacing:4.114880pt;}
.ws95{word-spacing:4.275200pt;}
.ws90{word-spacing:4.328640pt;}
.ws6e{word-spacing:4.382080pt;}
.ws6d{word-spacing:4.435520pt;}
.ws99{word-spacing:4.542400pt;}
.ws33{word-spacing:4.595840pt;}
.ws6c{word-spacing:4.649280pt;}
.ws2f{word-spacing:4.702720pt;}
.ws51{word-spacing:4.756160pt;}
.ws53{word-spacing:4.916480pt;}
.ws47{word-spacing:4.969920pt;}
.ws71{word-spacing:5.023360pt;}
.ws52{word-spacing:5.076800pt;}
.wse2{word-spacing:5.183680pt;}
.ws72{word-spacing:5.237120pt;}
.ws70{word-spacing:5.290560pt;}
.ws9d{word-spacing:5.344000pt;}
.wsa6{word-spacing:5.557760pt;}
.wsaa{word-spacing:5.611200pt;}
.ws9e{word-spacing:5.664640pt;}
.wsad{word-spacing:5.718080pt;}
.wsa7{word-spacing:5.878400pt;}
.ws96{word-spacing:5.931840pt;}
.ws3b{word-spacing:5.985280pt;}
.ws45{word-spacing:6.038720pt;}
.wsb1{word-spacing:6.199040pt;}
.ws61{word-spacing:6.252480pt;}
.ws39{word-spacing:6.305920pt;}
.wsc9{word-spacing:6.359360pt;}
.ws44{word-spacing:6.519680pt;}
.ws92{word-spacing:6.573120pt;}
.ws93{word-spacing:6.626560pt;}
.wsa2{word-spacing:6.680000pt;}
.ws94{word-spacing:6.840320pt;}
.wsa1{word-spacing:6.893760pt;}
.ws68{word-spacing:6.947200pt;}
.wsee{word-spacing:7.000640pt;}
.ws87{word-spacing:7.160960pt;}
.wsa4{word-spacing:7.214400pt;}
.ws21{word-spacing:7.267840pt;}
.wsda{word-spacing:7.321280pt;}
.ws7e{word-spacing:7.481600pt;}
.ws7f{word-spacing:7.588480pt;}
.wsdb{word-spacing:7.641920pt;}
.ws9a{word-spacing:7.802240pt;}
.wsd8{word-spacing:7.855680pt;}
.ws82{word-spacing:7.909120pt;}
.wsd9{word-spacing:7.962560pt;}
.ws80{word-spacing:8.122880pt;}
.ws81{word-spacing:8.176320pt;}
.ws24{word-spacing:8.229760pt;}
.wscf{word-spacing:8.283200pt;}
.wsc4{word-spacing:8.443520pt;}
.wsc1{word-spacing:8.496960pt;}
.ws35{word-spacing:8.550400pt;}
.ws42{word-spacing:8.603840pt;}
.ws41{word-spacing:8.764160pt;}
.ws43{word-spacing:8.817600pt;}
.ws36{word-spacing:8.871040pt;}
.ws76{word-spacing:8.924480pt;}
.ws77{word-spacing:9.084800pt;}
.ws3a{word-spacing:9.138240pt;}
.ws37{word-spacing:9.191680pt;}
.wse9{word-spacing:9.245120pt;}
.ws38{word-spacing:9.458880pt;}
.ws1d{word-spacing:9.512320pt;}
.wsdf{word-spacing:9.565760pt;}
.wsf6{word-spacing:9.779520pt;}
.ws1c{word-spacing:9.832960pt;}
.wsde{word-spacing:9.886400pt;}
.wsa3{word-spacing:10.046720pt;}
.wsd1{word-spacing:10.100160pt;}
.ws75{word-spacing:10.153600pt;}
.ws97{word-spacing:10.367360pt;}
.ws74{word-spacing:10.420800pt;}
.ws73{word-spacing:10.474240pt;}
.wscb{word-spacing:10.527680pt;}
.wsa8{word-spacing:10.688000pt;}
.wsa9{word-spacing:10.741440pt;}
.wsac{word-spacing:10.794880pt;}
.wsae{word-spacing:10.848320pt;}
.ws60{word-spacing:11.008640pt;}
.wsaf{word-spacing:11.062080pt;}
.ws40{word-spacing:11.115520pt;}
.wsa0{word-spacing:11.436160pt;}
.ws9f{word-spacing:11.649920pt;}
.wsca{word-spacing:11.703360pt;}
.wsb4{word-spacing:11.756800pt;}
.wsb3{word-spacing:12.024000pt;}
.ws49{word-spacing:12.398080pt;}
.ws5c{word-spacing:12.451520pt;}
.ws5b{word-spacing:12.611840pt;}
.ws48{word-spacing:12.665280pt;}
.wsc6{word-spacing:12.718720pt;}
.wsd0{word-spacing:12.932480pt;}
.wsc5{word-spacing:12.985920pt;}
.wsce{word-spacing:13.039360pt;}
.wscc{word-spacing:13.306560pt;}
.wse4{word-spacing:13.360000pt;}
.wse3{word-spacing:13.413440pt;}
.wsba{word-spacing:13.627200pt;}
.ws2b{word-spacing:13.680640pt;}
.ws2a{word-spacing:13.894400pt;}
.ws29{word-spacing:13.947840pt;}
.wsf5{word-spacing:14.001280pt;}
.wsb5{word-spacing:14.215040pt;}
.ws31{word-spacing:14.268480pt;}
.wsea{word-spacing:14.321920pt;}
.ws30{word-spacing:14.535680pt;}
.ws32{word-spacing:14.589120pt;}
.wsf3{word-spacing:14.642560pt;}
.wsf0{word-spacing:14.696000pt;}
.wsb2{word-spacing:14.856320pt;}
.ws7d{word-spacing:14.963200pt;}
.wse0{word-spacing:15.016640pt;}
.wsef{word-spacing:15.230400pt;}
.wsf1{word-spacing:15.283840pt;}
.wse5{word-spacing:15.497600pt;}
.wse6{word-spacing:15.604480pt;}
.wsd6{word-spacing:15.925120pt;}
.wsd7{word-spacing:16.138880pt;}
.ws64{word-spacing:16.245760pt;}
.ws63{word-spacing:16.459520pt;}
.ws65{word-spacing:16.512960pt;}
.wse7{word-spacing:16.566400pt;}
.wse8{word-spacing:16.780160pt;}
.wsd5{word-spacing:17.100800pt;}
.wsd4{word-spacing:17.154240pt;}
.wsb9{word-spacing:17.207680pt;}
.wsb8{word-spacing:17.421440pt;}
.ws6a{word-spacing:17.848960pt;}
.ws15{word-spacing:17.902400pt;}
.ws69{word-spacing:18.062720pt;}
.ws91{word-spacing:18.169600pt;}
.ws8d{word-spacing:18.490240pt;}
.wsb0{word-spacing:18.543680pt;}
.ws8c{word-spacing:18.704000pt;}
.wsbe{word-spacing:19.024640pt;}
.wsbd{word-spacing:19.131520pt;}
.wsbb{word-spacing:19.184960pt;}
.wsc7{word-spacing:19.345280pt;}
.wsbc{word-spacing:19.452160pt;}
.wscd{word-spacing:19.665920pt;}
.wsd3{word-spacing:20.627840pt;}
.wsd2{word-spacing:20.734720pt;}
.ws9b{word-spacing:22.551680pt;}
.ws9c{word-spacing:22.605120pt;}
.wsed{word-spacing:22.658560pt;}
.wseb{word-spacing:22.712000pt;}
.wsec{word-spacing:22.979200pt;}
.ws8b{word-spacing:23.299840pt;}
.wsf7{word-spacing:29.979840pt;}
.ws4e{word-spacing:32.865600pt;}
.ws4d{word-spacing:33.186240pt;}
._3e{margin-left:-2464.332800pt;}
._7d{margin-left:-2461.480640pt;}
._40{margin-left:-2460.378240pt;}
._e{margin-left:-2458.507840pt;}
._9d{margin-left:-2457.118400pt;}
._89{margin-left:-2455.889280pt;}
._2a{margin-left:-2454.286080pt;}
._4d{margin-left:-2453.056960pt;}
._21{margin-left:-2452.148480pt;}
._31{margin-left:-2451.214080pt;}
._1d{margin-left:-2449.723840pt;}
._12{margin-left:-2448.300800pt;}
._1e{margin-left:-2446.911360pt;}
._1c{margin-left:-2444.880640pt;}
._20{margin-left:-2443.411840pt;}
._10{margin-left:-2442.101760pt;}
._f{margin-left:-2440.779520pt;}
._3f{margin-left:-2439.803840pt;}
._42{margin-left:-2438.640000pt;}
._39{margin-left:-2437.680000pt;}
._4a{margin-left:-2431.311360pt;}
._32{margin-left:-2428.407360pt;}
._3a{margin-left:-2427.279040pt;}
._9b{margin-left:-2425.152000pt;}
._15{margin-left:-2423.709120pt;}
._5f{margin-left:-2422.446400pt;}
._25{margin-left:-2420.983680pt;}
._63{margin-left:-2420.035520pt;}
._48{margin-left:-2418.759040pt;}
._3b{margin-left:-2417.650880pt;}
._33{margin-left:-2416.621440pt;}
._2e{margin-left:-2415.445760pt;}
._36{margin-left:-2414.155520pt;}
._18{margin-left:-2413.201280pt;}
._26{margin-left:-2411.952320pt;}
._4b{margin-left:-2410.689600pt;}
._17{margin-left:-2409.781120pt;}
._23{margin-left:-2408.484800pt;}
._2c{margin-left:-2407.280000pt;}
._5a{margin-left:-2406.000000pt;}
._59{margin-left:-2403.124160pt;}
._74{margin-left:-2396.741760pt;}
._4f{margin-left:-2395.245440pt;}
._86{margin-left:-2383.885760pt;}
._1{margin-left:-2356.852160pt;}
._19{margin-left:-2354.256960pt;}
._a1{margin-left:-2311.935680pt;}
._80{margin-left:-2284.998720pt;}
._a3{margin-left:-2278.352320pt;}
._99{margin-left:-2270.302720pt;}
._5c{margin-left:-2243.689600pt;}
._72{margin-left:-2240.013120pt;}
._50{margin-left:-2218.567680pt;}
._94{margin-left:-2207.207040pt;}
._a9{margin-left:-2166.418560pt;}
._bf{margin-left:-2152.330240pt;}
._5{margin-left:-2140.284800pt;}
._2d{margin-left:-2124.892480pt;}
._70{margin-left:-2120.380800pt;}
._ab{margin-left:-2117.720960pt;}
._71{margin-left:-2111.788800pt;}
._90{margin-left:-2100.994240pt;}
._7a{margin-left:-2095.543360pt;}
._8d{margin-left:-1980.744960pt;}
._96{margin-left:-1971.489280pt;}
._a4{margin-left:-1967.351360pt;}
._88{margin-left:-1963.386240pt;}
._5b{margin-left:-1953.918080pt;}
._7e{margin-left:-1924.278720pt;}
._bb{margin-left:-1921.809920pt;}
._81{margin-left:-1918.229440pt;}
._68{margin-left:-1907.445120pt;}
._79{margin-left:-1893.637760pt;}
._13{margin-left:-1889.064960pt;}
._b6{margin-left:-1887.629760pt;}
._95{margin-left:-1885.183680pt;}
._77{margin-left:-1883.788160pt;}
._af{margin-left:-1882.682560pt;}
._34{margin-left:-1860.558400pt;}
._69{margin-left:-1824.799040pt;}
._53{margin-left:-1808.677440pt;}
._91{margin-left:-1698.965120pt;}
._b9{margin-left:-1675.639360pt;}
._4c{margin-left:-1644.616640pt;}
._bd{margin-left:-1620.686080pt;}
._b7{margin-left:-1619.446400pt;}
._b4{margin-left:-1616.560640pt;}
._a7{margin-left:-1609.934080pt;}
._bc{margin-left:-1596.370880pt;}
._8{margin-left:-1574.575680pt;}
._c{margin-left:-1534.023360pt;}
._67{margin-left:-1515.155840pt;}
._aa{margin-left:-1389.120000pt;}
._ad{margin-left:-1332.501120pt;}
._2b{margin-left:-1307.240640pt;}
._6{margin-left:-1298.169600pt;}
._b{margin-left:-1293.481280pt;}
._b5{margin-left:-1280.797120pt;}
._ae{margin-left:-1257.657600pt;}
._ba{margin-left:-1233.516480pt;}
._61{margin-left:-1226.800000pt;}
._1a{margin-left:-1222.634560pt;}
._56{margin-left:-1205.758080pt;}
._1f{margin-left:-1199.995840pt;}
._8e{margin-left:-1184.936320pt;}
._51{margin-left:-1163.710080pt;}
._43{margin-left:-1157.431680pt;}
._24{margin-left:-1140.581120pt;}
._9{margin-left:-1138.593280pt;}
._4e{margin-left:-1123.784320pt;}
._28{margin-left:-1114.491840pt;}
._92{margin-left:-1103.322880pt;}
._47{margin-left:-1091.332480pt;}
._b0{margin-left:-1083.520960pt;}
._60{margin-left:-1059.666880pt;}
._6b{margin-left:-1009.195200pt;}
._5e{margin-left:-988.907840pt;}
._ac{margin-left:-983.670720pt;}
._b2{margin-left:-972.672640pt;}
._27{margin-left:-962.435200pt;}
._6f{margin-left:-930.210880pt;}
._8b{margin-left:-919.600640pt;}
._65{margin-left:-900.284480pt;}
._9a{margin-left:-897.870400pt;}
._9f{margin-left:-871.126080pt;}
._6c{margin-left:-845.251840pt;}
._a6{margin-left:-836.710720pt;}
._97{margin-left:-808.921920pt;}
._a5{margin-left:-797.068800pt;}
._93{margin-left:-789.362880pt;}
._9e{margin-left:-782.269120pt;}
._98{margin-left:-780.021440pt;}
._84{margin-left:-758.688320pt;}
._8a{margin-left:-747.305600pt;}
._a0{margin-left:-736.864960pt;}
._b8{margin-left:-729.864320pt;}
._b1{margin-left:-699.059840pt;}
._8f{margin-left:-693.117440pt;}
._a2{margin-left:-638.341440pt;}
._6d{margin-left:-623.602560pt;}
._a8{margin-left:-619.477120pt;}
._be{margin-left:-615.052160pt;}
._7b{margin-left:-591.153920pt;}
._45{margin-left:-562.146560pt;}
._46{margin-left:-558.662400pt;}
._58{margin-left:-526.662400pt;}
._9c{margin-left:-525.743360pt;}
._85{margin-left:-524.407360pt;}
._44{margin-left:-520.142720pt;}
._83{margin-left:-508.375360pt;}
._75{margin-left:-493.125120pt;}
._76{margin-left:-488.636160pt;}
._3c{margin-left:-481.719360pt;}
._2{margin-left:-480.121280pt;}
._8c{margin-left:-467.023360pt;}
._6a{margin-left:-465.944000pt;}
._1b{margin-left:-463.859840pt;}
._6e{margin-left:-444.300800pt;}
._38{margin-left:-433.753280pt;}
._73{margin-left:-413.893440pt;}
._29{margin-left:-397.808000pt;}
._b3{margin-left:-393.158720pt;}
._7f{margin-left:-390.069760pt;}
._62{margin-left:-385.828160pt;}
._41{margin-left:-383.379200pt;}
._54{margin-left:-378.623040pt;}
._d{margin-left:-371.943040pt;}
._82{margin-left:-363.820160pt;}
._52{margin-left:-339.237760pt;}
._78{margin-left:-323.259200pt;}
._87{margin-left:-267.521280pt;}
._37{margin-left:-264.426240pt;}
._a{margin-left:-173.360000pt;}
._3{margin-left:-142.640000pt;}
._7{margin-left:-141.360000pt;}
._4{margin-left:-1.122240pt;}
._0{width:0.995520pt;}
._16{width:2.711680pt;}
._22{width:4.388160pt;}
._30{width:5.337920pt;}
._55{width:6.412800pt;}
._3d{width:7.861760pt;}
._57{width:9.405440pt;}
._11{width:10.527680pt;}
._5d{width:11.489600pt;}
._14{width:14.347840pt;}
._64{width:17.227520pt;}
._2f{width:18.169600pt;}
._66{width:19.384960pt;}
._7c{width:21.322560pt;}
._49{width:23.246400pt;}
._35{width:80.506880pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.440000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:2.720000pt;}
.y6d{bottom:2.880000pt;}
.y6a{bottom:2.960000pt;}
.yd9{bottom:3.040000pt;}
.yd6{bottom:3.120000pt;}
.y67{bottom:4.080000pt;}
.y68{bottom:14.400000pt;}
.yb2{bottom:16.720000pt;}
.yd8{bottom:18.400000pt;}
.y63{bottom:30.240000pt;}
.yd2{bottom:33.600000pt;}
.yae{bottom:100.880000pt;}
.y87{bottom:101.600000pt;}
.y8f{bottom:106.720000pt;}
.ybf{bottom:107.360000pt;}
.y1e{bottom:108.160000pt;}
.y61{bottom:108.960000pt;}
.yfe{bottom:111.200000pt;}
.ya4{bottom:112.080000pt;}
.y3c{bottom:118.560000pt;}
.ye7{bottom:122.560000pt;}
.y54{bottom:126.560000pt;}
.yd0{bottom:127.200000pt;}
.yad{bottom:131.520000pt;}
.y86{bottom:132.320000pt;}
.y8e{bottom:137.440000pt;}
.ybe{bottom:138.000000pt;}
.y1d{bottom:138.800000pt;}
.y60{bottom:139.600000pt;}
.y7f{bottom:141.840000pt;}
.ya3{bottom:142.720000pt;}
.ya1{bottom:147.200000pt;}
.y3b{bottom:149.200000pt;}
.ye6{bottom:153.200000pt;}
.y53{bottom:157.200000pt;}
.ycf{bottom:157.920000pt;}
.yac{bottom:162.240000pt;}
.y85{bottom:162.960000pt;}
.y8d{bottom:168.080000pt;}
.ybd{bottom:168.720000pt;}
.y1c{bottom:169.440000pt;}
.y5f{bottom:170.320000pt;}
.ya2{bottom:170.400000pt;}
.y7e{bottom:172.560000pt;}
.ya0{bottom:177.920000pt;}
.y3a{bottom:179.840000pt;}
.ye5{bottom:183.840000pt;}
.y52{bottom:187.840000pt;}
.yce{bottom:188.560000pt;}
.yab{bottom:192.880000pt;}
.y84{bottom:193.600000pt;}
.y8c{bottom:198.720000pt;}
.ybc{bottom:199.360000pt;}
.y1b{bottom:200.160000pt;}
.y5e{bottom:200.960000pt;}
.yfd{bottom:203.200000pt;}
.y9f{bottom:208.560000pt;}
.y39{bottom:210.560000pt;}
.ye4{bottom:214.560000pt;}
.y51{bottom:218.560000pt;}
.ycd{bottom:219.200000pt;}
.yaa{bottom:223.520000pt;}
.y83{bottom:224.320000pt;}
.y8b{bottom:226.320000pt;}
.ybb{bottom:230.000000pt;}
.y1a{bottom:230.800000pt;}
.y5d{bottom:231.600000pt;}
.yfc{bottom:233.840000pt;}
.y9e{bottom:239.200000pt;}
.y38{bottom:241.200000pt;}
.ye3{bottom:245.040000pt;}
.ycc{bottom:246.800000pt;}
.y50{bottom:249.200000pt;}
.y82{bottom:251.920000pt;}
.ya9{bottom:254.240000pt;}
.yba{bottom:260.720000pt;}
.y19{bottom:261.440000pt;}
.y5c{bottom:262.320000pt;}
.yfb{bottom:264.480000pt;}
.y9d{bottom:269.840000pt;}
.y37{bottom:271.840000pt;}
.ye2{bottom:275.840000pt;}
.y4f{bottom:279.840000pt;}
.ya8{bottom:284.880000pt;}
.yb9{bottom:291.360000pt;}
.y18{bottom:292.080000pt;}
.y5b{bottom:292.960000pt;}
.yfa{bottom:295.200000pt;}
.y9c{bottom:297.520000pt;}
.y9b{bottom:300.320000pt;}
.y36{bottom:302.480000pt;}
.ye1{bottom:306.480000pt;}
.y4e{bottom:310.480000pt;}
.ya5{bottom:314.400000pt;}
.ya7{bottom:315.520000pt;}
.yb8{bottom:322.000000pt;}
.y17{bottom:322.800000pt;}
.y5a{bottom:323.600000pt;}
.yf9{bottom:325.840000pt;}
.y35{bottom:333.200000pt;}
.ye0{bottom:337.200000pt;}
.y4d{bottom:341.200000pt;}
.ya6{bottom:343.120000pt;}
.yb7{bottom:352.640000pt;}
.y16{bottom:353.440000pt;}
.y59{bottom:354.240000pt;}
.yf8{bottom:356.480000pt;}
.y34{bottom:363.840000pt;}
.ydf{bottom:367.840000pt;}
.y4c{bottom:371.840000pt;}
.yb6{bottom:380.320000pt;}
.y15{bottom:384.080000pt;}
.y58{bottom:384.960000pt;}
.yf7{bottom:387.200000pt;}
.y33{bottom:394.480000pt;}
.y7d{bottom:397.360000pt;}
.yde{bottom:398.480000pt;}
.y4b{bottom:402.480000pt;}
.y14{bottom:414.800000pt;}
.y57{bottom:415.600000pt;}
.yf6{bottom:417.840000pt;}
.y32{bottom:425.200000pt;}
.y7c{bottom:428.000000pt;}
.ydd{bottom:429.200000pt;}
.y9a{bottom:430.960000pt;}
.y4a{bottom:433.200000pt;}
.y13{bottom:445.280000pt;}
.y56{bottom:446.240000pt;}
.yf5{bottom:448.480000pt;}
.y31{bottom:455.840000pt;}
.y7b{bottom:458.720000pt;}
.ydc{bottom:459.840000pt;}
.y99{bottom:461.680000pt;}
.y49{bottom:463.680000pt;}
.y81{bottom:463.840000pt;}
.y55{bottom:473.920000pt;}
.y12{bottom:476.080000pt;}
.yf4{bottom:479.200000pt;}
.y30{bottom:486.480000pt;}
.y7a{bottom:489.360000pt;}
.ydb{bottom:490.480000pt;}
.y98{bottom:492.320000pt;}
.y48{bottom:494.320000pt;}
.y80{bottom:494.480000pt;}
.yda{bottom:503.440000pt;}
.y11{bottom:506.800000pt;}
.yf3{bottom:509.840000pt;}
.y2f{bottom:517.200000pt;}
.yd7{bottom:519.440000pt;}
.y79{bottom:520.000000pt;}
.y97{bottom:522.960000pt;}
.y8a{bottom:525.040000pt;}
.y47{bottom:525.200000pt;}
.y10{bottom:537.440000pt;}
.yf2{bottom:540.480000pt;}
.y2e{bottom:547.840000pt;}
.y78{bottom:550.720000pt;}
.y96{bottom:553.680000pt;}
.y89{bottom:555.680000pt;}
.y46{bottom:555.840000pt;}
.yd5{bottom:566.720000pt;}
.yf{bottom:568.080000pt;}
.yf1{bottom:571.120000pt;}
.y2d{bottom:578.480000pt;}
.y77{bottom:581.360000pt;}
.yd1{bottom:582.720000pt;}
.y95{bottom:584.320000pt;}
.y45{bottom:586.480000pt;}
.ye{bottom:598.720000pt;}
.yd4{bottom:600.960000pt;}
.yf0{bottom:601.840000pt;}
.y2c{bottom:608.960000pt;}
.y76{bottom:612.000000pt;}
.yd3{bottom:614.320000pt;}
.y94{bottom:614.960000pt;}
.y44{bottom:617.120000pt;}
.yef{bottom:632.480000pt;}
.yd{bottom:635.440000pt;}
.y2b{bottom:639.840000pt;}
.y75{bottom:642.720000pt;}
.y93{bottom:645.680000pt;}
.y43{bottom:647.840000pt;}
.yc{bottom:660.080000pt;}
.yee{bottom:663.120000pt;}
.ycb{bottom:664.240000pt;}
.y2a{bottom:670.480000pt;}
.y74{bottom:673.360000pt;}
.y92{bottom:676.320000pt;}
.y42{bottom:678.480000pt;}
.yb5{bottom:682.800000pt;}
.yb{bottom:690.720000pt;}
.yed{bottom:693.840000pt;}
.yca{bottom:694.880000pt;}
.y29{bottom:701.120000pt;}
.y73{bottom:704.000000pt;}
.y91{bottom:706.960000pt;}
.y41{bottom:709.120000pt;}
.yb4{bottom:713.440000pt;}
.y72{bottom:716.880000pt;}
.yec{bottom:724.480000pt;}
.yc9{bottom:725.520000pt;}
.yb3{bottom:726.400000pt;}
.ya{bottom:727.440000pt;}
.y71{bottom:731.360000pt;}
.y28{bottom:731.840000pt;}
.y90{bottom:734.560000pt;}
.y40{bottom:739.840000pt;}
.yb1{bottom:740.880000pt;}
.y70{bottom:745.840000pt;}
.y9{bottom:752.080000pt;}
.yeb{bottom:755.120000pt;}
.yc8{bottom:756.240000pt;}
.y6f{bottom:760.320000pt;}
.y27{bottom:762.480000pt;}
.yb0{bottom:769.120000pt;}
.y3f{bottom:770.480000pt;}
.y6e{bottom:774.800000pt;}
.y8{bottom:782.720000pt;}
.yaf{bottom:783.600000pt;}
.yea{bottom:785.840000pt;}
.yc7{bottom:786.880000pt;}
.y6c{bottom:789.280000pt;}
.y26{bottom:793.120000pt;}
.y3e{bottom:801.120000pt;}
.y6b{bottom:803.680000pt;}
.yc6{bottom:817.520000pt;}
.y69{bottom:818.160000pt;}
.y7{bottom:819.440000pt;}
.y25{bottom:823.840000pt;}
.y88{bottom:831.680000pt;}
.y3d{bottom:831.840000pt;}
.y62{bottom:832.640000pt;}
.y6{bottom:845.840000pt;}
.yc5{bottom:848.240000pt;}
.y64{bottom:849.120000pt;}
.y66{bottom:858.800000pt;}
.ye9{bottom:862.320000pt;}
.y24{bottom:862.480000pt;}
.yc4{bottom:878.720000pt;}
.y5{bottom:879.600000pt;}
.ye8{bottom:892.960000pt;}
.y23{bottom:893.120000pt;}
.yc3{bottom:909.360000pt;}
.y4{bottom:913.280000pt;}
.y22{bottom:923.760000pt;}
.yc2{bottom:940.000000pt;}
.y3{bottom:947.040000pt;}
.yc1{bottom:953.120000pt;}
.y21{bottom:954.480000pt;}
.yc0{bottom:967.600000pt;}
.y2{bottom:980.720000pt;}
.y20{bottom:985.120000pt;}
.y1{bottom:1014.400000pt;}
.y1f{bottom:1015.760000pt;}
.hd{height:13.758667pt;}
.hc{height:13.760000pt;}
.h9{height:13.840000pt;}
.hb{height:13.841333pt;}
.h7{height:15.198667pt;}
.h15{height:15.281333pt;}
.h12{height:15.360000pt;}
.h8{height:25.518667pt;}
.he{height:27.600000pt;}
.h14{height:30.640000pt;}
.h11{height:34.830000pt;}
.h4{height:38.812500pt;}
.h5{height:41.358667pt;}
.hf{height:46.000000pt;}
.ha{height:47.109375pt;}
.h6{height:48.375000pt;}
.h13{height:52.448437pt;}
.h10{height:53.857500pt;}
.h2{height:62.812500pt;}
.h3{height:63.305313pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:40.398667pt;}
.w14{width:43.121333pt;}
.w10{width:44.400000pt;}
.w13{width:45.040000pt;}
.w1a{width:46.638667pt;}
.wf{width:46.720000pt;}
.w12{width:46.800000pt;}
.w11{width:47.118667pt;}
.w7{width:49.280000pt;}
.wd{width:50.801333pt;}
.we{width:54.800000pt;}
.w16{width:61.038667pt;}
.wb{width:63.360000pt;}
.wc{width:63.440000pt;}
.w5{width:66.880000pt;}
.w18{width:67.200000pt;}
.w4{width:74.958667pt;}
.wa{width:75.040000pt;}
.w17{width:78.160000pt;}
.w1b{width:78.161333pt;}
.w19{width:78.240000pt;}
.w2{width:86.320000pt;}
.w6{width:92.480000pt;}
.w8{width:122.478667pt;}
.w3{width:132.960000pt;}
.w15{width:167.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1b{left:7.840000pt;}
.x1f{left:9.440000pt;}
.x40{left:10.480000pt;}
.x9{left:12.720000pt;}
.x22{left:15.440000pt;}
.x13{left:16.400000pt;}
.x17{left:17.600000pt;}
.xf{left:19.920000pt;}
.x36{left:21.280000pt;}
.x2c{left:22.720000pt;}
.x15{left:24.400000pt;}
.x11{left:25.680000pt;}
.x19{left:26.880000pt;}
.xc{left:30.640000pt;}
.x2d{left:31.760000pt;}
.x7{left:33.680000pt;}
.x21{left:36.400000pt;}
.x35{left:37.920000pt;}
.x1d{left:39.040000pt;}
.x48{left:40.240000pt;}
.x3d{left:41.440000pt;}
.x20{left:48.000000pt;}
.x3a{left:54.160000pt;}
.x2b{left:56.480000pt;}
.x1c{left:62.080000pt;}
.x1e{left:73.600000pt;}
.x24{left:79.600000pt;}
.x2{left:81.440000pt;}
.x5{left:89.040000pt;}
.x23{left:102.080000pt;}
.x37{left:106.560000pt;}
.x1{left:113.440000pt;}
.x6{left:169.120000pt;}
.x2e{left:205.120000pt;}
.x26{left:231.200000pt;}
.x2f{left:256.560000pt;}
.x38{left:274.400000pt;}
.x3b{left:295.680000pt;}
.x8{left:302.720000pt;}
.x27{left:306.960000pt;}
.x30{left:312.000000pt;}
.x39{left:324.240000pt;}
.xa{left:332.160000pt;}
.x3c{left:336.080000pt;}
.x3e{left:342.960000pt;}
.x31{left:359.440000pt;}
.x28{left:371.040000pt;}
.xb{left:378.320000pt;}
.x25{left:384.800000pt;}
.xd{left:390.640000pt;}
.x32{left:404.480000pt;}
.x3f{left:414.960000pt;}
.x29{left:435.040000pt;}
.xe{left:445.840000pt;}
.x33{left:452.240000pt;}
.x10{left:475.760000pt;}
.x41{left:482.800000pt;}
.x42{left:489.680000pt;}
.x2a{left:499.120000pt;}
.x12{left:539.040000pt;}
.x34{left:545.440000pt;}
.x14{left:549.440000pt;}
.x43{left:561.680000pt;}
.x45{left:568.640000pt;}
.x16{left:589.040000pt;}
.x44{left:592.880000pt;}
.x46{left:609.040000pt;}
.x47{left:615.840000pt;}
.x18{left:630.080000pt;}
.x1a{left:671.120000pt;}
.x3{left:679.920000pt;}
}




    .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; }
  