
    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_dae930c67154a4596414d5ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.896973;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_4b581c2c89a72baab3946aeb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_c0ca27a63cb51cedabde14d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_7479bd634788cf4670dc2f8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_6343f0d4eb89b111ea7a4ff7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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:-20.160000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.486000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.030900px;}
.ls2{letter-spacing:13.386000px;}
.ls0{letter-spacing:16.266000px;}
.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;}
}
.ws15{word-spacing:-55.944000px;}
.ws5{word-spacing:-40.968000px;}
.ws4a{word-spacing:-38.660400px;}
.ws7c{word-spacing:-38.656500px;}
.wsc8{word-spacing:-38.654400px;}
.ws88{word-spacing:-38.654100px;}
.ws79{word-spacing:-38.648700px;}
.wsb{word-spacing:-38.435400px;}
.ws6b{word-spacing:-38.367000px;}
.ws7{word-spacing:-38.365500px;}
.wsb4{word-spacing:-38.162400px;}
.ws7b{word-spacing:-38.161500px;}
.ws58{word-spacing:-38.160000px;}
.wsda{word-spacing:-38.154000px;}
.ws6a{word-spacing:-38.152800px;}
.ws7e{word-spacing:-38.151000px;}
.ws7a{word-spacing:-38.150400px;}
.ws89{word-spacing:-38.147400px;}
.ws84{word-spacing:-38.138400px;}
.ws9{word-spacing:-38.087100px;}
.wse1{word-spacing:-38.081700px;}
.ws60{word-spacing:-37.946400px;}
.wsdf{word-spacing:-37.943700px;}
.wsdb{word-spacing:-37.943100px;}
.ws21{word-spacing:-37.942200px;}
.ws5f{word-spacing:-37.940400px;}
.wsa{word-spacing:-37.940100px;}
.ws2e{word-spacing:-37.939200px;}
.ws82{word-spacing:-37.937700px;}
.wsdd{word-spacing:-37.930500px;}
.ws18{word-spacing:-37.930200px;}
.ws86{word-spacing:-37.929600px;}
.wse3{word-spacing:-37.925100px;}
.wsca{word-spacing:-37.924200px;}
.ws83{word-spacing:-37.713300px;}
.ws85{word-spacing:-37.712700px;}
.ws4b{word-spacing:-37.645200px;}
.ws8{word-spacing:-37.643400px;}
.ws7f{word-spacing:-37.639800px;}
.wsd{word-spacing:-37.442400px;}
.wsf{word-spacing:-37.437300px;}
.ws1b{word-spacing:-37.436400px;}
.ws7d{word-spacing:-37.435500px;}
.ws4d{word-spacing:-37.434000px;}
.ws81{word-spacing:-37.421100px;}
.ws14{word-spacing:-37.222200px;}
.wsc4{word-spacing:-37.220400px;}
.ws50{word-spacing:-37.218600px;}
.ws27{word-spacing:-37.218000px;}
.wse7{word-spacing:-37.215000px;}
.ws70{word-spacing:-37.014000px;}
.ws61{word-spacing:-37.002600px;}
.ws57{word-spacing:-36.995400px;}
.ws80{word-spacing:-36.992700px;}
.ws93{word-spacing:-36.726000px;}
.wsd4{word-spacing:-36.722400px;}
.ws28{word-spacing:-36.720000px;}
.ws9f{word-spacing:-36.716400px;}
.wsc{word-spacing:-36.703800px;}
.ws76{word-spacing:-36.701400px;}
.ws8f{word-spacing:-36.502200px;}
.ws5c{word-spacing:-36.421200px;}
.ws2b{word-spacing:-36.363600px;}
.ws63{word-spacing:-36.286800px;}
.ws55{word-spacing:-36.000000px;}
.ws6c{word-spacing:-35.782200px;}
.wscd{word-spacing:-35.564400px;}
.wsd6{word-spacing:-35.060400px;}
.wse4{word-spacing:-35.051100px;}
.wsba{word-spacing:-34.842600px;}
.wsd0{word-spacing:-34.560000px;}
.ws52{word-spacing:-34.554000px;}
.ws46{word-spacing:-34.335900px;}
.ws95{word-spacing:-34.329600px;}
.ws8b{word-spacing:-34.326000px;}
.wsc1{word-spacing:-34.263600px;}
.ws59{word-spacing:-33.842400px;}
.ws5a{word-spacing:-33.615000px;}
.ws5d{word-spacing:-33.611400px;}
.ws6{word-spacing:-33.547800px;}
.ws4c{word-spacing:-33.117300px;}
.ws75{word-spacing:-32.900400px;}
.wsa1{word-spacing:-32.899200px;}
.wsb8{word-spacing:-32.898600px;}
.ws25{word-spacing:-31.680000px;}
.wsb9{word-spacing:-31.678200px;}
.ws49{word-spacing:-31.462200px;}
.wsa3{word-spacing:-31.456800px;}
.ws4e{word-spacing:-30.960000px;}
.ws90{word-spacing:-30.956400px;}
.ws45{word-spacing:-30.953400px;}
.wsd5{word-spacing:-30.748200px;}
.ws22{word-spacing:-30.741900px;}
.ws3e{word-spacing:-30.240000px;}
.wsa8{word-spacing:-30.024000px;}
.wscf{word-spacing:-30.022200px;}
.ws1c{word-spacing:-30.020400px;}
.wsb2{word-spacing:-29.932200px;}
.ws6f{word-spacing:-29.802600px;}
.ws1a{word-spacing:-29.522400px;}
.ws6e{word-spacing:-29.520000px;}
.ws19{word-spacing:-29.502000px;}
.ws9c{word-spacing:-29.302800px;}
.ws33{word-spacing:-29.302200px;}
.ws1e{word-spacing:-29.300400px;}
.ws8a{word-spacing:-28.797300px;}
.wsa9{word-spacing:-28.588200px;}
.ws99{word-spacing:-28.573200px;}
.ws29{word-spacing:-28.569600px;}
.wsa7{word-spacing:-28.560600px;}
.wse{word-spacing:-28.080000px;}
.ws13{word-spacing:-28.064400px;}
.ws23{word-spacing:-28.008000px;}
.wsab{word-spacing:-27.860400px;}
.wsb3{word-spacing:-27.858600px;}
.ws9a{word-spacing:-27.789000px;}
.ws97{word-spacing:-27.360000px;}
.wsd2{word-spacing:-27.358800px;}
.ws48{word-spacing:-27.356400px;}
.ws91{word-spacing:-27.148200px;}
.wsc9{word-spacing:-27.142200px;}
.ws32{word-spacing:-27.140400px;}
.ws9d{word-spacing:-27.138600px;}
.ws11{word-spacing:-27.136200px;}
.wsb6{word-spacing:-27.063600px;}
.ws24{word-spacing:-26.910000px;}
.ws3d{word-spacing:-26.632800px;}
.ws4f{word-spacing:-26.424600px;}
.ws62{word-spacing:-26.204400px;}
.ws44{word-spacing:-25.920000px;}
.ws78{word-spacing:-25.700400px;}
.ws98{word-spacing:-25.695000px;}
.ws72{word-spacing:-25.691400px;}
.ws20{word-spacing:-25.687800px;}
.wsd8{word-spacing:-25.206000px;}
.wsbe{word-spacing:-25.200000px;}
.wsd1{word-spacing:-25.191600px;}
.ws3c{word-spacing:-25.187100px;}
.ws43{word-spacing:-24.982200px;}
.ws1f{word-spacing:-24.908400px;}
.wsbd{word-spacing:-24.887700px;}
.ws12{word-spacing:-24.480000px;}
.ws53{word-spacing:-24.260400px;}
.wsd7{word-spacing:-24.244200px;}
.ws4{word-spacing:-23.687700px;}
.wse0{word-spacing:-23.542200px;}
.ws71{word-spacing:-23.522400px;}
.wsb7{word-spacing:-23.464800px;}
.ws0{word-spacing:-23.390100px;}
.ws34{word-spacing:-23.315400px;}
.ws1{word-spacing:-23.178600px;}
.ws2{word-spacing:-23.174100px;}
.wsa6{word-spacing:-23.046000px;}
.wsae{word-spacing:-23.040000px;}
.ws1d{word-spacing:-23.039700px;}
.wsa4{word-spacing:-22.826400px;}
.wsde{word-spacing:-22.821300px;}
.wsd3{word-spacing:-22.809600px;}
.ws56{word-spacing:-22.320000px;}
.wsc7{word-spacing:-21.888000px;}
.wsc0{word-spacing:-21.592800px;}
.wsad{word-spacing:-21.578400px;}
.ws8d{word-spacing:-21.388200px;}
.wsb5{word-spacing:-21.376800px;}
.wsbc{word-spacing:-21.371400px;}
.wsaa{word-spacing:-21.305700px;}
.ws94{word-spacing:-20.660400px;}
.wsa5{word-spacing:-20.647800px;}
.ws9e{word-spacing:-19.948200px;}
.wsc3{word-spacing:-19.940400px;}
.wse6{word-spacing:-19.935900px;}
.wsc5{word-spacing:-19.933800px;}
.wsc2{word-spacing:-19.927200px;}
.ws92{word-spacing:-19.440000px;}
.ws2a{word-spacing:-19.436400px;}
.wsb0{word-spacing:-19.427400px;}
.ws2c{word-spacing:-19.229100px;}
.ws96{word-spacing:-19.221900px;}
.ws5b{word-spacing:-18.716400px;}
.wsce{word-spacing:-18.642600px;}
.ws54{word-spacing:-18.504600px;}
.wsa0{word-spacing:-17.993700px;}
.wse2{word-spacing:-17.775300px;}
.ws30{word-spacing:-17.760600px;}
.ws38{word-spacing:-16.978200px;}
.ws87{word-spacing:-16.808400px;}
.ws8c{word-spacing:-16.555200px;}
.wsbb{word-spacing:-16.542000px;}
.ws67{word-spacing:-16.509600px;}
.ws65{word-spacing:-16.455000px;}
.ws68{word-spacing:-16.332600px;}
.wsdc{word-spacing:-16.330500px;}
.ws31{word-spacing:-15.834600px;}
.wsc6{word-spacing:-15.605100px;}
.wsd9{word-spacing:-15.602400px;}
.ws66{word-spacing:-15.532200px;}
.wsaf{word-spacing:-15.120000px;}
.ws42{word-spacing:-14.900400px;}
.ws73{word-spacing:-14.404200px;}
.ws74{word-spacing:-14.403300px;}
.ws35{word-spacing:-14.098200px;}
.ws8e{word-spacing:-13.962600px;}
.ws36{word-spacing:-13.853100px;}
.ws37{word-spacing:-13.623600px;}
.wsb1{word-spacing:-13.462200px;}
.wsa2{word-spacing:-13.460400px;}
.ws5e{word-spacing:-12.966000px;}
.ws40{word-spacing:-12.956400px;}
.wsbf{word-spacing:-12.949200px;}
.ws2f{word-spacing:-12.940200px;}
.wse5{word-spacing:-12.748200px;}
.ws64{word-spacing:-12.738600px;}
.ws51{word-spacing:-12.726000px;}
.ws47{word-spacing:-12.026400px;}
.wscc{word-spacing:-12.020400px;}
.wsac{word-spacing:-11.507400px;}
.ws2d{word-spacing:-11.300400px;}
.wscb{word-spacing:-11.282400px;}
.ws26{word-spacing:-10.578600px;}
.ws69{word-spacing:-10.500600px;}
.ws10{word-spacing:-9.357300px;}
.ws9b{word-spacing:-7.700400px;}
.ws3{word-spacing:-5.177700px;}
.ws3f{word-spacing:-4.741200px;}
.ws77{word-spacing:-3.369600px;}
.ws17{word-spacing:-1.427400px;}
.ws6d{word-spacing:-0.713400px;}
.ws16{word-spacing:-0.707400px;}
.ws39{word-spacing:0.000000px;}
.ws3a{word-spacing:4.335600px;}
.ws3b{word-spacing:4.536000px;}
.ws41{word-spacing:12.234000px;}
._4{margin-left:-1.134900px;}
._3{width:1.067400px;}
._1e{width:13.459500px;}
._15{width:14.469900px;}
._1d{width:15.470100px;}
._14{width:17.865000px;}
._0{width:19.142100px;}
._7{width:20.247300px;}
._1c{width:21.594600px;}
._1a{width:22.881900px;}
._1b{width:23.970600px;}
._20{width:25.398900px;}
._c{width:26.500500px;}
._9{width:27.642600px;}
._5{width:29.113200px;}
._d{width:30.294000px;}
._b{width:31.687200px;}
._6{width:32.760000px;}
._a{width:34.426500px;}
._22{width:35.648400px;}
._23{width:36.852000px;}
._24{width:37.939800px;}
._12{width:39.288600px;}
._13{width:41.461200px;}
._19{width:42.712200px;}
._11{width:44.622900px;}
._10{width:46.006200px;}
._e{width:47.154600px;}
._f{width:48.217500px;}
._25{width:50.036400px;}
._21{width:53.654400px;}
._8{width:55.552800px;}
._1f{width:57.192600px;}
._17{width:61.325400px;}
._18{width:69.342000px;}
._27{width:122.400000px;}
._26{width:158.400000px;}
._1{width:954.360000px;}
._2{width:1025.700300px;}
._16{width:1026.977400px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(227,108,9);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.000000px;}
.fs2{font-size:46.800000px;}
.fs4{font-size:59.700000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.575000px;}
.y7a{bottom:19.365000px;}
.y7e{bottom:19.500000px;}
.y82{bottom:19.530000px;}
.y8a{bottom:26.940000px;}
.y77{bottom:26.971500px;}
.y7b{bottom:29.625000px;}
.y7f{bottom:29.761500px;}
.y83{bottom:29.790000px;}
.y88{bottom:37.200000px;}
.y74{bottom:37.230000px;}
.y8d{bottom:38.865000px;}
.y7d{bottom:40.020000px;}
.y81{bottom:40.050000px;}
.y79{bottom:40.065000px;}
.y72{bottom:47.490000px;}
.y86{bottom:47.640000px;}
.y76{bottom:47.671500px;}
.y8e{bottom:49.125000px;}
.y87{bottom:57.900000px;}
.y73{bottom:57.930000px;}
.y8c{bottom:59.565000px;}
.y75{bottom:68.190000px;}
.y89{bottom:68.340000px;}
.y7{bottom:72.900000px;}
.y34{bottom:117.615000px;}
.yb1{bottom:121.396500px;}
.y84{bottom:122.836500px;}
.yc8{bottom:137.236500px;}
.y33{bottom:141.015000px;}
.yb0{bottom:142.096500px;}
.yc7{bottom:157.936500px;}
.yaf{bottom:162.796500px;}
.y32{bottom:172.515000px;}
.y5b{bottom:178.636500px;}
.yae{bottom:183.496500px;}
.y31{bottom:193.215000px;}
.y5a{bottom:199.336500px;}
.y80{bottom:201.225000px;}
.yad{bottom:204.196500px;}
.y30{bottom:213.915000px;}
.y59{bottom:220.036500px;}
.yac{bottom:224.896500px;}
.y2f{bottom:234.615000px;}
.y58{bottom:240.736500px;}
.yab{bottom:245.596500px;}
.y2e{bottom:255.315000px;}
.y57{bottom:261.436500px;}
.yaa{bottom:266.295000px;}
.y7c{bottom:275.775000px;}
.y2d{bottom:276.015000px;}
.y56{bottom:282.136500px;}
.ya9{bottom:286.996500px;}
.y2c{bottom:296.715000px;}
.y55{bottom:302.836500px;}
.ya8{bottom:307.696500px;}
.y2b{bottom:317.415000px;}
.y54{bottom:323.536500px;}
.yc6{bottom:323.715000px;}
.ya7{bottom:328.396500px;}
.y2a{bottom:338.115000px;}
.y53{bottom:344.236500px;}
.ya6{bottom:349.096500px;}
.y78{bottom:350.250000px;}
.yde{bottom:353.415000px;}
.y29{bottom:358.815000px;}
.y52{bottom:364.936500px;}
.yc5{bottom:365.475000px;}
.ya5{bottom:369.795000px;}
.ydd{bottom:374.115000px;}
.y28{bottom:379.515000px;}
.y51{bottom:385.636500px;}
.yc4{bottom:386.175000px;}
.ya4{bottom:390.496500px;}
.ydc{bottom:394.815000px;}
.y27{bottom:400.215000px;}
.y50{bottom:406.336500px;}
.yc3{bottom:406.875000px;}
.ya3{bottom:411.196500px;}
.ydb{bottom:415.515000px;}
.y26{bottom:420.915000px;}
.y71{bottom:424.725000px;}
.yc2{bottom:427.575000px;}
.yda{bottom:436.215000px;}
.y25{bottom:441.615000px;}
.y4f{bottom:447.915000px;}
.yc1{bottom:448.275000px;}
.ya2{bottom:452.775000px;}
.yd9{bottom:456.915000px;}
.y24{bottom:462.315000px;}
.y4e{bottom:468.615000px;}
.yc0{bottom:468.975000px;}
.ya1{bottom:473.475000px;}
.yd8{bottom:477.615000px;}
.y23{bottom:483.015000px;}
.y4d{bottom:489.315000px;}
.ybf{bottom:489.675000px;}
.ya0{bottom:494.175000px;}
.yd7{bottom:498.315000px;}
.y22{bottom:503.715000px;}
.y4c{bottom:510.015000px;}
.ybe{bottom:510.375000px;}
.y9f{bottom:514.875000px;}
.yd6{bottom:519.015000px;}
.y21{bottom:524.415000px;}
.y4b{bottom:530.715000px;}
.ybd{bottom:531.075000px;}
.y9e{bottom:535.575000px;}
.yd5{bottom:539.715000px;}
.y20{bottom:545.115000px;}
.y70{bottom:550.875000px;}
.y4a{bottom:551.415000px;}
.ybc{bottom:551.775000px;}
.y9d{bottom:556.275000px;}
.yd4{bottom:560.415000px;}
.y1f{bottom:565.815000px;}
.y49{bottom:572.115000px;}
.ybb{bottom:572.475000px;}
.y9c{bottom:576.975000px;}
.yd3{bottom:581.115000px;}
.y1e{bottom:586.515000px;}
.y6f{bottom:592.636500px;}
.y48{bottom:592.815000px;}
.yba{bottom:593.175000px;}
.y9b{bottom:597.675000px;}
.yd2{bottom:601.815000px;}
.y1d{bottom:607.215000px;}
.y6e{bottom:613.336500px;}
.y47{bottom:613.515000px;}
.yb9{bottom:613.875000px;}
.y9a{bottom:618.375000px;}
.yd1{bottom:622.515000px;}
.y1c{bottom:627.915000px;}
.y6d{bottom:634.036500px;}
.y46{bottom:634.215000px;}
.yb8{bottom:634.575000px;}
.y99{bottom:639.075000px;}
.yd0{bottom:643.215000px;}
.y1b{bottom:648.615000px;}
.y6c{bottom:654.736500px;}
.y45{bottom:654.915000px;}
.yb7{bottom:655.275000px;}
.y98{bottom:659.775000px;}
.ycf{bottom:663.915000px;}
.y1a{bottom:669.315000px;}
.y6b{bottom:675.436500px;}
.y44{bottom:675.615000px;}
.yb6{bottom:675.975000px;}
.y97{bottom:680.475000px;}
.yce{bottom:684.615000px;}
.y19{bottom:690.015000px;}
.y6a{bottom:696.136500px;}
.y43{bottom:696.315000px;}
.yb5{bottom:696.675000px;}
.y96{bottom:701.175000px;}
.ycd{bottom:705.315000px;}
.y69{bottom:716.836500px;}
.yb4{bottom:717.375000px;}
.y95{bottom:721.875000px;}
.ycc{bottom:726.015000px;}
.y18{bottom:731.775000px;}
.y68{bottom:737.536500px;}
.y42{bottom:738.075000px;}
.y94{bottom:742.575000px;}
.ycb{bottom:746.715000px;}
.y17{bottom:752.475000px;}
.y67{bottom:758.236500px;}
.yb3{bottom:758.775000px;}
.y93{bottom:763.275000px;}
.yca{bottom:767.415000px;}
.y66{bottom:778.936500px;}
.yb2{bottom:779.475000px;}
.y41{bottom:779.836500px;}
.y92{bottom:783.975000px;}
.y16{bottom:785.236500px;}
.y65{bottom:799.636500px;}
.yc9{bottom:800.175000px;}
.y40{bottom:800.536500px;}
.y91{bottom:804.675000px;}
.y15{bottom:805.936500px;}
.y64{bottom:820.336500px;}
.y3f{bottom:821.236500px;}
.y90{bottom:825.375000px;}
.y14{bottom:826.636500px;}
.y3e{bottom:841.936500px;}
.y8f{bottom:846.075000px;}
.y13{bottom:847.336500px;}
.y63{bottom:861.915000px;}
.y3d{bottom:862.636500px;}
.y12{bottom:868.036500px;}
.y62{bottom:882.615000px;}
.y3c{bottom:883.336500px;}
.y8b{bottom:886.050000px;}
.y11{bottom:888.736500px;}
.y61{bottom:903.315000px;}
.y3b{bottom:904.036500px;}
.y10{bottom:909.436500px;}
.y60{bottom:924.015000px;}
.y3a{bottom:924.736500px;}
.yf{bottom:930.136500px;}
.y5f{bottom:944.715000px;}
.y39{bottom:945.436500px;}
.ye{bottom:950.836500px;}
.y5e{bottom:965.415000px;}
.y38{bottom:966.136500px;}
.yd{bottom:983.415000px;}
.y5d{bottom:986.115000px;}
.y37{bottom:986.836500px;}
.y85{bottom:997.875000px;}
.y36{bottom:1007.536500px;}
.yc{bottom:1016.175000px;}
.y5c{bottom:1027.875000px;}
.y35{bottom:1028.236500px;}
.yb{bottom:1048.936500px;}
.ya{bottom:1069.636500px;}
.y9{bottom:1090.155000px;}
.y6{bottom:1131.915000px;}
.y5{bottom:1152.615000px;}
.y4{bottom:1173.315000px;}
.y3{bottom:1194.015000px;}
.y2{bottom:1214.715000px;}
.y1{bottom:1235.415000px;}
.h3{height:20.175000px;}
.h8{height:27.021973px;}
.h9{height:41.364404px;}
.h4{height:45.937354px;}
.h5{height:48.796875px;}
.h2{height:49.042969px;}
.h6{height:50.027344px;}
.hb{height:56.203969px;}
.ha{height:56.997773px;}
.h7{height:57.003773px;}
.hd{height:72.225000px;}
.he{height:72.300000px;}
.hc{height:108.000000px;}
.hf{height:109.575000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w5{width:118.425000px;}
.w7{width:118.725000px;}
.w4{width:142.500000px;}
.w6{width:149.175000px;}
.w3{width:186.225000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:1.170000px;}
.x9{left:4.770000px;}
.xc{left:5.910000px;}
.xb{left:6.988500px;}
.x12{left:12.105000px;}
.xe{left:16.035000px;}
.x11{left:20.385000px;}
.x13{left:38.385000px;}
.x8{left:126.450000px;}
.x1{left:127.620000px;}
.x3{left:132.300000px;}
.x4{left:140.038500px;}
.xa{left:314.850000px;}
.x5{left:345.780000px;}
.x7{left:402.300000px;}
.xd{left:459.525000px;}
.x2{left:470.025000px;}
.x6{left:533.700000px;}
.xf{left:580.125000px;}
.x10{left:731.475000px;}
@media print{
.v2{vertical-align:-17.920000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.027467pt;}
.ls2{letter-spacing:11.898667pt;}
.ls0{letter-spacing:14.458667pt;}
.ws15{word-spacing:-49.728000pt;}
.ws5{word-spacing:-36.416000pt;}
.ws4a{word-spacing:-34.364800pt;}
.ws7c{word-spacing:-34.361333pt;}
.wsc8{word-spacing:-34.359467pt;}
.ws88{word-spacing:-34.359200pt;}
.ws79{word-spacing:-34.354400pt;}
.wsb{word-spacing:-34.164800pt;}
.ws6b{word-spacing:-34.104000pt;}
.ws7{word-spacing:-34.102667pt;}
.wsb4{word-spacing:-33.922133pt;}
.ws7b{word-spacing:-33.921333pt;}
.ws58{word-spacing:-33.920000pt;}
.wsda{word-spacing:-33.914667pt;}
.ws6a{word-spacing:-33.913600pt;}
.ws7e{word-spacing:-33.912000pt;}
.ws7a{word-spacing:-33.911467pt;}
.ws89{word-spacing:-33.908800pt;}
.ws84{word-spacing:-33.900800pt;}
.ws9{word-spacing:-33.855200pt;}
.wse1{word-spacing:-33.850400pt;}
.ws60{word-spacing:-33.730133pt;}
.wsdf{word-spacing:-33.727733pt;}
.wsdb{word-spacing:-33.727200pt;}
.ws21{word-spacing:-33.726400pt;}
.ws5f{word-spacing:-33.724800pt;}
.wsa{word-spacing:-33.724533pt;}
.ws2e{word-spacing:-33.723733pt;}
.ws82{word-spacing:-33.722400pt;}
.wsdd{word-spacing:-33.716000pt;}
.ws18{word-spacing:-33.715733pt;}
.ws86{word-spacing:-33.715200pt;}
.wse3{word-spacing:-33.711200pt;}
.wsca{word-spacing:-33.710400pt;}
.ws83{word-spacing:-33.522933pt;}
.ws85{word-spacing:-33.522400pt;}
.ws4b{word-spacing:-33.462400pt;}
.ws8{word-spacing:-33.460800pt;}
.ws7f{word-spacing:-33.457600pt;}
.wsd{word-spacing:-33.282133pt;}
.wsf{word-spacing:-33.277600pt;}
.ws1b{word-spacing:-33.276800pt;}
.ws7d{word-spacing:-33.276000pt;}
.ws4d{word-spacing:-33.274667pt;}
.ws81{word-spacing:-33.263200pt;}
.ws14{word-spacing:-33.086400pt;}
.wsc4{word-spacing:-33.084800pt;}
.ws50{word-spacing:-33.083200pt;}
.ws27{word-spacing:-33.082667pt;}
.wse7{word-spacing:-33.080000pt;}
.ws70{word-spacing:-32.901333pt;}
.ws61{word-spacing:-32.891200pt;}
.ws57{word-spacing:-32.884800pt;}
.ws80{word-spacing:-32.882400pt;}
.ws93{word-spacing:-32.645333pt;}
.wsd4{word-spacing:-32.642133pt;}
.ws28{word-spacing:-32.640000pt;}
.ws9f{word-spacing:-32.636800pt;}
.wsc{word-spacing:-32.625600pt;}
.ws76{word-spacing:-32.623467pt;}
.ws8f{word-spacing:-32.446400pt;}
.ws5c{word-spacing:-32.374400pt;}
.ws2b{word-spacing:-32.323200pt;}
.ws63{word-spacing:-32.254933pt;}
.ws55{word-spacing:-32.000000pt;}
.ws6c{word-spacing:-31.806400pt;}
.wscd{word-spacing:-31.612800pt;}
.wsd6{word-spacing:-31.164800pt;}
.wse4{word-spacing:-31.156533pt;}
.wsba{word-spacing:-30.971200pt;}
.wsd0{word-spacing:-30.720000pt;}
.ws52{word-spacing:-30.714667pt;}
.ws46{word-spacing:-30.520800pt;}
.ws95{word-spacing:-30.515200pt;}
.ws8b{word-spacing:-30.512000pt;}
.wsc1{word-spacing:-30.456533pt;}
.ws59{word-spacing:-30.082133pt;}
.ws5a{word-spacing:-29.880000pt;}
.ws5d{word-spacing:-29.876800pt;}
.ws6{word-spacing:-29.820267pt;}
.ws4c{word-spacing:-29.437600pt;}
.ws75{word-spacing:-29.244800pt;}
.wsa1{word-spacing:-29.243733pt;}
.wsb8{word-spacing:-29.243200pt;}
.ws25{word-spacing:-28.160000pt;}
.wsb9{word-spacing:-28.158400pt;}
.ws49{word-spacing:-27.966400pt;}
.wsa3{word-spacing:-27.961600pt;}
.ws4e{word-spacing:-27.520000pt;}
.ws90{word-spacing:-27.516800pt;}
.ws45{word-spacing:-27.514133pt;}
.wsd5{word-spacing:-27.331733pt;}
.ws22{word-spacing:-27.326133pt;}
.ws3e{word-spacing:-26.880000pt;}
.wsa8{word-spacing:-26.688000pt;}
.wscf{word-spacing:-26.686400pt;}
.ws1c{word-spacing:-26.684800pt;}
.wsb2{word-spacing:-26.606400pt;}
.ws6f{word-spacing:-26.491200pt;}
.ws1a{word-spacing:-26.242133pt;}
.ws6e{word-spacing:-26.240000pt;}
.ws19{word-spacing:-26.224000pt;}
.ws9c{word-spacing:-26.046933pt;}
.ws33{word-spacing:-26.046400pt;}
.ws1e{word-spacing:-26.044800pt;}
.ws8a{word-spacing:-25.597600pt;}
.wsa9{word-spacing:-25.411733pt;}
.ws99{word-spacing:-25.398400pt;}
.ws29{word-spacing:-25.395200pt;}
.wsa7{word-spacing:-25.387200pt;}
.wse{word-spacing:-24.960000pt;}
.ws13{word-spacing:-24.946133pt;}
.ws23{word-spacing:-24.896000pt;}
.wsab{word-spacing:-24.764800pt;}
.wsb3{word-spacing:-24.763200pt;}
.ws9a{word-spacing:-24.701333pt;}
.ws97{word-spacing:-24.320000pt;}
.wsd2{word-spacing:-24.318933pt;}
.ws48{word-spacing:-24.316800pt;}
.ws91{word-spacing:-24.131733pt;}
.wsc9{word-spacing:-24.126400pt;}
.ws32{word-spacing:-24.124800pt;}
.ws9d{word-spacing:-24.123200pt;}
.ws11{word-spacing:-24.121067pt;}
.wsb6{word-spacing:-24.056533pt;}
.ws24{word-spacing:-23.920000pt;}
.ws3d{word-spacing:-23.673600pt;}
.ws4f{word-spacing:-23.488533pt;}
.ws62{word-spacing:-23.292800pt;}
.ws44{word-spacing:-23.040000pt;}
.ws78{word-spacing:-22.844800pt;}
.ws98{word-spacing:-22.840000pt;}
.ws72{word-spacing:-22.836800pt;}
.ws20{word-spacing:-22.833600pt;}
.wsd8{word-spacing:-22.405333pt;}
.wsbe{word-spacing:-22.400000pt;}
.wsd1{word-spacing:-22.392533pt;}
.ws3c{word-spacing:-22.388533pt;}
.ws43{word-spacing:-22.206400pt;}
.ws1f{word-spacing:-22.140800pt;}
.wsbd{word-spacing:-22.122400pt;}
.ws12{word-spacing:-21.760000pt;}
.ws53{word-spacing:-21.564800pt;}
.wsd7{word-spacing:-21.550400pt;}
.ws4{word-spacing:-21.055733pt;}
.wse0{word-spacing:-20.926400pt;}
.ws71{word-spacing:-20.908800pt;}
.wsb7{word-spacing:-20.857600pt;}
.ws0{word-spacing:-20.791200pt;}
.ws34{word-spacing:-20.724800pt;}
.ws1{word-spacing:-20.603200pt;}
.ws2{word-spacing:-20.599200pt;}
.wsa6{word-spacing:-20.485333pt;}
.wsae{word-spacing:-20.480000pt;}
.ws1d{word-spacing:-20.479733pt;}
.wsa4{word-spacing:-20.290133pt;}
.wsde{word-spacing:-20.285600pt;}
.wsd3{word-spacing:-20.275200pt;}
.ws56{word-spacing:-19.840000pt;}
.wsc7{word-spacing:-19.456000pt;}
.wsc0{word-spacing:-19.193600pt;}
.wsad{word-spacing:-19.180800pt;}
.ws8d{word-spacing:-19.011733pt;}
.wsb5{word-spacing:-19.001600pt;}
.wsbc{word-spacing:-18.996800pt;}
.wsaa{word-spacing:-18.938400pt;}
.ws94{word-spacing:-18.364800pt;}
.wsa5{word-spacing:-18.353600pt;}
.ws9e{word-spacing:-17.731733pt;}
.wsc3{word-spacing:-17.724800pt;}
.wse6{word-spacing:-17.720800pt;}
.wsc5{word-spacing:-17.718933pt;}
.wsc2{word-spacing:-17.713067pt;}
.ws92{word-spacing:-17.280000pt;}
.ws2a{word-spacing:-17.276800pt;}
.wsb0{word-spacing:-17.268800pt;}
.ws2c{word-spacing:-17.092533pt;}
.ws96{word-spacing:-17.086133pt;}
.ws5b{word-spacing:-16.636800pt;}
.wsce{word-spacing:-16.571200pt;}
.ws54{word-spacing:-16.448533pt;}
.wsa0{word-spacing:-15.994400pt;}
.wse2{word-spacing:-15.800267pt;}
.ws30{word-spacing:-15.787200pt;}
.ws38{word-spacing:-15.091733pt;}
.ws87{word-spacing:-14.940800pt;}
.ws8c{word-spacing:-14.715733pt;}
.wsbb{word-spacing:-14.704000pt;}
.ws67{word-spacing:-14.675200pt;}
.ws65{word-spacing:-14.626667pt;}
.ws68{word-spacing:-14.517867pt;}
.wsdc{word-spacing:-14.516000pt;}
.ws31{word-spacing:-14.075200pt;}
.wsc6{word-spacing:-13.871200pt;}
.wsd9{word-spacing:-13.868800pt;}
.ws66{word-spacing:-13.806400pt;}
.wsaf{word-spacing:-13.440000pt;}
.ws42{word-spacing:-13.244800pt;}
.ws73{word-spacing:-12.803733pt;}
.ws74{word-spacing:-12.802933pt;}
.ws35{word-spacing:-12.531733pt;}
.ws8e{word-spacing:-12.411200pt;}
.ws36{word-spacing:-12.313867pt;}
.ws37{word-spacing:-12.109867pt;}
.wsb1{word-spacing:-11.966400pt;}
.wsa2{word-spacing:-11.964800pt;}
.ws5e{word-spacing:-11.525333pt;}
.ws40{word-spacing:-11.516800pt;}
.wsbf{word-spacing:-11.510400pt;}
.ws2f{word-spacing:-11.502400pt;}
.wse5{word-spacing:-11.331733pt;}
.ws64{word-spacing:-11.323200pt;}
.ws51{word-spacing:-11.312000pt;}
.ws47{word-spacing:-10.690133pt;}
.wscc{word-spacing:-10.684800pt;}
.wsac{word-spacing:-10.228800pt;}
.ws2d{word-spacing:-10.044800pt;}
.wscb{word-spacing:-10.028800pt;}
.ws26{word-spacing:-9.403200pt;}
.ws69{word-spacing:-9.333867pt;}
.ws10{word-spacing:-8.317600pt;}
.ws9b{word-spacing:-6.844800pt;}
.ws3{word-spacing:-4.602400pt;}
.ws3f{word-spacing:-4.214400pt;}
.ws77{word-spacing:-2.995200pt;}
.ws17{word-spacing:-1.268800pt;}
.ws6d{word-spacing:-0.634133pt;}
.ws16{word-spacing:-0.628800pt;}
.ws39{word-spacing:0.000000pt;}
.ws3a{word-spacing:3.853867pt;}
.ws3b{word-spacing:4.032000pt;}
.ws41{word-spacing:10.874667pt;}
._4{margin-left:-1.008800pt;}
._3{width:0.948800pt;}
._1e{width:11.964000pt;}
._15{width:12.862133pt;}
._1d{width:13.751200pt;}
._14{width:15.880000pt;}
._0{width:17.015200pt;}
._7{width:17.997600pt;}
._1c{width:19.195200pt;}
._1a{width:20.339467pt;}
._1b{width:21.307200pt;}
._20{width:22.576800pt;}
._c{width:23.556000pt;}
._9{width:24.571200pt;}
._5{width:25.878400pt;}
._d{width:26.928000pt;}
._b{width:28.166400pt;}
._6{width:29.120000pt;}
._a{width:30.601333pt;}
._22{width:31.687467pt;}
._23{width:32.757333pt;}
._24{width:33.724267pt;}
._12{width:34.923200pt;}
._13{width:36.854400pt;}
._19{width:37.966400pt;}
._11{width:39.664800pt;}
._10{width:40.894400pt;}
._e{width:41.915200pt;}
._f{width:42.860000pt;}
._25{width:44.476800pt;}
._21{width:47.692800pt;}
._8{width:49.380267pt;}
._1f{width:50.837867pt;}
._17{width:54.511467pt;}
._18{width:61.637333pt;}
._27{width:108.800000pt;}
._26{width:140.800000pt;}
._1{width:848.320000pt;}
._2{width:911.733600pt;}
._16{width:912.868800pt;}
.fs3{font-size:34.666667pt;}
.fs2{font-size:41.600000pt;}
.fs4{font-size:53.066667pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.066667pt;}
.y7a{bottom:17.213333pt;}
.y7e{bottom:17.333333pt;}
.y82{bottom:17.360000pt;}
.y8a{bottom:23.946667pt;}
.y77{bottom:23.974667pt;}
.y7b{bottom:26.333333pt;}
.y7f{bottom:26.454667pt;}
.y83{bottom:26.480000pt;}
.y88{bottom:33.066667pt;}
.y74{bottom:33.093333pt;}
.y8d{bottom:34.546667pt;}
.y7d{bottom:35.573333pt;}
.y81{bottom:35.600000pt;}
.y79{bottom:35.613333pt;}
.y72{bottom:42.213333pt;}
.y86{bottom:42.346667pt;}
.y76{bottom:42.374667pt;}
.y8e{bottom:43.666667pt;}
.y87{bottom:51.466667pt;}
.y73{bottom:51.493333pt;}
.y8c{bottom:52.946667pt;}
.y75{bottom:60.613333pt;}
.y89{bottom:60.746667pt;}
.y7{bottom:64.800000pt;}
.y34{bottom:104.546667pt;}
.yb1{bottom:107.908000pt;}
.y84{bottom:109.188000pt;}
.yc8{bottom:121.988000pt;}
.y33{bottom:125.346667pt;}
.yb0{bottom:126.308000pt;}
.yc7{bottom:140.388000pt;}
.yaf{bottom:144.708000pt;}
.y32{bottom:153.346667pt;}
.y5b{bottom:158.788000pt;}
.yae{bottom:163.108000pt;}
.y31{bottom:171.746667pt;}
.y5a{bottom:177.188000pt;}
.y80{bottom:178.866667pt;}
.yad{bottom:181.508000pt;}
.y30{bottom:190.146667pt;}
.y59{bottom:195.588000pt;}
.yac{bottom:199.908000pt;}
.y2f{bottom:208.546667pt;}
.y58{bottom:213.988000pt;}
.yab{bottom:218.308000pt;}
.y2e{bottom:226.946667pt;}
.y57{bottom:232.388000pt;}
.yaa{bottom:236.706667pt;}
.y7c{bottom:245.133333pt;}
.y2d{bottom:245.346667pt;}
.y56{bottom:250.788000pt;}
.ya9{bottom:255.108000pt;}
.y2c{bottom:263.746667pt;}
.y55{bottom:269.188000pt;}
.ya8{bottom:273.508000pt;}
.y2b{bottom:282.146667pt;}
.y54{bottom:287.588000pt;}
.yc6{bottom:287.746667pt;}
.ya7{bottom:291.908000pt;}
.y2a{bottom:300.546667pt;}
.y53{bottom:305.988000pt;}
.ya6{bottom:310.308000pt;}
.y78{bottom:311.333333pt;}
.yde{bottom:314.146667pt;}
.y29{bottom:318.946667pt;}
.y52{bottom:324.388000pt;}
.yc5{bottom:324.866667pt;}
.ya5{bottom:328.706667pt;}
.ydd{bottom:332.546667pt;}
.y28{bottom:337.346667pt;}
.y51{bottom:342.788000pt;}
.yc4{bottom:343.266667pt;}
.ya4{bottom:347.108000pt;}
.ydc{bottom:350.946667pt;}
.y27{bottom:355.746667pt;}
.y50{bottom:361.188000pt;}
.yc3{bottom:361.666667pt;}
.ya3{bottom:365.508000pt;}
.ydb{bottom:369.346667pt;}
.y26{bottom:374.146667pt;}
.y71{bottom:377.533333pt;}
.yc2{bottom:380.066667pt;}
.yda{bottom:387.746667pt;}
.y25{bottom:392.546667pt;}
.y4f{bottom:398.146667pt;}
.yc1{bottom:398.466667pt;}
.ya2{bottom:402.466667pt;}
.yd9{bottom:406.146667pt;}
.y24{bottom:410.946667pt;}
.y4e{bottom:416.546667pt;}
.yc0{bottom:416.866667pt;}
.ya1{bottom:420.866667pt;}
.yd8{bottom:424.546667pt;}
.y23{bottom:429.346667pt;}
.y4d{bottom:434.946667pt;}
.ybf{bottom:435.266667pt;}
.ya0{bottom:439.266667pt;}
.yd7{bottom:442.946667pt;}
.y22{bottom:447.746667pt;}
.y4c{bottom:453.346667pt;}
.ybe{bottom:453.666667pt;}
.y9f{bottom:457.666667pt;}
.yd6{bottom:461.346667pt;}
.y21{bottom:466.146667pt;}
.y4b{bottom:471.746667pt;}
.ybd{bottom:472.066667pt;}
.y9e{bottom:476.066667pt;}
.yd5{bottom:479.746667pt;}
.y20{bottom:484.546667pt;}
.y70{bottom:489.666667pt;}
.y4a{bottom:490.146667pt;}
.ybc{bottom:490.466667pt;}
.y9d{bottom:494.466667pt;}
.yd4{bottom:498.146667pt;}
.y1f{bottom:502.946667pt;}
.y49{bottom:508.546667pt;}
.ybb{bottom:508.866667pt;}
.y9c{bottom:512.866667pt;}
.yd3{bottom:516.546667pt;}
.y1e{bottom:521.346667pt;}
.y6f{bottom:526.788000pt;}
.y48{bottom:526.946667pt;}
.yba{bottom:527.266667pt;}
.y9b{bottom:531.266667pt;}
.yd2{bottom:534.946667pt;}
.y1d{bottom:539.746667pt;}
.y6e{bottom:545.188000pt;}
.y47{bottom:545.346667pt;}
.yb9{bottom:545.666667pt;}
.y9a{bottom:549.666667pt;}
.yd1{bottom:553.346667pt;}
.y1c{bottom:558.146667pt;}
.y6d{bottom:563.588000pt;}
.y46{bottom:563.746667pt;}
.yb8{bottom:564.066667pt;}
.y99{bottom:568.066667pt;}
.yd0{bottom:571.746667pt;}
.y1b{bottom:576.546667pt;}
.y6c{bottom:581.988000pt;}
.y45{bottom:582.146667pt;}
.yb7{bottom:582.466667pt;}
.y98{bottom:586.466667pt;}
.ycf{bottom:590.146667pt;}
.y1a{bottom:594.946667pt;}
.y6b{bottom:600.388000pt;}
.y44{bottom:600.546667pt;}
.yb6{bottom:600.866667pt;}
.y97{bottom:604.866667pt;}
.yce{bottom:608.546667pt;}
.y19{bottom:613.346667pt;}
.y6a{bottom:618.788000pt;}
.y43{bottom:618.946667pt;}
.yb5{bottom:619.266667pt;}
.y96{bottom:623.266667pt;}
.ycd{bottom:626.946667pt;}
.y69{bottom:637.188000pt;}
.yb4{bottom:637.666667pt;}
.y95{bottom:641.666667pt;}
.ycc{bottom:645.346667pt;}
.y18{bottom:650.466667pt;}
.y68{bottom:655.588000pt;}
.y42{bottom:656.066667pt;}
.y94{bottom:660.066667pt;}
.ycb{bottom:663.746667pt;}
.y17{bottom:668.866667pt;}
.y67{bottom:673.988000pt;}
.yb3{bottom:674.466667pt;}
.y93{bottom:678.466667pt;}
.yca{bottom:682.146667pt;}
.y66{bottom:692.388000pt;}
.yb2{bottom:692.866667pt;}
.y41{bottom:693.188000pt;}
.y92{bottom:696.866667pt;}
.y16{bottom:697.988000pt;}
.y65{bottom:710.788000pt;}
.yc9{bottom:711.266667pt;}
.y40{bottom:711.588000pt;}
.y91{bottom:715.266667pt;}
.y15{bottom:716.388000pt;}
.y64{bottom:729.188000pt;}
.y3f{bottom:729.988000pt;}
.y90{bottom:733.666667pt;}
.y14{bottom:734.788000pt;}
.y3e{bottom:748.388000pt;}
.y8f{bottom:752.066667pt;}
.y13{bottom:753.188000pt;}
.y63{bottom:766.146667pt;}
.y3d{bottom:766.788000pt;}
.y12{bottom:771.588000pt;}
.y62{bottom:784.546667pt;}
.y3c{bottom:785.188000pt;}
.y8b{bottom:787.600000pt;}
.y11{bottom:789.988000pt;}
.y61{bottom:802.946667pt;}
.y3b{bottom:803.588000pt;}
.y10{bottom:808.388000pt;}
.y60{bottom:821.346667pt;}
.y3a{bottom:821.988000pt;}
.yf{bottom:826.788000pt;}
.y5f{bottom:839.746667pt;}
.y39{bottom:840.388000pt;}
.ye{bottom:845.188000pt;}
.y5e{bottom:858.146667pt;}
.y38{bottom:858.788000pt;}
.yd{bottom:874.146667pt;}
.y5d{bottom:876.546667pt;}
.y37{bottom:877.188000pt;}
.y85{bottom:887.000000pt;}
.y36{bottom:895.588000pt;}
.yc{bottom:903.266667pt;}
.y5c{bottom:913.666667pt;}
.y35{bottom:913.988000pt;}
.yb{bottom:932.388000pt;}
.ya{bottom:950.788000pt;}
.y9{bottom:969.026667pt;}
.y6{bottom:1006.146667pt;}
.y5{bottom:1024.546667pt;}
.y4{bottom:1042.946667pt;}
.y3{bottom:1061.346667pt;}
.y2{bottom:1079.746667pt;}
.y1{bottom:1098.146667pt;}
.h3{height:17.933333pt;}
.h8{height:24.019531pt;}
.h9{height:36.768359pt;}
.h4{height:40.833203pt;}
.h5{height:43.375000pt;}
.h2{height:43.593750pt;}
.h6{height:44.468750pt;}
.hb{height:49.959083pt;}
.ha{height:50.664687pt;}
.h7{height:50.670021pt;}
.hd{height:64.200000pt;}
.he{height:64.266667pt;}
.hc{height:96.000000pt;}
.hf{height:97.400000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w5{width:105.266667pt;}
.w7{width:105.533333pt;}
.w4{width:126.666667pt;}
.w6{width:132.600000pt;}
.w3{width:165.533333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:1.040000pt;}
.x9{left:4.240000pt;}
.xc{left:5.253333pt;}
.xb{left:6.212000pt;}
.x12{left:10.760000pt;}
.xe{left:14.253333pt;}
.x11{left:18.120000pt;}
.x13{left:34.120000pt;}
.x8{left:112.400000pt;}
.x1{left:113.440000pt;}
.x3{left:117.600000pt;}
.x4{left:124.478667pt;}
.xa{left:279.866667pt;}
.x5{left:307.360000pt;}
.x7{left:357.600000pt;}
.xd{left:408.466667pt;}
.x2{left:417.800000pt;}
.x6{left:474.400000pt;}
.xf{left:515.666667pt;}
.x10{left:650.200000pt;}
}




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