
    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_fbd57e55e73bb11d9107dc07.woff')format("woff");}.ff1{font-family:ff1;line-height:0.925500;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_5b108c7a386df18236f16cc2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_af2605a69ad2ab75b28a7e1d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_d1d0c1ac4e4327d04385cf96.woff')format("woff");}.ff4{font-family:ff4;line-height:0.716000;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_b934eb878d022740aefe25cb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_6acc0bb063ccce5ad375dfa3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_579a3af2762f227ec9aaa458.woff')format("woff");}.ff7{font-family:ff7;line-height:0.699000;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_81891f884dd5e67b2401fc9a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.956500;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:ff9;src:url('chunks/assets/font_78c6d588f7b64c18749d335a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923000;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);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:22.854000px;}
.v1{vertical-align:37.488000px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.004332px;}
.lse{letter-spacing:2.984052px;}
.ls3{letter-spacing:2.984928px;}
.ls0{letter-spacing:2.986332px;}
.ls9{letter-spacing:2.987952px;}
.lsf{letter-spacing:2.990052px;}
.ls2{letter-spacing:2.990928px;}
.ls1{letter-spacing:2.992332px;}
.ls6{letter-spacing:15.896052px;}
.ls7{letter-spacing:15.905468px;}
.lsb{letter-spacing:16.756378px;}
.lsd{letter-spacing:16.814052px;}
.ls10{letter-spacing:17.828714px;}
.ls5{letter-spacing:19.304052px;}
.ls8{letter-spacing:19.505471px;}
.lsa{letter-spacing:22.385473px;}
.lsc{letter-spacing:24.290052px;}
.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;}
}
.ws5{word-spacing:-0.123975px;}
.ws3{word-spacing:-0.103292px;}
.ws4{word-spacing:-0.086077px;}
.wsb0{word-spacing:-0.071731px;}
.ws2{word-spacing:-0.065455px;}
.ws36{word-spacing:-0.053798px;}
.ws21{word-spacing:0.000000px;}
.wsc1{word-spacing:9.621826px;}
.wsc6{word-spacing:10.145463px;}
.wsc3{word-spacing:10.996373px;}
.ws40{word-spacing:11.127282px;}
.ws94{word-spacing:11.258191px;}
.ws1d{word-spacing:11.297664px;}
.ws6{word-spacing:11.323646px;}
.wsb3{word-spacing:11.389100px;}
.wsaf{word-spacing:11.454555px;}
.ws50{word-spacing:11.656242px;}
.wsc2{word-spacing:12.043646px;}
.ws91{word-spacing:12.109101px;}
.ws58{word-spacing:12.174556px;}
.wsa6{word-spacing:12.240010px;}
.ws47{word-spacing:12.305465px;}
.ws51{word-spacing:12.313774px;}
.wsa3{word-spacing:12.370919px;}
.ws1c{word-spacing:12.373632px;}
.ws8e{word-spacing:12.501829px;}
.ws15{word-spacing:12.567283px;}
.wsae{word-spacing:12.571000px;}
.ws7{word-spacing:12.698192px;}
.ws2a{word-spacing:12.829102px;}
.ws83{word-spacing:12.894556px;}
.ws6a{word-spacing:12.960011px;}
.ws1e{word-spacing:13.019213px;}
.ws7f{word-spacing:13.090856px;}
.ws2e{word-spacing:13.150632px;}
.ws18{word-spacing:13.156375px;}
.ws55{word-spacing:13.221829px;}
.wsa7{word-spacing:13.287284px;}
.ws14{word-spacing:13.352738px;}
.ws84{word-spacing:13.418193px;}
.ws3f{word-spacing:13.483648px;}
.wsa0{word-spacing:13.549102px;}
.ws34{word-spacing:13.614557px;}
.wsb{word-spacing:13.680011px;}
.ws1f{word-spacing:13.718592px;}
.ws76{word-spacing:13.745466px;}
.ws5a{word-spacing:13.876375px;}
.ws7d{word-spacing:13.927715px;}
.wsa4{word-spacing:13.941830px;}
.ws6b{word-spacing:14.007284px;}
.ws6c{word-spacing:14.032656px;}
.ws13{word-spacing:14.138194px;}
.ws72{word-spacing:14.203648px;}
.ws9{word-spacing:14.269103px;}
.ws9a{word-spacing:14.334557px;}
.ws46{word-spacing:14.400012px;}
.ws54{word-spacing:14.465467px;}
.ws53{word-spacing:14.530921px;}
.ws68{word-spacing:14.596376px;}
.ws8a{word-spacing:14.661830px;}
.ws7e{word-spacing:14.704798px;}
.ws90{word-spacing:14.727285px;}
.ws2c{word-spacing:14.764573px;}
.ws93{word-spacing:14.792740px;}
.ws6f{word-spacing:14.858194px;}
.ws74{word-spacing:14.989103px;}
.ws31{word-spacing:15.054558px;}
.ws9c{word-spacing:15.120013px;}
.ws92{word-spacing:15.185467px;}
.ws2f{word-spacing:15.242778px;}
.ws6d{word-spacing:15.250922px;}
.wsa1{word-spacing:15.316376px;}
.ws56{word-spacing:15.381831px;}
.ws5d{word-spacing:15.512740px;}
.ws95{word-spacing:15.578195px;}
.ws2d{word-spacing:15.601432px;}
.ws26{word-spacing:15.643649px;}
.ws30{word-spacing:15.840013px;}
.ws10{word-spacing:15.905468px;}
.ws1a{word-spacing:15.928653px;}
.ws1b{word-spacing:15.970922px;}
.wsf{word-spacing:16.167286px;}
.ws23{word-spacing:16.232741px;}
.wsb6{word-spacing:16.363650px;}
.ws67{word-spacing:16.429105px;}
.ws9d{word-spacing:16.494559px;}
.ws35{word-spacing:16.560014px;}
.ws24{word-spacing:16.625468px;}
.wsbe{word-spacing:16.685864px;}
.wsbc{word-spacing:16.688610px;}
.wsb8{word-spacing:16.689584px;}
.wsb2{word-spacing:16.689684px;}
.wsb7{word-spacing:16.690256px;}
.ws19{word-spacing:16.690923px;}
.ws8c{word-spacing:16.756378px;}
.ws7c{word-spacing:16.887287px;}
.ws49{word-spacing:17.018196px;}
.ws85{word-spacing:17.083651px;}
.ws6e{word-spacing:17.149105px;}
.wsad{word-spacing:17.214560px;}
.ws71{word-spacing:17.280014px;}
.ws4b{word-spacing:17.358950px;}
.wsa9{word-spacing:17.410924px;}
.wsa8{word-spacing:17.412308px;}
.ws9b{word-spacing:17.476378px;}
.wsc7{word-spacing:17.541833px;}
.ws43{word-spacing:17.607287px;}
.ws39{word-spacing:17.672742px;}
.ws9e{word-spacing:17.738197px;}
.ws52{word-spacing:17.753353px;}
.ws98{word-spacing:17.803651px;}
.ws4e{word-spacing:17.934560px;}
.ws66{word-spacing:18.000015px;}
.ws12{word-spacing:18.065470px;}
.ws42{word-spacing:18.130924px;}
.ws33{word-spacing:18.196379px;}
.ws62{word-spacing:18.261833px;}
.ws2b{word-spacing:18.327288px;}
.ws8f{word-spacing:18.392743px;}
.ws69{word-spacing:18.458197px;}
.wse{word-spacing:18.523652px;}
.ws75{word-spacing:18.654561px;}
.wsa{word-spacing:18.720016px;}
.ws97{word-spacing:18.785470px;}
.wsc{word-spacing:18.850925px;}
.ws4f{word-spacing:18.916379px;}
.wsa2{word-spacing:19.047289px;}
.ws28{word-spacing:19.112743px;}
.wsb5{word-spacing:19.127737px;}
.ws4a{word-spacing:19.178198px;}
.wsc8{word-spacing:19.189951px;}
.wsc5{word-spacing:19.243652px;}
.ws59{word-spacing:19.309107px;}
.ws48{word-spacing:19.374562px;}
.ws32{word-spacing:19.440016px;}
.ws8d{word-spacing:19.505471px;}
.ws64{word-spacing:19.540581px;}
.ws3c{word-spacing:19.570925px;}
.ws3e{word-spacing:19.636380px;}
.wsd{word-spacing:19.701835px;}
.ws60{word-spacing:19.767289px;}
.ws96{word-spacing:19.832744px;}
.ws73{word-spacing:19.898198px;}
.ws57{word-spacing:19.963653px;}
.ws16{word-spacing:20.029108px;}
.ws5c{word-spacing:20.094562px;}
.ws27{word-spacing:20.160017px;}
.ws38{word-spacing:20.290926px;}
.ws86{word-spacing:20.356381px;}
.wsb4{word-spacing:20.421835px;}
.ws17{word-spacing:20.552744px;}
.ws37{word-spacing:20.683654px;}
.ws45{word-spacing:20.749108px;}
.wsc4{word-spacing:20.814563px;}
.ws88{word-spacing:20.880017px;}
.wsa5{word-spacing:20.945472px;}
.ws44{word-spacing:21.010927px;}
.wsbf{word-spacing:21.076381px;}
.ws65{word-spacing:21.141836px;}
.ws87{word-spacing:21.207290px;}
.ws99{word-spacing:21.272745px;}
.wsbb{word-spacing:21.403654px;}
.wsb9{word-spacing:21.469109px;}
.ws3d{word-spacing:21.600018px;}
.ws81{word-spacing:21.730927px;}
.ws25{word-spacing:21.796382px;}
.ws3b{word-spacing:21.861836px;}
.wsb1{word-spacing:21.992746px;}
.ws77{word-spacing:22.123655px;}
.ws5f{word-spacing:22.320019px;}
.ws5e{word-spacing:22.385473px;}
.ws29{word-spacing:22.450928px;}
.ws7b{word-spacing:22.516382px;}
.wsab{word-spacing:22.581837px;}
.ws4d{word-spacing:22.712746px;}
.ws4c{word-spacing:22.759000px;}
.wsac{word-spacing:22.909110px;}
.wsc0{word-spacing:22.974565px;}
.wsaa{word-spacing:23.105474px;}
.ws82{word-spacing:23.301838px;}
.ws3a{word-spacing:23.367292px;}
.ws9f{word-spacing:23.432747px;}
.wsba{word-spacing:23.445209px;}
.ws61{word-spacing:23.694565px;}
.ws70{word-spacing:23.890929px;}
.ws80{word-spacing:24.021838px;}
.ws78{word-spacing:24.152747px;}
.ws5b{word-spacing:24.349111px;}
.ws89{word-spacing:24.480020px;}
.ws79{word-spacing:24.610930px;}
.ws7a{word-spacing:24.611366px;}
.ws63{word-spacing:24.807293px;}
.ws11{word-spacing:24.872748px;}
.wsbd{word-spacing:24.938203px;}
.ws8{word-spacing:25.200021px;}
.ws41{word-spacing:25.330930px;}
.ws8b{word-spacing:25.658203px;}
.ws1{word-spacing:26.339562px;}
.ws22{word-spacing:35.793869px;}
.ws0{word-spacing:35.990869px;}
.ws20{word-spacing:53.715936px;}
._6d{margin-left:-3048.712460px;}
._5e{margin-left:-3029.143605px;}
._6a{margin-left:-2869.292290px;}
._6b{margin-left:-2861.524720px;}
._58{margin-left:-2857.399256px;}
._6e{margin-left:-2850.802049px;}
._29{margin-left:-2846.936195px;}
._2d{margin-left:-2845.273348px;}
._35{margin-left:-2844.193347px;}
._30{margin-left:-2842.044943px;}
._28{margin-left:-2840.570549px;}
._44{margin-left:-2836.482569px;}
._2b{margin-left:-2835.044617px;}
._2a{margin-left:-2833.773635px;}
._14{margin-left:-2824.543391px;}
._e{margin-left:-2823.191828px;}
._11{margin-left:-2819.716222px;}
._15{margin-left:-2814.890764px;}
._12{margin-left:-2812.761563px;}
._f{margin-left:-2811.593343px;}
._d{margin-left:-2802.031061px;}
._b{margin-left:-2801.015816px;}
._c{margin-left:-2790.206001px;}
._a{margin-left:-2788.783184px;}
._3c{margin-left:-2773.651102px;}
._40{margin-left:-2758.206299px;}
._19{margin-left:-2683.356183px;}
._48{margin-left:-2682.094197px;}
._56{margin-left:-2628.037430px;}
._6c{margin-left:-2598.579277px;}
._54{margin-left:-2454.055237px;}
._3e{margin-left:-2359.577421px;}
._70{margin-left:-2345.446710px;}
._4d{margin-left:-2195.178261px;}
._51{margin-left:-2147.652006px;}
._49{margin-left:-2135.286469px;}
._38{margin-left:-2067.936866px;}
._20{margin-left:-2005.785887px;}
._52{margin-left:-1948.286773px;}
._1a{margin-left:-1934.371626px;}
._5d{margin-left:-1910.685886px;}
._4f{margin-left:-1795.430764px;}
._64{margin-left:-1760.860403px;}
._5c{margin-left:-1758.831886px;}
._46{margin-left:-1744.233344px;}
._62{margin-left:-1740.274538px;}
._26{margin-left:-1719.760907px;}
._2e{margin-left:-1701.867237px;}
._9{margin-left:-1681.385749px;}
._2f{margin-left:-1656.049017px;}
._1e{margin-left:-1643.556839px;}
._50{margin-left:-1624.463327px;}
._39{margin-left:-1623.332482px;}
._45{margin-left:-1611.699377px;}
._53{margin-left:-1583.529855px;}
._3a{margin-left:-1568.078035px;}
._2c{margin-left:-1493.640408px;}
._13{margin-left:-1464.772981px;}
._16{margin-left:-1463.746004px;}
._18{margin-left:-1452.575230px;}
._6f{margin-left:-1448.128479px;}
._3d{margin-left:-1395.485020px;}
._55{margin-left:-1329.749572px;}
._43{margin-left:-1190.481212px;}
._34{margin-left:-1049.535497px;}
._21{margin-left:-1020.362729px;}
._4c{margin-left:-992.911885px;}
._47{margin-left:-975.945479px;}
._37{margin-left:-931.777288px;}
._68{margin-left:-927.366586px;}
._33{margin-left:-832.619785px;}
._5b{margin-left:-831.298509px;}
._59{margin-left:-830.105536px;}
._42{margin-left:-783.266184px;}
._4a{margin-left:-768.337152px;}
._69{margin-left:-755.548261px;}
._3f{margin-left:-731.216286px;}
._67{margin-left:-686.820931px;}
._71{margin-left:-650.735266px;}
._31{margin-left:-514.018687px;}
._41{margin-left:-446.083027px;}
._61{margin-left:-444.553276px;}
._25{margin-left:-418.904989px;}
._1d{margin-left:-8.046366px;}
._0{margin-left:-5.948904px;}
._3{margin-left:-4.907846px;}
._5{margin-left:-3.735492px;}
._1{margin-left:-2.230839px;}
._2{margin-left:-1.041058px;}
._57{width:1.491296px;}
._4{width:2.914973px;}
._5a{width:4.165673px;}
._66{width:5.238571px;}
._65{width:6.421624px;}
._5f{width:8.284920px;}
._60{width:9.322368px;}
._3b{width:12.375469px;}
._10{width:13.957978px;}
._6{width:15.190017px;}
._36{width:16.629185px;}
._1b{width:17.682674px;}
._1c{width:18.725398px;}
._24{width:20.426385px;}
._22{width:22.349094px;}
._32{width:23.863471px;}
._27{width:24.892666px;}
._63{width:26.061696px;}
._17{width:32.727300px;}
._1f{width:35.865600px;}
._7{width:54.014566px;}
._4e{width:2388.405116px;}
._4b{width:2389.700664px;}
._8{width:2425.762332px;}
._23{width:2427.664332px;}
.fc1{color:rgb(52,110,146);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs9{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs7{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.fs4{font-size:123.975000px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y41{bottom:78.112500px;}
.y6b{bottom:108.000000px;}
.y40{bottom:113.713500px;}
.y14e{bottom:119.922000px;}
.y3f{bottom:130.834500px;}
.y6a{bottom:131.565000px;}
.y26{bottom:141.222000px;}
.y14d{bottom:143.487000px;}
.y102{bottom:147.955500px;}
.y69{bottom:155.130000px;}
.ydc{bottom:156.483000px;}
.y25{bottom:160.650000px;}
.y101{bottom:165.076500px;}
.y14c{bottom:167.052000px;}
.y3e{bottom:171.943500px;}
.y68{bottom:178.695000px;}
.y127{bottom:179.475000px;}
.ydb{bottom:180.048000px;}
.y100{bottom:182.197500px;}
.y14b{bottom:190.617000px;}
.y3d{bottom:195.508500px;}
.yff{bottom:199.318500px;}
.y67{bottom:202.260000px;}
.y126{bottom:203.040000px;}
.yda{bottom:203.613000px;}
.y24{bottom:204.942000px;}
.y14a{bottom:214.182000px;}
.y3c{bottom:219.075000px;}
.y23{bottom:224.317500px;}
.y85{bottom:225.825000px;}
.y125{bottom:226.605000px;}
.yd9{bottom:228.814500px;}
.y66{bottom:234.105000px;}
.yfe{bottom:235.375500px;}
.y149{bottom:237.748500px;}
.y3b{bottom:242.640000px;}
.y22{bottom:243.543000px;}
.yaa{bottom:249.390000px;}
.y124{bottom:250.170000px;}
.y84{bottom:250.308000px;}
.yd8{bottom:252.379500px;}
.yfd{bottom:258.940500px;}
.y148{bottom:261.313500px;}
.y21{bottom:262.918500px;}
.y3a{bottom:266.205000px;}
.y65{bottom:269.520000px;}
.ya9{bottom:272.955000px;}
.y123{bottom:273.735000px;}
.y83{bottom:273.873000px;}
.yd7{bottom:275.944500px;}
.yfc{bottom:282.505500px;}
.y147{bottom:284.878500px;}
.y20{bottom:287.979000px;}
.y39{bottom:289.770000px;}
.ya8{bottom:296.520000px;}
.y122{bottom:297.301500px;}
.y82{bottom:297.438000px;}
.yd6{bottom:299.509500px;}
.yfb{bottom:306.070500px;}
.y146{bottom:308.443500px;}
.y64{bottom:309.865500px;}
.y38{bottom:313.335000px;}
.ya7{bottom:320.085000px;}
.y121{bottom:320.866500px;}
.y81{bottom:321.004500px;}
.y1f{bottom:327.037500px;}
.yfa{bottom:329.635500px;}
.y145{bottom:332.008500px;}
.yd5{bottom:332.893500px;}
.y63{bottom:333.430500px;}
.y120{bottom:344.431500px;}
.y80{bottom:344.569500px;}
.ya6{bottom:345.502500px;}
.y1e{bottom:346.465500px;}
.yb6{bottom:352.852500px;}
.yf9{bottom:353.200500px;}
.y144{bottom:355.573500px;}
.y62{bottom:356.995500px;}
.y37{bottom:366.142500px;}
.y11f{bottom:367.996500px;}
.y7f{bottom:368.134500px;}
.ya5{bottom:369.067500px;}
.yb5{bottom:376.417500px;}
.yf8{bottom:376.765500px;}
.y143{bottom:379.138500px;}
.y61{bottom:380.560500px;}
.yd4{bottom:382.704000px;}
.y36{bottom:384.075000px;}
.y1d{bottom:390.757500px;}
.y7e{bottom:391.699500px;}
.y11e{bottom:392.341500px;}
.ya4{bottom:392.632500px;}
.yb4{bottom:399.982500px;}
.yf7{bottom:400.330500px;}
.y35{bottom:402.007500px;}
.y142{bottom:402.703500px;}
.y60{bottom:404.125500px;}
.yd3{bottom:406.269000px;}
.y15b{bottom:409.374000px;}
.y1c{bottom:410.184000px;}
.y7d{bottom:415.264500px;}
.y11d{bottom:415.906500px;}
.ya3{bottom:416.197500px;}
.yb3{bottom:423.547500px;}
.yf6{bottom:423.895500px;}
.y141{bottom:426.268500px;}
.y5f{bottom:427.692000px;}
.y1b{bottom:429.610500px;}
.yd2{bottom:429.834000px;}
.y15a{bottom:432.939000px;}
.y11c{bottom:439.471500px;}
.y7c{bottom:439.747500px;}
.ya2{bottom:439.762500px;}
.yb2{bottom:447.112500px;}
.yf5{bottom:447.460500px;}
.y1a{bottom:449.038500px;}
.y140{bottom:449.833500px;}
.y5e{bottom:451.257000px;}
.yd1{bottom:453.399000px;}
.y159{bottom:456.504000px;}
.y11b{bottom:463.036500px;}
.y7b{bottom:463.312500px;}
.ya1{bottom:463.329000px;}
.y19{bottom:468.465000px;}
.yb1{bottom:470.677500px;}
.yf4{bottom:471.027000px;}
.y13f{bottom:473.398500px;}
.y5d{bottom:474.822000px;}
.yd0{bottom:476.964000px;}
.y158{bottom:480.069000px;}
.y11a{bottom:486.601500px;}
.y7a{bottom:486.877500px;}
.ya0{bottom:486.894000px;}
.y18{bottom:487.893000px;}
.yb0{bottom:494.242500px;}
.y13e{bottom:496.963500px;}
.y5c{bottom:498.387000px;}
.ycf{bottom:500.529000px;}
.y157{bottom:503.634000px;}
.yf3{bottom:503.817000px;}
.y17{bottom:507.319500px;}
.y119{bottom:510.166500px;}
.y79{bottom:510.442500px;}
.y9f{bottom:510.459000px;}
.yaf{bottom:517.809000px;}
.y13d{bottom:520.528500px;}
.y5b{bottom:521.952000px;}
.yce{bottom:524.094000px;}
.y16{bottom:526.747500px;}
.y156{bottom:527.199000px;}
.y118{bottom:533.731500px;}
.y78{bottom:534.007500px;}
.y9e{bottom:534.024000px;}
.yae{bottom:541.374000px;}
.y13c{bottom:544.093500px;}
.y5a{bottom:545.517000px;}
.y15{bottom:546.174000px;}
.yf2{bottom:547.633500px;}
.ycd{bottom:547.659000px;}
.y155{bottom:550.764000px;}
.y117{bottom:557.296500px;}
.y77{bottom:557.572500px;}
.y14{bottom:565.600500px;}
.y9d{bottom:567.622500px;}
.y13b{bottom:567.658500px;}
.y59{bottom:569.082000px;}
.yf1{bottom:571.198500px;}
.ycc{bottom:571.224000px;}
.y154{bottom:574.329000px;}
.y116{bottom:580.861500px;}
.y76{bottom:581.137500px;}
.y13{bottom:585.028500px;}
.y13a{bottom:591.223500px;}
.y58{bottom:592.647000px;}
.yf0{bottom:594.763500px;}
.ycb{bottom:594.789000px;}
.y153{bottom:597.894000px;}
.y115{bottom:604.426500px;}
.y12{bottom:604.455000px;}
.y75{bottom:604.702500px;}
.y139{bottom:614.788500px;}
.y57{bottom:616.212000px;}
.yef{bottom:618.328500px;}
.yca{bottom:618.354000px;}
.y9c{bottom:619.606500px;}
.y152{bottom:621.459000px;}
.y11{bottom:623.883000px;}
.y74{bottom:628.267500px;}
.y138{bottom:638.353500px;}
.y114{bottom:638.485500px;}
.y56{bottom:639.777000px;}
.yee{bottom:641.893500px;}
.yc9{bottom:641.919000px;}
.y9b{bottom:643.171500px;}
.y10{bottom:643.309500px;}
.y151{bottom:645.024000px;}
.y73{bottom:651.832500px;}
.yad{bottom:657.727500px;}
.y137{bottom:661.918500px;}
.yf{bottom:662.737500px;}
.y55{bottom:663.342000px;}
.yed{bottom:665.458500px;}
.yc8{bottom:665.484000px;}
.y9a{bottom:666.736500px;}
.y150{bottom:668.589000px;}
.y72{bottom:675.397500px;}
.yac{bottom:675.661500px;}
.ye{bottom:682.164000px;}
.y136{bottom:685.485000px;}
.y54{bottom:686.907000px;}
.y113{bottom:688.384500px;}
.yc7{bottom:689.050500px;}
.yec{bottom:690.067500px;}
.y99{bottom:690.301500px;}
.y14f{bottom:692.154000px;}
.yab{bottom:693.594000px;}
.y71{bottom:698.962500px;}
.yd{bottom:701.590500px;}
.y135{bottom:709.050000px;}
.y53{bottom:710.472000px;}
.y112{bottom:711.949500px;}
.yc6{bottom:712.615500px;}
.yeb{bottom:713.632500px;}
.y98{bottom:715.719000px;}
.yc{bottom:721.018500px;}
.y70{bottom:723.445500px;}
.y134{bottom:732.615000px;}
.y52{bottom:734.037000px;}
.y111{bottom:735.514500px;}
.yc5{bottom:736.180500px;}
.yea{bottom:737.197500px;}
.y97{bottom:739.284000px;}
.yb{bottom:740.445000px;}
.y6f{bottom:747.012000px;}
.y51{bottom:757.602000px;}
.y110{bottom:759.079500px;}
.yc4{bottom:759.745500px;}
.ya{bottom:759.873000px;}
.ye9{bottom:760.762500px;}
.y96{bottom:762.849000px;}
.y133{bottom:765.892500px;}
.y9{bottom:779.299500px;}
.y10f{bottom:782.644500px;}
.ye8{bottom:784.327500px;}
.y95{bottom:786.414000px;}
.y50{bottom:789.447000px;}
.yc3{bottom:793.128000px;}
.y6e{bottom:797.095500px;}
.y132{bottom:804.870000px;}
.y10e{bottom:806.209500px;}
.y8{bottom:807.015000px;}
.ye7{bottom:807.892500px;}
.y94{bottom:809.979000px;}
.y6d{bottom:815.028000px;}
.y4f{bottom:823.713000px;}
.y10d{bottom:829.774500px;}
.ye6{bottom:831.457500px;}
.y6c{bottom:832.960500px;}
.y93{bottom:833.544000px;}
.y131{bottom:838.149000px;}
.yc2{bottom:842.938500px;}
.y34{bottom:843.090000px;}
.y4e{bottom:847.278000px;}
.y10c{bottom:853.339500px;}
.ye5{bottom:855.022500px;}
.y92{bottom:857.110500px;}
.yc1{bottom:866.503500px;}
.y33{bottom:866.655000px;}
.y4d{bottom:870.844500px;}
.y7{bottom:875.706000px;}
.y10b{bottom:876.904500px;}
.y130{bottom:877.125000px;}
.ye4{bottom:879.631500px;}
.y91{bottom:880.675500px;}
.yc0{bottom:890.068500px;}
.y32{bottom:890.220000px;}
.y4c{bottom:894.409500px;}
.y10a{bottom:900.469500px;}
.y12f{bottom:900.690000px;}
.ye3{bottom:903.196500px;}
.y90{bottom:904.240500px;}
.ybf{bottom:913.635000px;}
.y31{bottom:913.785000px;}
.y4b{bottom:917.974500px;}
.y6{bottom:922.627500px;}
.y109{bottom:924.034500px;}
.y12e{bottom:924.255000px;}
.ye2{bottom:926.761500px;}
.y8f{bottom:927.805500px;}
.ybe{bottom:937.200000px;}
.y30{bottom:937.350000px;}
.y4a{bottom:941.539500px;}
.ye1{bottom:950.326500px;}
.y8e{bottom:951.370500px;}
.y5{bottom:952.515000px;}
.y108{bottom:956.562000px;}
.y12d{bottom:957.534000px;}
.ybd{bottom:960.765000px;}
.y2f{bottom:960.915000px;}
.y49{bottom:965.104500px;}
.ye0{bottom:973.891500px;}
.y8d{bottom:974.935500px;}
.y4{bottom:982.402500px;}
.ybc{bottom:984.330000px;}
.y2e{bottom:984.480000px;}
.y48{bottom:988.669500px;}
.y12c{bottom:996.510000px;}
.ydf{bottom:997.456500px;}
.y107{bottom:997.720500px;}
.y8c{bottom:998.500500px;}
.ybb{bottom:1007.895000px;}
.y2d{bottom:1008.045000px;}
.y47{bottom:1012.234500px;}
.y12b{bottom:1020.076500px;}
.yde{bottom:1021.021500px;}
.y106{bottom:1021.285500px;}
.y8b{bottom:1022.065500px;}
.yba{bottom:1031.460000px;}
.y2c{bottom:1031.610000px;}
.y46{bottom:1035.799500px;}
.y3{bottom:1037.155500px;}
.y12a{bottom:1043.641500px;}
.ydd{bottom:1044.586500px;}
.y105{bottom:1044.850500px;}
.y8a{bottom:1045.630500px;}
.yb9{bottom:1055.025000px;}
.y2b{bottom:1055.175000px;}
.y45{bottom:1059.364500px;}
.y129{bottom:1067.206500px;}
.y104{bottom:1068.415500px;}
.y89{bottom:1069.195500px;}
.yb8{bottom:1078.590000px;}
.y2a{bottom:1078.740000px;}
.y2{bottom:1081.987500px;}
.y44{bottom:1082.929500px;}
.y103{bottom:1091.980500px;}
.y88{bottom:1092.760500px;}
.y128{bottom:1100.484000px;}
.yb7{bottom:1102.155000px;}
.y29{bottom:1102.305000px;}
.y43{bottom:1106.494500px;}
.y87{bottom:1116.325500px;}
.y1{bottom:1126.819500px;}
.y28{bottom:1137.070500px;}
.y42{bottom:1138.339500px;}
.y86{bottom:1139.890500px;}
.y27{bottom:1181.584500px;}
.h10{height:27.813773px;}
.hc{height:28.327576px;}
.h8{height:41.720659px;}
.h11{height:44.312764px;}
.hb{height:46.145493px;}
.hf{height:46.355978px;}
.ha{height:48.763677px;}
.h7{height:50.760042px;}
.hd{height:53.439744px;}
.h12{height:60.832875px;}
.he{height:60.838875px;}
.h5{height:64.557900px;}
.h9{height:64.574659px;}
.h4{height:88.242042px;}
.h3{height:88.248042px;}
.h6{height:92.361375px;}
.h2{height:110.798337px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:65.481000px;}
.xb{left:76.384500px;}
.x3{left:87.498000px;}
.x6{left:108.000000px;}
.x2{left:131.460000px;}
.x1{left:132.544500px;}
.x7{left:161.797500px;}
.x11{left:203.073000px;}
.xa{left:299.475000px;}
.x9{left:309.612000px;}
.x10{left:329.634000px;}
.xe{left:367.794000px;}
.x5{left:385.068000px;}
.xc{left:391.116000px;}
.x12{left:402.360000px;}
.xf{left:410.484000px;}
.xd{left:437.866500px;}
.x8{left:442.161000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:20.314667pt;}
.v1{vertical-align:33.322667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.003851pt;}
.lse{letter-spacing:2.652491pt;}
.ls3{letter-spacing:2.653269pt;}
.ls0{letter-spacing:2.654517pt;}
.ls9{letter-spacing:2.655957pt;}
.lsf{letter-spacing:2.657824pt;}
.ls2{letter-spacing:2.658603pt;}
.ls1{letter-spacing:2.659851pt;}
.ls6{letter-spacing:14.129824pt;}
.ls7{letter-spacing:14.138194pt;}
.lsb{letter-spacing:14.894558pt;}
.lsd{letter-spacing:14.945824pt;}
.ls10{letter-spacing:15.847746pt;}
.ls5{letter-spacing:17.159157pt;}
.ls8{letter-spacing:17.338196pt;}
.lsa{letter-spacing:19.898198pt;}
.lsc{letter-spacing:21.591157pt;}
.ws5{word-spacing:-0.110200pt;}
.ws3{word-spacing:-0.091815pt;}
.ws4{word-spacing:-0.076513pt;}
.wsb0{word-spacing:-0.063761pt;}
.ws2{word-spacing:-0.058182pt;}
.ws36{word-spacing:-0.047821pt;}
.ws21{word-spacing:0.000000pt;}
.wsc1{word-spacing:8.552734pt;}
.wsc6{word-spacing:9.018189pt;}
.wsc3{word-spacing:9.774554pt;}
.ws40{word-spacing:9.890917pt;}
.ws94{word-spacing:10.007281pt;}
.ws1d{word-spacing:10.042368pt;}
.ws6{word-spacing:10.065463pt;}
.wsb3{word-spacing:10.123645pt;}
.wsaf{word-spacing:10.181827pt;}
.ws50{word-spacing:10.361104pt;}
.wsc2{word-spacing:10.705463pt;}
.ws91{word-spacing:10.763645pt;}
.ws58{word-spacing:10.821827pt;}
.wsa6{word-spacing:10.880009pt;}
.ws47{word-spacing:10.938191pt;}
.ws51{word-spacing:10.945577pt;}
.wsa3{word-spacing:10.996373pt;}
.ws1c{word-spacing:10.998784pt;}
.ws8e{word-spacing:11.112737pt;}
.ws15{word-spacing:11.170918pt;}
.wsae{word-spacing:11.174222pt;}
.ws7{word-spacing:11.287282pt;}
.ws2a{word-spacing:11.403646pt;}
.ws83{word-spacing:11.461828pt;}
.ws6a{word-spacing:11.520010pt;}
.ws1e{word-spacing:11.572634pt;}
.ws7f{word-spacing:11.636317pt;}
.ws2e{word-spacing:11.689451pt;}
.ws18{word-spacing:11.694555pt;}
.ws55{word-spacing:11.752737pt;}
.wsa7{word-spacing:11.810919pt;}
.ws14{word-spacing:11.869101pt;}
.ws84{word-spacing:11.927283pt;}
.ws3f{word-spacing:11.985465pt;}
.wsa0{word-spacing:12.043646pt;}
.ws34{word-spacing:12.101828pt;}
.wsb{word-spacing:12.160010pt;}
.ws1f{word-spacing:12.194304pt;}
.ws76{word-spacing:12.218192pt;}
.ws5a{word-spacing:12.334556pt;}
.ws7d{word-spacing:12.380191pt;}
.wsa4{word-spacing:12.392738pt;}
.ws6b{word-spacing:12.450919pt;}
.ws6c{word-spacing:12.473472pt;}
.ws13{word-spacing:12.567283pt;}
.ws72{word-spacing:12.625465pt;}
.ws9{word-spacing:12.683647pt;}
.ws9a{word-spacing:12.741829pt;}
.ws46{word-spacing:12.800011pt;}
.ws54{word-spacing:12.858193pt;}
.ws53{word-spacing:12.916374pt;}
.ws68{word-spacing:12.974556pt;}
.ws8a{word-spacing:13.032738pt;}
.ws7e{word-spacing:13.070931pt;}
.ws90{word-spacing:13.090920pt;}
.ws2c{word-spacing:13.124065pt;}
.ws93{word-spacing:13.149102pt;}
.ws6f{word-spacing:13.207284pt;}
.ws74{word-spacing:13.323647pt;}
.ws31{word-spacing:13.381829pt;}
.ws9c{word-spacing:13.440011pt;}
.ws92{word-spacing:13.498193pt;}
.ws2f{word-spacing:13.549136pt;}
.ws6d{word-spacing:13.556375pt;}
.wsa1{word-spacing:13.614557pt;}
.ws56{word-spacing:13.672739pt;}
.ws5d{word-spacing:13.789102pt;}
.ws95{word-spacing:13.847284pt;}
.ws2d{word-spacing:13.867939pt;}
.ws26{word-spacing:13.905466pt;}
.ws30{word-spacing:14.080012pt;}
.ws10{word-spacing:14.138194pt;}
.ws1a{word-spacing:14.158803pt;}
.ws1b{word-spacing:14.196375pt;}
.wsf{word-spacing:14.370921pt;}
.ws23{word-spacing:14.429103pt;}
.wsb6{word-spacing:14.545467pt;}
.ws67{word-spacing:14.603649pt;}
.ws9d{word-spacing:14.661830pt;}
.ws35{word-spacing:14.720012pt;}
.ws24{word-spacing:14.778194pt;}
.wsbe{word-spacing:14.831879pt;}
.wsbc{word-spacing:14.834320pt;}
.wsb8{word-spacing:14.835186pt;}
.wsb2{word-spacing:14.835275pt;}
.wsb7{word-spacing:14.835783pt;}
.ws19{word-spacing:14.836376pt;}
.ws8c{word-spacing:14.894558pt;}
.ws7c{word-spacing:15.010922pt;}
.ws49{word-spacing:15.127285pt;}
.ws85{word-spacing:15.185467pt;}
.ws6e{word-spacing:15.243649pt;}
.wsad{word-spacing:15.301831pt;}
.ws71{word-spacing:15.360013pt;}
.ws4b{word-spacing:15.430178pt;}
.wsa9{word-spacing:15.476377pt;}
.wsa8{word-spacing:15.477607pt;}
.ws9b{word-spacing:15.534558pt;}
.wsc7{word-spacing:15.592740pt;}
.ws43{word-spacing:15.650922pt;}
.ws39{word-spacing:15.709104pt;}
.ws9e{word-spacing:15.767286pt;}
.ws52{word-spacing:15.780758pt;}
.ws98{word-spacing:15.825468pt;}
.ws4e{word-spacing:15.941831pt;}
.ws66{word-spacing:16.000013pt;}
.ws12{word-spacing:16.058195pt;}
.ws42{word-spacing:16.116377pt;}
.ws33{word-spacing:16.174559pt;}
.ws62{word-spacing:16.232741pt;}
.ws2b{word-spacing:16.290923pt;}
.ws8f{word-spacing:16.349105pt;}
.ws69{word-spacing:16.407286pt;}
.wse{word-spacing:16.465468pt;}
.ws75{word-spacing:16.581832pt;}
.wsa{word-spacing:16.640014pt;}
.ws97{word-spacing:16.698196pt;}
.wsc{word-spacing:16.756378pt;}
.ws4f{word-spacing:16.814559pt;}
.wsa2{word-spacing:16.930923pt;}
.ws28{word-spacing:16.989105pt;}
.wsb5{word-spacing:17.002433pt;}
.ws4a{word-spacing:17.047287pt;}
.wsc8{word-spacing:17.057734pt;}
.wsc5{word-spacing:17.105469pt;}
.ws59{word-spacing:17.163651pt;}
.ws48{word-spacing:17.221833pt;}
.ws32{word-spacing:17.280014pt;}
.ws8d{word-spacing:17.338196pt;}
.ws64{word-spacing:17.369405pt;}
.ws3c{word-spacing:17.396378pt;}
.ws3e{word-spacing:17.454560pt;}
.wsd{word-spacing:17.512742pt;}
.ws60{word-spacing:17.570924pt;}
.ws96{word-spacing:17.629106pt;}
.ws73{word-spacing:17.687287pt;}
.ws57{word-spacing:17.745469pt;}
.ws16{word-spacing:17.803651pt;}
.ws5c{word-spacing:17.861833pt;}
.ws27{word-spacing:17.920015pt;}
.ws38{word-spacing:18.036379pt;}
.ws86{word-spacing:18.094561pt;}
.wsb4{word-spacing:18.152742pt;}
.ws17{word-spacing:18.269106pt;}
.ws37{word-spacing:18.385470pt;}
.ws45{word-spacing:18.443652pt;}
.wsc4{word-spacing:18.501834pt;}
.ws88{word-spacing:18.560015pt;}
.wsa5{word-spacing:18.618197pt;}
.ws44{word-spacing:18.676379pt;}
.wsbf{word-spacing:18.734561pt;}
.ws65{word-spacing:18.792743pt;}
.ws87{word-spacing:18.850925pt;}
.ws99{word-spacing:18.909107pt;}
.wsbb{word-spacing:19.025470pt;}
.wsb9{word-spacing:19.083652pt;}
.ws3d{word-spacing:19.200016pt;}
.ws81{word-spacing:19.316380pt;}
.ws25{word-spacing:19.374562pt;}
.ws3b{word-spacing:19.432743pt;}
.wsb1{word-spacing:19.549107pt;}
.ws77{word-spacing:19.665471pt;}
.ws5f{word-spacing:19.840017pt;}
.ws5e{word-spacing:19.898198pt;}
.ws29{word-spacing:19.956380pt;}
.ws7b{word-spacing:20.014562pt;}
.wsab{word-spacing:20.072744pt;}
.ws4d{word-spacing:20.189108pt;}
.ws4c{word-spacing:20.230222pt;}
.wsac{word-spacing:20.363653pt;}
.wsc0{word-spacing:20.421835pt;}
.wsaa{word-spacing:20.538199pt;}
.ws82{word-spacing:20.712745pt;}
.ws3a{word-spacing:20.770926pt;}
.ws9f{word-spacing:20.829108pt;}
.wsba{word-spacing:20.840186pt;}
.ws61{word-spacing:21.061836pt;}
.ws70{word-spacing:21.236381pt;}
.ws80{word-spacing:21.352745pt;}
.ws78{word-spacing:21.469109pt;}
.ws5b{word-spacing:21.643654pt;}
.ws89{word-spacing:21.760018pt;}
.ws79{word-spacing:21.876382pt;}
.ws7a{word-spacing:21.876770pt;}
.ws63{word-spacing:22.050927pt;}
.ws11{word-spacing:22.109109pt;}
.wsbd{word-spacing:22.167291pt;}
.ws8{word-spacing:22.400019pt;}
.ws41{word-spacing:22.516382pt;}
.ws8b{word-spacing:22.807292pt;}
.ws1{word-spacing:23.412944pt;}
.ws22{word-spacing:31.816772pt;}
.ws0{word-spacing:31.991884pt;}
.ws20{word-spacing:47.747499pt;}
._6d{margin-left:-2709.966631pt;}
._5e{margin-left:-2692.572093pt;}
._6a{margin-left:-2550.482035pt;}
._6b{margin-left:-2543.577529pt;}
._58{margin-left:-2539.910450pt;}
._6e{margin-left:-2534.046266pt;}
._29{margin-left:-2530.609951pt;}
._2d{margin-left:-2529.131865pt;}
._35{margin-left:-2528.171864pt;}
._30{margin-left:-2526.262172pt;}
._28{margin-left:-2524.951599pt;}
._44{margin-left:-2521.317839pt;}
._2b{margin-left:-2520.039659pt;}
._2a{margin-left:-2518.909898pt;}
._14{margin-left:-2510.705237pt;}
._e{margin-left:-2509.503847pt;}
._11{margin-left:-2506.414420pt;}
._15{margin-left:-2502.125124pt;}
._12{margin-left:-2500.232501pt;}
._f{margin-left:-2499.194082pt;}
._d{margin-left:-2490.694276pt;}
._b{margin-left:-2489.791837pt;}
._c{margin-left:-2480.183112pt;}
._a{margin-left:-2478.918386pt;}
._3c{margin-left:-2465.467646pt;}
._40{margin-left:-2451.738933pt;}
._19{margin-left:-2385.205496pt;}
._48{margin-left:-2384.083731pt;}
._56{margin-left:-2336.033271pt;}
._6c{margin-left:-2309.848246pt;}
._54{margin-left:-2181.382433pt;}
._3e{margin-left:-2097.402152pt;}
._70{margin-left:-2084.841520pt;}
._4d{margin-left:-1951.269565pt;}
._51{margin-left:-1909.024005pt;}
._49{margin-left:-1898.032417pt;}
._38{margin-left:-1838.166103pt;}
._20{margin-left:-1782.920788pt;}
._52{margin-left:-1731.810465pt;}
._1a{margin-left:-1719.441446pt;}
._5d{margin-left:-1698.387454pt;}
._4f{margin-left:-1595.938457pt;}
._64{margin-left:-1565.209247pt;}
._5c{margin-left:-1563.406121pt;}
._46{margin-left:-1550.429639pt;}
._62{margin-left:-1546.910700pt;}
._26{margin-left:-1528.676362pt;}
._2e{margin-left:-1512.770877pt;}
._9{margin-left:-1494.565110pt;}
._2f{margin-left:-1472.043571pt;}
._1e{margin-left:-1460.939412pt;}
._50{margin-left:-1443.967402pt;}
._39{margin-left:-1442.962206pt;}
._45{margin-left:-1432.621668pt;}
._53{margin-left:-1407.582094pt;}
._3a{margin-left:-1393.847142pt;}
._2c{margin-left:-1327.680362pt;}
._13{margin-left:-1302.020428pt;}
._16{margin-left:-1301.107559pt;}
._18{margin-left:-1291.177982pt;}
._6f{margin-left:-1287.225315pt;}
._3d{margin-left:-1240.431129pt;}
._55{margin-left:-1181.999619pt;}
._43{margin-left:-1058.205522pt;}
._34{margin-left:-932.920441pt;}
._21{margin-left:-906.989093pt;}
._4c{margin-left:-882.588342pt;}
._47{margin-left:-867.507092pt;}
._37{margin-left:-828.246479pt;}
._68{margin-left:-824.325854pt;}
._33{margin-left:-740.106475pt;}
._5b{margin-left:-738.932008pt;}
._59{margin-left:-737.871588pt;}
._42{margin-left:-696.236608pt;}
._4a{margin-left:-682.966358pt;}
._69{margin-left:-671.598454pt;}
._3f{margin-left:-649.970032pt;}
._67{margin-left:-610.507494pt;}
._71{margin-left:-578.431347pt;}
._31{margin-left:-456.905499pt;}
._41{margin-left:-396.518246pt;}
._61{margin-left:-395.158467pt;}
._25{margin-left:-372.359991pt;}
._1d{margin-left:-7.152325pt;}
._0{margin-left:-5.287915pt;}
._3{margin-left:-4.362530pt;}
._5{margin-left:-3.320437pt;}
._1{margin-left:-1.982968pt;}
._2{margin-left:-0.925385pt;}
._57{width:1.325597pt;}
._4{width:2.591087pt;}
._5a{width:3.702820pt;}
._66{width:4.656508pt;}
._65{width:5.708110pt;}
._5f{width:7.364373pt;}
._60{width:8.286549pt;}
._3b{width:11.000417pt;}
._10{width:12.407091pt;}
._6{width:13.502237pt;}
._36{width:14.781498pt;}
._1b{width:15.717933pt;}
._1c{width:16.644798pt;}
._24{width:18.156787pt;}
._22{width:19.865861pt;}
._32{width:21.211974pt;}
._27{width:22.126814pt;}
._63{width:23.165952pt;}
._17{width:29.090933pt;}
._1f{width:31.880533pt;}
._7{width:48.012947pt;}
._4e{width:2123.026770pt;}
._4b{width:2124.178368pt;}
._8{width:2156.233184pt;}
._23{width:2157.923851pt;}
.fsa{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs9{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs7{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.fs4{font-size:110.200000pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:69.433333pt;}
.y6b{bottom:96.000000pt;}
.y40{bottom:101.078667pt;}
.y14e{bottom:106.597333pt;}
.y3f{bottom:116.297333pt;}
.y6a{bottom:116.946667pt;}
.y26{bottom:125.530667pt;}
.y14d{bottom:127.544000pt;}
.y102{bottom:131.516000pt;}
.y69{bottom:137.893333pt;}
.ydc{bottom:139.096000pt;}
.y25{bottom:142.800000pt;}
.y101{bottom:146.734667pt;}
.y14c{bottom:148.490667pt;}
.y3e{bottom:152.838667pt;}
.y68{bottom:158.840000pt;}
.y127{bottom:159.533333pt;}
.ydb{bottom:160.042667pt;}
.y100{bottom:161.953333pt;}
.y14b{bottom:169.437333pt;}
.y3d{bottom:173.785333pt;}
.yff{bottom:177.172000pt;}
.y67{bottom:179.786667pt;}
.y126{bottom:180.480000pt;}
.yda{bottom:180.989333pt;}
.y24{bottom:182.170667pt;}
.y14a{bottom:190.384000pt;}
.y3c{bottom:194.733333pt;}
.y23{bottom:199.393333pt;}
.y85{bottom:200.733333pt;}
.y125{bottom:201.426667pt;}
.yd9{bottom:203.390667pt;}
.y66{bottom:208.093333pt;}
.yfe{bottom:209.222667pt;}
.y149{bottom:211.332000pt;}
.y3b{bottom:215.680000pt;}
.y22{bottom:216.482667pt;}
.yaa{bottom:221.680000pt;}
.y124{bottom:222.373333pt;}
.y84{bottom:222.496000pt;}
.yd8{bottom:224.337333pt;}
.yfd{bottom:230.169333pt;}
.y148{bottom:232.278667pt;}
.y21{bottom:233.705333pt;}
.y3a{bottom:236.626667pt;}
.y65{bottom:239.573333pt;}
.ya9{bottom:242.626667pt;}
.y123{bottom:243.320000pt;}
.y83{bottom:243.442667pt;}
.yd7{bottom:245.284000pt;}
.yfc{bottom:251.116000pt;}
.y147{bottom:253.225333pt;}
.y20{bottom:255.981333pt;}
.y39{bottom:257.573333pt;}
.ya8{bottom:263.573333pt;}
.y122{bottom:264.268000pt;}
.y82{bottom:264.389333pt;}
.yd6{bottom:266.230667pt;}
.yfb{bottom:272.062667pt;}
.y146{bottom:274.172000pt;}
.y64{bottom:275.436000pt;}
.y38{bottom:278.520000pt;}
.ya7{bottom:284.520000pt;}
.y121{bottom:285.214667pt;}
.y81{bottom:285.337333pt;}
.y1f{bottom:290.700000pt;}
.yfa{bottom:293.009333pt;}
.y145{bottom:295.118667pt;}
.yd5{bottom:295.905333pt;}
.y63{bottom:296.382667pt;}
.y120{bottom:306.161333pt;}
.y80{bottom:306.284000pt;}
.ya6{bottom:307.113333pt;}
.y1e{bottom:307.969333pt;}
.yb6{bottom:313.646667pt;}
.yf9{bottom:313.956000pt;}
.y144{bottom:316.065333pt;}
.y62{bottom:317.329333pt;}
.y37{bottom:325.460000pt;}
.y11f{bottom:327.108000pt;}
.y7f{bottom:327.230667pt;}
.ya5{bottom:328.060000pt;}
.yb5{bottom:334.593333pt;}
.yf8{bottom:334.902667pt;}
.y143{bottom:337.012000pt;}
.y61{bottom:338.276000pt;}
.yd4{bottom:340.181333pt;}
.y36{bottom:341.400000pt;}
.y1d{bottom:347.340000pt;}
.y7e{bottom:348.177333pt;}
.y11e{bottom:348.748000pt;}
.ya4{bottom:349.006667pt;}
.yb4{bottom:355.540000pt;}
.yf7{bottom:355.849333pt;}
.y35{bottom:357.340000pt;}
.y142{bottom:357.958667pt;}
.y60{bottom:359.222667pt;}
.yd3{bottom:361.128000pt;}
.y15b{bottom:363.888000pt;}
.y1c{bottom:364.608000pt;}
.y7d{bottom:369.124000pt;}
.y11d{bottom:369.694667pt;}
.ya3{bottom:369.953333pt;}
.yb3{bottom:376.486667pt;}
.yf6{bottom:376.796000pt;}
.y141{bottom:378.905333pt;}
.y5f{bottom:380.170667pt;}
.y1b{bottom:381.876000pt;}
.yd2{bottom:382.074667pt;}
.y15a{bottom:384.834667pt;}
.y11c{bottom:390.641333pt;}
.y7c{bottom:390.886667pt;}
.ya2{bottom:390.900000pt;}
.yb2{bottom:397.433333pt;}
.yf5{bottom:397.742667pt;}
.y1a{bottom:399.145333pt;}
.y140{bottom:399.852000pt;}
.y5e{bottom:401.117333pt;}
.yd1{bottom:403.021333pt;}
.y159{bottom:405.781333pt;}
.y11b{bottom:411.588000pt;}
.y7b{bottom:411.833333pt;}
.ya1{bottom:411.848000pt;}
.y19{bottom:416.413333pt;}
.yb1{bottom:418.380000pt;}
.yf4{bottom:418.690667pt;}
.y13f{bottom:420.798667pt;}
.y5d{bottom:422.064000pt;}
.yd0{bottom:423.968000pt;}
.y158{bottom:426.728000pt;}
.y11a{bottom:432.534667pt;}
.y7a{bottom:432.780000pt;}
.ya0{bottom:432.794667pt;}
.y18{bottom:433.682667pt;}
.yb0{bottom:439.326667pt;}
.y13e{bottom:441.745333pt;}
.y5c{bottom:443.010667pt;}
.ycf{bottom:444.914667pt;}
.y157{bottom:447.674667pt;}
.yf3{bottom:447.837333pt;}
.y17{bottom:450.950667pt;}
.y119{bottom:453.481333pt;}
.y79{bottom:453.726667pt;}
.y9f{bottom:453.741333pt;}
.yaf{bottom:460.274667pt;}
.y13d{bottom:462.692000pt;}
.y5b{bottom:463.957333pt;}
.yce{bottom:465.861333pt;}
.y16{bottom:468.220000pt;}
.y156{bottom:468.621333pt;}
.y118{bottom:474.428000pt;}
.y78{bottom:474.673333pt;}
.y9e{bottom:474.688000pt;}
.yae{bottom:481.221333pt;}
.y13c{bottom:483.638667pt;}
.y5a{bottom:484.904000pt;}
.y15{bottom:485.488000pt;}
.yf2{bottom:486.785333pt;}
.ycd{bottom:486.808000pt;}
.y155{bottom:489.568000pt;}
.y117{bottom:495.374667pt;}
.y77{bottom:495.620000pt;}
.y14{bottom:502.756000pt;}
.y9d{bottom:504.553333pt;}
.y13b{bottom:504.585333pt;}
.y59{bottom:505.850667pt;}
.yf1{bottom:507.732000pt;}
.ycc{bottom:507.754667pt;}
.y154{bottom:510.514667pt;}
.y116{bottom:516.321333pt;}
.y76{bottom:516.566667pt;}
.y13{bottom:520.025333pt;}
.y13a{bottom:525.532000pt;}
.y58{bottom:526.797333pt;}
.yf0{bottom:528.678667pt;}
.ycb{bottom:528.701333pt;}
.y153{bottom:531.461333pt;}
.y115{bottom:537.268000pt;}
.y12{bottom:537.293333pt;}
.y75{bottom:537.513333pt;}
.y139{bottom:546.478667pt;}
.y57{bottom:547.744000pt;}
.yef{bottom:549.625333pt;}
.yca{bottom:549.648000pt;}
.y9c{bottom:550.761333pt;}
.y152{bottom:552.408000pt;}
.y11{bottom:554.562667pt;}
.y74{bottom:558.460000pt;}
.y138{bottom:567.425333pt;}
.y114{bottom:567.542667pt;}
.y56{bottom:568.690667pt;}
.yee{bottom:570.572000pt;}
.yc9{bottom:570.594667pt;}
.y9b{bottom:571.708000pt;}
.y10{bottom:571.830667pt;}
.y151{bottom:573.354667pt;}
.y73{bottom:579.406667pt;}
.yad{bottom:584.646667pt;}
.y137{bottom:588.372000pt;}
.yf{bottom:589.100000pt;}
.y55{bottom:589.637333pt;}
.yed{bottom:591.518667pt;}
.yc8{bottom:591.541333pt;}
.y9a{bottom:592.654667pt;}
.y150{bottom:594.301333pt;}
.y72{bottom:600.353333pt;}
.yac{bottom:600.588000pt;}
.ye{bottom:606.368000pt;}
.y136{bottom:609.320000pt;}
.y54{bottom:610.584000pt;}
.y113{bottom:611.897333pt;}
.yc7{bottom:612.489333pt;}
.yec{bottom:613.393333pt;}
.y99{bottom:613.601333pt;}
.y14f{bottom:615.248000pt;}
.yab{bottom:616.528000pt;}
.y71{bottom:621.300000pt;}
.yd{bottom:623.636000pt;}
.y135{bottom:630.266667pt;}
.y53{bottom:631.530667pt;}
.y112{bottom:632.844000pt;}
.yc6{bottom:633.436000pt;}
.yeb{bottom:634.340000pt;}
.y98{bottom:636.194667pt;}
.yc{bottom:640.905333pt;}
.y70{bottom:643.062667pt;}
.y134{bottom:651.213333pt;}
.y52{bottom:652.477333pt;}
.y111{bottom:653.790667pt;}
.yc5{bottom:654.382667pt;}
.yea{bottom:655.286667pt;}
.y97{bottom:657.141333pt;}
.yb{bottom:658.173333pt;}
.y6f{bottom:664.010667pt;}
.y51{bottom:673.424000pt;}
.y110{bottom:674.737333pt;}
.yc4{bottom:675.329333pt;}
.ya{bottom:675.442667pt;}
.ye9{bottom:676.233333pt;}
.y96{bottom:678.088000pt;}
.y133{bottom:680.793333pt;}
.y9{bottom:692.710667pt;}
.y10f{bottom:695.684000pt;}
.ye8{bottom:697.180000pt;}
.y95{bottom:699.034667pt;}
.y50{bottom:701.730667pt;}
.yc3{bottom:705.002667pt;}
.y6e{bottom:708.529333pt;}
.y132{bottom:715.440000pt;}
.y10e{bottom:716.630667pt;}
.y8{bottom:717.346667pt;}
.ye7{bottom:718.126667pt;}
.y94{bottom:719.981333pt;}
.y6d{bottom:724.469333pt;}
.y4f{bottom:732.189333pt;}
.y10d{bottom:737.577333pt;}
.ye6{bottom:739.073333pt;}
.y6c{bottom:740.409333pt;}
.y93{bottom:740.928000pt;}
.y131{bottom:745.021333pt;}
.yc2{bottom:749.278667pt;}
.y34{bottom:749.413333pt;}
.y4e{bottom:753.136000pt;}
.y10c{bottom:758.524000pt;}
.ye5{bottom:760.020000pt;}
.y92{bottom:761.876000pt;}
.yc1{bottom:770.225333pt;}
.y33{bottom:770.360000pt;}
.y4d{bottom:774.084000pt;}
.y7{bottom:778.405333pt;}
.y10b{bottom:779.470667pt;}
.y130{bottom:779.666667pt;}
.ye4{bottom:781.894667pt;}
.y91{bottom:782.822667pt;}
.yc0{bottom:791.172000pt;}
.y32{bottom:791.306667pt;}
.y4c{bottom:795.030667pt;}
.y10a{bottom:800.417333pt;}
.y12f{bottom:800.613333pt;}
.ye3{bottom:802.841333pt;}
.y90{bottom:803.769333pt;}
.ybf{bottom:812.120000pt;}
.y31{bottom:812.253333pt;}
.y4b{bottom:815.977333pt;}
.y6{bottom:820.113333pt;}
.y109{bottom:821.364000pt;}
.y12e{bottom:821.560000pt;}
.ye2{bottom:823.788000pt;}
.y8f{bottom:824.716000pt;}
.ybe{bottom:833.066667pt;}
.y30{bottom:833.200000pt;}
.y4a{bottom:836.924000pt;}
.ye1{bottom:844.734667pt;}
.y8e{bottom:845.662667pt;}
.y5{bottom:846.680000pt;}
.y108{bottom:850.277333pt;}
.y12d{bottom:851.141333pt;}
.ybd{bottom:854.013333pt;}
.y2f{bottom:854.146667pt;}
.y49{bottom:857.870667pt;}
.ye0{bottom:865.681333pt;}
.y8d{bottom:866.609333pt;}
.y4{bottom:873.246667pt;}
.ybc{bottom:874.960000pt;}
.y2e{bottom:875.093333pt;}
.y48{bottom:878.817333pt;}
.y12c{bottom:885.786667pt;}
.ydf{bottom:886.628000pt;}
.y107{bottom:886.862667pt;}
.y8c{bottom:887.556000pt;}
.ybb{bottom:895.906667pt;}
.y2d{bottom:896.040000pt;}
.y47{bottom:899.764000pt;}
.y12b{bottom:906.734667pt;}
.yde{bottom:907.574667pt;}
.y106{bottom:907.809333pt;}
.y8b{bottom:908.502667pt;}
.yba{bottom:916.853333pt;}
.y2c{bottom:916.986667pt;}
.y46{bottom:920.710667pt;}
.y3{bottom:921.916000pt;}
.y12a{bottom:927.681333pt;}
.ydd{bottom:928.521333pt;}
.y105{bottom:928.756000pt;}
.y8a{bottom:929.449333pt;}
.yb9{bottom:937.800000pt;}
.y2b{bottom:937.933333pt;}
.y45{bottom:941.657333pt;}
.y129{bottom:948.628000pt;}
.y104{bottom:949.702667pt;}
.y89{bottom:950.396000pt;}
.yb8{bottom:958.746667pt;}
.y2a{bottom:958.880000pt;}
.y2{bottom:961.766667pt;}
.y44{bottom:962.604000pt;}
.y103{bottom:970.649333pt;}
.y88{bottom:971.342667pt;}
.y128{bottom:978.208000pt;}
.yb7{bottom:979.693333pt;}
.y29{bottom:979.826667pt;}
.y43{bottom:983.550667pt;}
.y87{bottom:992.289333pt;}
.y1{bottom:1001.617333pt;}
.y28{bottom:1010.729333pt;}
.y42{bottom:1011.857333pt;}
.y86{bottom:1013.236000pt;}
.y27{bottom:1050.297333pt;}
.h10{height:24.723354pt;}
.hc{height:25.180067pt;}
.h8{height:37.085030pt;}
.h11{height:39.389124pt;}
.hb{height:41.018216pt;}
.hf{height:41.205314pt;}
.ha{height:43.345491pt;}
.h7{height:45.120038pt;}
.hd{height:47.501995pt;}
.h12{height:54.073667pt;}
.he{height:54.079000pt;}
.h5{height:57.384800pt;}
.h9{height:57.399697pt;}
.h4{height:78.437371pt;}
.h3{height:78.442704pt;}
.h6{height:82.099000pt;}
.h2{height:98.487411pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:58.205333pt;}
.xb{left:67.897333pt;}
.x3{left:77.776000pt;}
.x6{left:96.000000pt;}
.x2{left:116.853333pt;}
.x1{left:117.817333pt;}
.x7{left:143.820000pt;}
.x11{left:180.509333pt;}
.xa{left:266.200000pt;}
.x9{left:275.210667pt;}
.x10{left:293.008000pt;}
.xe{left:326.928000pt;}
.x5{left:342.282667pt;}
.xc{left:347.658667pt;}
.x12{left:357.653333pt;}
.xf{left:364.874667pt;}
.xd{left:389.214667pt;}
.x8{left:393.032000pt;}
}




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