
    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_177e212edaa8a3593cd59858.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_ad90d4274f7f99b9bdb74187.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.652000;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_dd69b66d05b82d2e760221b0.woff2')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_aa8ff1209e1a08120f6e31fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.702000;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_2bcfb633baddaad366cde26c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_aa2cf03218007f7533f4c625.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.444000;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_2016ea6c01f7dbee795e21b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.685000;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_e4b48e2af72fb5e39ed80bd0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.525000;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_165257f93f5f1195ad51259b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.927000;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:ffa;src:url('chunks/assets/font_97b6ac4e2d4adf44b3823ab2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.927000;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:ffb;src:url('chunks/assets/font_33d62f1f29630905da8c3f64.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a4e48d00a897bf424436a8cf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.049000;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:ffd;src:url('chunks/assets/font_7a04240838fe258b69779725.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.440000;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:ffe;src:url('chunks/assets/font_61f7c6608b616fc0d15cef8a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3f46aa8317eb0545f4e80b56.woff2')format("woff");}.fff{font-family:fff;line-height:0.899000;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:ff10;src:url('chunks/assets/font_73075eb6cfdc69376b745acd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.960000;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:ff11;src:url('chunks/assets/font_e30b017f0e1aaedb100307b4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.959000;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:ff12;src:url('chunks/assets/font_4d5f61621611ef3f2a1bc605.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.959000;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:ff13;src:url('chunks/assets/font_6c7e5cd9a00a734e96958825.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.959000;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:ff14;src:url('chunks/assets/font_b45d60cd3bd3a47a851db911.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.959000;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:ff15;src:url('chunks/assets/font_d8113a85040fb224ae82c368.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.959000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-18.042000px;}
.v8{vertical-align:-16.692000px;}
.v5{vertical-align:-8.964000px;}
.v4{vertical-align:-7.470000px;}
.v3{vertical-align:-3.984000px;}
.v7{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:9.222000px;}
.ve{vertical-align:10.679404px;}
.vd{vertical-align:11.911144px;}
.vb{vertical-align:17.268000px;}
.v1{vertical-align:21.690000px;}
.v6{vertical-align:22.854000px;}
.vc{vertical-align:28.992000px;}
.va{vertical-align:52.230000px;}
.ls3{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000564px;}
.ls31{letter-spacing:0.000600px;}
.ls2e{letter-spacing:0.001698px;}
.ls30{letter-spacing:0.002555px;}
.ls16{letter-spacing:0.002725px;}
.lsf{letter-spacing:0.002796px;}
.ls23{letter-spacing:0.003269px;}
.ls26{letter-spacing:0.004200px;}
.ls25{letter-spacing:0.005110px;}
.ls2b{letter-spacing:0.178766px;}
.ls1a{letter-spacing:0.687403px;}
.ls2{letter-spacing:2.990383px;}
.ls35{letter-spacing:3.551751px;}
.ls24{letter-spacing:3.574898px;}
.ls20{letter-spacing:3.681403px;}
.ls33{letter-spacing:3.763702px;}
.ls28{letter-spacing:5.113817px;}
.ls8{letter-spacing:5.155037px;}
.ls13{letter-spacing:5.378383px;}
.ls32{letter-spacing:5.538908px;}
.ls29{letter-spacing:6.562898px;}
.ls18{letter-spacing:6.568898px;}
.ls22{letter-spacing:7.349675px;}
.ls12{letter-spacing:7.355675px;}
.ls9{letter-spacing:7.468118px;}
.ls2c{letter-spacing:8.246383px;}
.ls2f{letter-spacing:10.161403px;}
.ls15{letter-spacing:13.278538px;}
.ls1d{letter-spacing:13.284538px;}
.ls10{letter-spacing:14.954004px;}
.lse{letter-spacing:15.356004px;}
.lsd{letter-spacing:15.356796px;}
.lsc{letter-spacing:15.360557px;}
.ls1c{letter-spacing:16.269403px;}
.ls14{letter-spacing:16.275403px;}
.ls1f{letter-spacing:16.602538px;}
.ls6{letter-spacing:16.616400px;}
.ls21{letter-spacing:16.617269px;}
.ls27{letter-spacing:19.846898px;}
.ls1e{letter-spacing:20.283403px;}
.ls19{letter-spacing:20.558383px;}
.ls2d{letter-spacing:21.153269px;}
.ls11{letter-spacing:22.143403px;}
.lsb{letter-spacing:22.784045px;}
.ls17{letter-spacing:23.871403px;}
.ls34{letter-spacing:26.919269px;}
.ls2a{letter-spacing:28.803269px;}
.ls5{letter-spacing:29.886564px;}
.ls7{letter-spacing:29.890546px;}
.ls4{letter-spacing:30.715706px;}
.lsa{letter-spacing:42.667706px;}
.ls1{letter-spacing:79.377403px;}
.ls0{letter-spacing:79.383403px;}
.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;}
}
.ws27{word-spacing:-59.775600px;}
.ws36{word-spacing:-16.617617px;}
.ws12{word-spacing:-14.955955px;}
.ws1{word-spacing:-6.647147px;}
.ws9{word-spacing:-3.550694px;}
.ws15{word-spacing:-1.853044px;}
.ws13{word-spacing:-0.537984px;}
.ws37{word-spacing:-0.239102px;}
.ws35{word-spacing:-0.179327px;}
.ws1d{word-spacing:-0.059776px;}
.ws2b{word-spacing:-0.041843px;}
.ws1e{word-spacing:-0.006818px;}
.ws7{word-spacing:-0.003185px;}
.ws38{word-spacing:-0.002759px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:0.597756px;}
.ws18{word-spacing:1.673717px;}
.ws16{word-spacing:1.673986px;}
.wsa{word-spacing:2.092146px;}
.ws19{word-spacing:2.151922px;}
.wse{word-spacing:2.331248px;}
.ws1c{word-spacing:2.510575px;}
.ws32{word-spacing:2.988780px;}
.ws25{word-spacing:3.168107px;}
.ws23{word-spacing:3.227882px;}
.wsd{word-spacing:3.287658px;}
.ws2e{word-spacing:3.407209px;}
.wsb{word-spacing:3.646312px;}
.ws20{word-spacing:4.244068px;}
.ws2a{word-spacing:4.527692px;}
.ws4{word-spacing:4.542946px;}
.ws21{word-spacing:4.841824px;}
.wsc{word-spacing:5.200477px;}
.ws6{word-spacing:5.379804px;}
.ws5{word-spacing:5.559131px;}
.wsf{word-spacing:5.858009px;}
.ws22{word-spacing:6.037336px;}
.ws8{word-spacing:6.515540px;}
.ws3{word-spacing:6.993745px;}
.ws1a{word-spacing:7.292623px;}
.ws2{word-spacing:9.862974px;}
.ws28{word-spacing:12.194222px;}
.ws26{word-spacing:13.210408px;}
.ws11{word-spacing:14.955955px;}
.ws29{word-spacing:15.242778px;}
.ws2d{word-spacing:15.840534px;}
.ws1f{word-spacing:16.530415px;}
.ws10{word-spacing:16.557841px;}
.ws31{word-spacing:17.416266px;}
.ws17{word-spacing:18.231558px;}
.ws2c{word-spacing:26.839244px;}
.ws24{word-spacing:29.368266px;}
.ws14{word-spacing:32.854550px;}
.ws33{word-spacing:33.878817px;}
.ws30{word-spacing:61.394129px;}
.ws2f{word-spacing:67.779493px;}
.ws34{word-spacing:105.689536px;}
._0{margin-left:-12.050808px;}
._14{margin-left:-9.325002px;}
._6{margin-left:-6.384024px;}
._8{margin-left:-4.423386px;}
._1{margin-left:-2.582316px;}
._5{margin-left:-1.195512px;}
._3{width:1.494390px;}
._4{width:2.773608px;}
._7{width:14.393923px;}
._10{width:16.880672px;}
._e{width:18.357202px;}
._2{width:20.562806px;}
._11{width:22.053922px;}
._d{width:23.157088px;}
._a{width:25.811094px;}
._f{width:30.366005px;}
._b{width:33.844955px;}
._c{width:36.761994px;}
._9{width:41.902696px;}
._15{width:44.629876px;}
._13{width:77.298393px;}
._12{width:86.727340px;}
._16{width:123.643084px;}
.fc7{color:rgb(0,0,255);}
.fc5{color:rgb(187,192,197);}
.fc6{color:rgb(0,0,0);}
.fc3{color:rgb(84,97,110);}
.fc2{color:rgb(125,126,126);}
.fc1{color:rgb(0,0,205);}
.fc4{color:rgb(153,153,235);}
.fc0{color:rgb(30,50,10);}
.fsc{font-size:11.500716px;}
.fsb{font-size:12.322200px;}
.fsd{font-size:13.021800px;}
.fs8{font-size:14.881800px;}
.fsa{font-size:17.251080px;}
.fse{font-size:18.230520px;}
.fs10{font-size:18.602400px;}
.fs9{font-size:20.834520px;}
.fs4{font-size:23.910600px;}
.fsf{font-size:26.043360px;}
.fs3{font-size:29.887800px;}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yce{bottom:1.011406px;}
.ye8{bottom:1.058020px;}
.y10b{bottom:1.511444px;}
.y75{bottom:3.751552px;}
.y8a{bottom:4.309619px;}
.y8b{bottom:5.518766px;}
.yc5{bottom:5.580971px;}
.ydf{bottom:5.887025px;}
.ye{bottom:6.435000px;}
.y21{bottom:8.055000px;}
.yff{bottom:8.409958px;}
.ye0{bottom:8.626942px;}
.yea{bottom:8.654157px;}
.yc6{bottom:8.866809px;}
.y6a{bottom:9.270170px;}
.y78{bottom:9.301124px;}
.yd0{bottom:9.354645px;}
.y7d{bottom:9.704272px;}
.y6b{bottom:12.401598px;}
.yee{bottom:13.021799px;}
.y79{bottom:13.300608px;}
.y100{bottom:13.370474px;}
.y10d{bottom:14.106943px;}
.y7e{bottom:14.912902px;}
.y20{bottom:15.526500px;}
.y7a{bottom:17.300091px;}
.yed{bottom:18.528979px;}
.yf6{bottom:19.505614px;}
.yc7{bottom:19.674487px;}
.y7f{bottom:20.152486px;}
.y113{bottom:20.346374px;}
.y7b{bottom:21.299575px;}
.yf5{bottom:21.511245px;}
.ye1{bottom:22.598291px;}
.yda{bottom:22.998000px;}
.y1f{bottom:22.999500px;}
.y6c{bottom:23.748971px;}
.yec{bottom:24.036158px;}
.yef{bottom:24.931407px;}
.y7c{bottom:25.330162px;}
.y80{bottom:25.361116px;}
.y101{bottom:27.089744px;}
.y3d{bottom:27.331500px;}
.yd4{bottom:27.760931px;}
.y112{bottom:28.175008px;}
.y67{bottom:28.437000px;}
.yf7{bottom:30.384286px;}
.yc8{bottom:30.456412px;}
.y1e{bottom:30.471000px;}
.y81{bottom:30.569746px;}
.y122{bottom:32.992500px;}
.y82{bottom:34.290196px;}
.y6d{bottom:35.065240px;}
.y111{bottom:36.003456px;}
.ye2{bottom:36.569706px;}
.y9f{bottom:37.578000px;}
.ycf{bottom:38.619931px;}
.y10c{bottom:40.305261px;}
.y102{bottom:40.770321px;}
.yf0{bottom:41.235742px;}
.yc9{bottom:41.238399px;}
.y83{bottom:43.591321px;}
.y3c{bottom:43.770000px;}
.y110{bottom:43.831904px;}
.yd7{bottom:45.551169px;}
.y6e{bottom:46.381658px;}
.yd5{bottom:46.629361px;}
.y66{bottom:47.118000px;}
.yf4{bottom:48.452098px;}
.ye9{bottom:49.347347px;}
.ye3{bottom:50.540795px;}
.y10f{bottom:51.660631px;}
.yca{bottom:52.020324px;}
.yf8{bottom:52.114480px;}
.y121{bottom:52.794000px;}
.y84{bottom:52.892446px;}
.y9e{bottom:54.016500px;}
.y103{bottom:54.450991px;}
.yf1{bottom:57.540013px;}
.y6f{bottom:57.698151px;}
.yc4{bottom:60.519917px;}
.y3b{bottom:60.955500px;}
.y65{bottom:61.314000px;}
.y85{bottom:62.162691px;}
.ycb{bottom:62.802249px;}
.yf9{bottom:62.965871px;}
.y76{bottom:63.402717px;}
.ye4{bottom:64.512210px;}
.yd6{bottom:65.497730px;}
.y8c{bottom:65.821010px;}
.y104{bottom:68.170261px;}
.y70{bottom:69.045524px;}
.y9d{bottom:70.455000px;}
.y2a{bottom:70.762500px;}
.y86{bottom:71.463816px;}
.y120{bottom:73.342500px;}
.ycc{bottom:73.584174px;}
.yf2{bottom:73.844608px;}
.yab{bottom:74.185500px;}
.yd3{bottom:74.559476px;}
.y3a{bottom:77.392500px;}
.ye5{bottom:78.483625px;}
.yb6{bottom:79.489500px;}
.yd2{bottom:79.770842px;}
.y64{bottom:79.993500px;}
.y71{bottom:80.361644px;}
.y87{bottom:80.764941px;}
.y105{bottom:81.850466px;}
.ycd{bottom:84.366099px;}
.yfa{bottom:84.696000px;}
.yd1{bottom:84.879257px;}
.y9c{bottom:86.892000px;}
.y88{bottom:90.066066px;}
.yf3{bottom:90.148879px;}
.yfe{bottom:90.648489px;}
.y72{bottom:91.678137px;}
.ya8{bottom:92.347500px;}
.ye6{bottom:92.454714px;}
.y11f{bottom:93.142500px;}
.yd{bottom:95.223000px;}
.y106{bottom:95.531136px;}
.yfb{bottom:95.574737px;}
.y39{bottom:95.700000px;}
.y63{bottom:96.432000px;}
.y8d{bottom:96.610500px;}
.yb5{bottom:99.291000px;}
.y89{bottom:99.335939px;}
.y73{bottom:102.994630px;}
.y9b{bottom:103.330500px;}
.ye7{bottom:106.426129px;}
.yeb{bottom:106.480430px;}
.yaa{bottom:106.545000px;}
.y107{bottom:109.250406px;}
.ya9{bottom:111.028500px;}
.y62{bottom:112.870500px;}
.y44{bottom:113.586000px;}
.y11e{bottom:113.691000px;}
.y74{bottom:114.310751px;}
.y29{bottom:114.487500px;}
.yb4{bottom:117.223500px;}
.yc{bottom:117.664500px;}
.y77{bottom:122.836500px;}
.y108{bottom:122.931076px;}
.yb3{bottom:124.245000px;}
.y9a{bottom:124.626000px;}
.y38{bottom:127.455000px;}
.y61{bottom:130.056000px;}
.y4d{bottom:133.644000px;}
.y109{bottom:136.611281px;}
.yb{bottom:137.146500px;}
.y11d{bottom:137.601000px;}
.y69{bottom:139.061489px;}
.ya7{bottom:140.151000px;}
.y99{bottom:143.679000px;}
.y37{bottom:143.893500px;}
.yde{bottom:147.655245px;}
.y60{bottom:148.362000px;}
.yb2{bottom:149.592000px;}
.y10a{bottom:150.291951px;}
.y10e{bottom:151.067113px;}
.y4c{bottom:153.444000px;}
.ya{bottom:153.610500px;}
.y11c{bottom:155.533500px;}
.y1d{bottom:157.081500px;}
.y28{bottom:158.211000px;}
.y43{bottom:158.383500px;}
.y36{bottom:160.332000px;}
.ya6{bottom:160.699500px;}
.y98{bottom:161.613000px;}
.y1c{bottom:166.047000px;}
.y114{bottom:167.106000px;}
.y5f{bottom:167.416500px;}
.yb1{bottom:170.140500px;}
.y9{bottom:173.217000px;}
.y4b{bottom:173.992500px;}
.y11b{bottom:175.335000px;}
.y27{bottom:176.145000px;}
.y42{bottom:177.063000px;}
.y35{bottom:177.517500px;}
.ya5{bottom:178.632000px;}
.y97{bottom:179.545500px;}
.yc3{bottom:180.358500px;}
.y1b{bottom:182.026500px;}
.yd9{bottom:183.022500px;}
.yfc{bottom:183.084000px;}
.y5e{bottom:183.855000px;}
.yb0{bottom:188.073000px;}
.y8{bottom:189.682500px;}
.y127{bottom:190.848000px;}
.y41{bottom:191.259000px;}
.y4a{bottom:193.792500px;}
.y26{bottom:194.077500px;}
.y34{bottom:195.823500px;}
.y11a{bottom:195.882000px;}
.y1a{bottom:197.683500px;}
.yb7{bottom:198.054000px;}
.y8e{bottom:198.115500px;}
.ya4{bottom:198.432000px;}
.y96{bottom:199.345500px;}
.yc2{bottom:200.158500px;}
.y5d{bottom:200.293500px;}
.y55{bottom:200.299500px;}
.yaf{bottom:207.873000px;}
.y19{bottom:207.937500px;}
.y56{bottom:208.371000px;}
.y68{bottom:208.411500px;}
.y40{bottom:209.940000px;}
.y25{bottom:212.010000px;}
.y49{bottom:214.341000px;}
.y33{bottom:214.878000px;}
.y7{bottom:215.059500px;}
.y119{bottom:215.683500px;}
.y5c{bottom:216.732000px;}
.y18{bottom:218.193000px;}
.y54{bottom:218.233500px;}
.y4e{bottom:218.727000px;}
.ya3{bottom:218.980500px;}
.y95{bottom:219.894000px;}
.yc1{bottom:220.707000px;}
.y126{bottom:223.725000px;}
.y17{bottom:228.447000px;}
.y45{bottom:228.819000px;}
.ybb{bottom:229.473000px;}
.y24{bottom:229.942500px;}
.yae{bottom:230.289000px;}
.y32{bottom:232.810500px;}
.y6{bottom:232.993500px;}
.y5b{bottom:233.169000px;}
.y48{bottom:234.142500px;}
.y118{bottom:238.099500px;}
.ya2{bottom:238.780500px;}
.y16{bottom:239.023500px;}
.y94{bottom:239.694000px;}
.yc0{bottom:240.507000px;}
.y125{bottom:241.657500px;}
.y53{bottom:242.143500px;}
.yba{bottom:249.274500px;}
.y5a{bottom:249.607500px;}
.y3f{bottom:250.252500px;}
.y31{bottom:250.743000px;}
.yad{bottom:250.837500px;}
.y15{bottom:255.003000px;}
.y2b{bottom:255.999000px;}
.y3e{bottom:256.060500px;}
.y117{bottom:258.646500px;}
.ya1{bottom:259.329000px;}
.y124{bottom:259.590000px;}
.y93{bottom:260.242500px;}
.yfd{bottom:260.967000px;}
.ybf{bottom:261.055500px;}
.y59{bottom:266.046000px;}
.y52{bottom:266.053500px;}
.yd8{bottom:266.628000px;}
.y30{bottom:268.675500px;}
.y5{bottom:268.858500px;}
.yb9{bottom:269.821500px;}
.yac{bottom:270.637500px;}
.y23{bottom:273.667500px;}
.y14{bottom:275.502000px;}
.y123{bottom:277.524000px;}
.y92{bottom:278.175000px;}
.y116{bottom:278.448000px;}
.ya0{bottom:279.129000px;}
.ydd{bottom:279.180000px;}
.ybe{bottom:280.855500px;}
.y51{bottom:283.986000px;}
.y58{bottom:285.474000px;}
.y2f{bottom:286.608000px;}
.yb8{bottom:289.623000px;}
.y13{bottom:290.131500px;}
.y91{bottom:297.976500px;}
.ydc{bottom:298.981500px;}
.y115{bottom:298.995000px;}
.y12{bottom:299.098500px;}
.y57{bottom:303.780000px;}
.y2e{bottom:306.409500px;}
.y11{bottom:308.064000px;}
.y10{bottom:317.031000px;}
.ydb{bottom:317.140500px;}
.y4{bottom:320.011500px;}
.yf{bottom:325.998000px;}
.y3{bottom:337.944000px;}
.y2{bottom:355.876500px;}
.y2d{bottom:358.306500px;}
.y50{bottom:358.375500px;}
.ybd{bottom:358.429500px;}
.y90{bottom:359.565000px;}
.y47{bottom:359.637000px;}
.y22{bottom:365.377500px;}
.y2c{bottom:372.502500px;}
.y4f{bottom:372.571500px;}
.ybc{bottom:372.625500px;}
.y8f{bottom:373.761000px;}
.y46{bottom:373.833000px;}
.y1{bottom:377.986500px;}
.h17{height:2.391024px;}
.h1e{height:9.130750px;}
.h21{height:9.649154px;}
.h14{height:10.551196px;}
.h1d{height:12.783050px;}
.h22{height:13.508815px;}
.h25{height:13.784378px;}
.h15{height:14.771675px;}
.h8{height:17.717755px;}
.h26{height:17.910860px;}
.h11{height:17.916860px;}
.h9{height:18.162860px;}
.h24{height:19.298130px;}
.h6{height:22.146860px;}
.h10{height:30.894614px;}
.hd{height:30.900614px;}
.h7{height:31.005515px;}
.h1f{height:31.112579px;}
.h18{height:31.382100px;}
.ha{height:35.435065px;}
.hf{height:36.817720px;}
.hb{height:36.823720px;}
.h1b{height:37.355700px;}
.h16{height:37.361700px;}
.h12{height:39.864614px;}
.he{height:40.466410px;}
.h3{height:44.293720px;}
.hc{height:44.831700px;}
.h19{height:47.151024px;}
.h4{height:52.695515px;}
.h5{height:52.701515px;}
.h1a{height:52.898100px;}
.h2{height:63.783205px;}
.h1c{height:92.940193px;}
.h20{height:109.437420px;}
.h13{height:125.069176px;}
.h23{height:156.337731px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w4{width:145.844160px;}
.w2{width:166.676160px;}
.w5{width:208.346880px;}
.w3{width:395.850675px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x45{left:4.313471px;}
.x43{left:6.809360px;}
.x42{left:8.626942px;}
.x4c{left:9.727567px;}
.x2e{left:11.936394px;}
.x41{left:13.184573px;}
.x2a{left:14.664823px;}
.x2b{left:16.865990px;}
.x4b{left:18.331177px;}
.x4d{left:19.454948px;}
.x15{left:21.259500px;}
.x21{left:27.128331px;}
.x1{left:28.197000px;}
.x1f{left:29.980577px;}
.x3{left:31.053000px;}
.x1e{left:32.088881px;}
.x18{left:34.336500px;}
.x38{left:39.867554px;}
.x37{left:42.229104px;}
.x16{left:43.675500px;}
.x29{left:44.769291px;}
.x2d{left:46.164460px;}
.x36{left:48.210607px;}
.x19{left:51.148500px;}
.x1d{left:54.477000px;}
.x28{left:58.783110px;}
.x1c{left:62.347500px;}
.x44{left:63.426909px;}
.x1a{left:65.469000px;}
.x7{left:72.450000px;}
.x30{left:75.712500px;}
.x1b{left:81.036000px;}
.x20{left:84.919271px;}
.x6{left:89.718000px;}
.x24{left:98.777948px;}
.x2c{left:110.900290px;}
.x47{left:115.839654px;}
.x25{left:117.039032px;}
.x22{left:129.597000px;}
.x26{left:135.300489px;}
.x35{left:136.672500px;}
.x9{left:138.043500px;}
.x4a{left:140.377500px;}
.x46{left:143.565410px;}
.x4f{left:150.020450px;}
.x27{left:153.561574px;}
.x2{left:157.419000px;}
.x8{left:166.539000px;}
.x50{left:168.864000px;}
.x49{left:171.628500px;}
.x3a{left:175.231850px;}
.x39{left:183.626349px;}
.xb{left:186.031500px;}
.x31{left:187.380000px;}
.xa{left:199.341000px;}
.x4{left:201.240000px;}
.x4e{left:205.866808px;}
.x54{left:211.924500px;}
.x3e{left:216.665247px;}
.x3c{left:219.027105px;}
.x3b{left:222.621183px;}
.x5{left:224.919000px;}
.x52{left:231.852000px;}
.x53{left:232.854000px;}
.x51{left:234.333000px;}
.x33{left:236.232000px;}
.x23{left:238.062000px;}
.x32{left:244.030500px;}
.x48{left:253.005000px;}
.x34{left:260.308500px;}
.x3d{left:281.485256px;}
.x2f{left:313.182000px;}
.x40{left:349.667069px;}
.x3f{left:358.036924px;}
.xc{left:452.527500px;}
.x17{left:454.188000px;}
.x13{left:465.190500px;}
.xf{left:468.733500px;}
.xe{left:470.589000px;}
.x10{left:477.889500px;}
.x12{left:479.989500px;}
.xd{left:483.255000px;}
.x14{left:485.739000px;}
.x11{left:486.784500px;}
@media print{
.v2{vertical-align:-16.037333pt;}
.v8{vertical-align:-14.837333pt;}
.v5{vertical-align:-7.968000pt;}
.v4{vertical-align:-6.640000pt;}
.v3{vertical-align:-3.541333pt;}
.v7{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:8.197333pt;}
.ve{vertical-align:9.492804pt;}
.vd{vertical-align:10.587683pt;}
.vb{vertical-align:15.349333pt;}
.v1{vertical-align:19.280000pt;}
.v6{vertical-align:20.314667pt;}
.vc{vertical-align:25.770667pt;}
.va{vertical-align:46.426667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000501pt;}
.ls31{letter-spacing:0.000533pt;}
.ls2e{letter-spacing:0.001509pt;}
.ls30{letter-spacing:0.002271pt;}
.ls16{letter-spacing:0.002422pt;}
.lsf{letter-spacing:0.002485pt;}
.ls23{letter-spacing:0.002906pt;}
.ls26{letter-spacing:0.003733pt;}
.ls25{letter-spacing:0.004542pt;}
.ls2b{letter-spacing:0.158903pt;}
.ls1a{letter-spacing:0.611025pt;}
.ls2{letter-spacing:2.658118pt;}
.ls35{letter-spacing:3.157112pt;}
.ls24{letter-spacing:3.177687pt;}
.ls20{letter-spacing:3.272358pt;}
.ls33{letter-spacing:3.345513pt;}
.ls28{letter-spacing:4.545615pt;}
.ls8{letter-spacing:4.582255pt;}
.ls13{letter-spacing:4.780785pt;}
.ls32{letter-spacing:4.923474pt;}
.ls29{letter-spacing:5.833687pt;}
.ls18{letter-spacing:5.839021pt;}
.ls22{letter-spacing:6.533044pt;}
.ls12{letter-spacing:6.538378pt;}
.ls9{letter-spacing:6.638327pt;}
.ls2c{letter-spacing:7.330118pt;}
.ls2f{letter-spacing:9.032358pt;}
.ls15{letter-spacing:11.803145pt;}
.ls1d{letter-spacing:11.808479pt;}
.ls10{letter-spacing:13.292448pt;}
.lse{letter-spacing:13.649782pt;}
.lsd{letter-spacing:13.650485pt;}
.lsc{letter-spacing:13.653828pt;}
.ls1c{letter-spacing:14.461692pt;}
.ls14{letter-spacing:14.467025pt;}
.ls1f{letter-spacing:14.757812pt;}
.ls6{letter-spacing:14.770133pt;}
.ls21{letter-spacing:14.770906pt;}
.ls27{letter-spacing:17.641687pt;}
.ls1e{letter-spacing:18.029692pt;}
.ls19{letter-spacing:18.274118pt;}
.ls2d{letter-spacing:18.802906pt;}
.ls11{letter-spacing:19.683025pt;}
.lsb{letter-spacing:20.252484pt;}
.ls17{letter-spacing:21.219025pt;}
.ls34{letter-spacing:23.928239pt;}
.ls2a{letter-spacing:25.602906pt;}
.ls5{letter-spacing:26.565835pt;}
.ls7{letter-spacing:26.569374pt;}
.ls4{letter-spacing:27.302850pt;}
.lsa{letter-spacing:37.926850pt;}
.ls1{letter-spacing:70.557692pt;}
.ls0{letter-spacing:70.563025pt;}
.ws27{word-spacing:-53.133867pt;}
.ws36{word-spacing:-14.771215pt;}
.ws12{word-spacing:-13.294182pt;}
.ws1{word-spacing:-5.908575pt;}
.ws9{word-spacing:-3.156173pt;}
.ws15{word-spacing:-1.647150pt;}
.ws13{word-spacing:-0.478208pt;}
.ws37{word-spacing:-0.212535pt;}
.ws35{word-spacing:-0.159402pt;}
.ws1d{word-spacing:-0.053134pt;}
.ws2b{word-spacing:-0.037194pt;}
.ws1e{word-spacing:-0.006061pt;}
.ws7{word-spacing:-0.002831pt;}
.ws38{word-spacing:-0.002452pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.531339pt;}
.ws18{word-spacing:1.487748pt;}
.ws16{word-spacing:1.487987pt;}
.wsa{word-spacing:1.859685pt;}
.ws19{word-spacing:1.912819pt;}
.wse{word-spacing:2.072221pt;}
.ws1c{word-spacing:2.231622pt;}
.ws32{word-spacing:2.656693pt;}
.ws25{word-spacing:2.816095pt;}
.ws23{word-spacing:2.869229pt;}
.wsd{word-spacing:2.922363pt;}
.ws2e{word-spacing:3.028630pt;}
.wsb{word-spacing:3.241166pt;}
.ws20{word-spacing:3.772505pt;}
.ws2a{word-spacing:4.024615pt;}
.ws4{word-spacing:4.038174pt;}
.ws21{word-spacing:4.303843pt;}
.wsc{word-spacing:4.622646pt;}
.ws6{word-spacing:4.782048pt;}
.ws5{word-spacing:4.941450pt;}
.wsf{word-spacing:5.207119pt;}
.ws22{word-spacing:5.366521pt;}
.ws8{word-spacing:5.791591pt;}
.ws3{word-spacing:6.216662pt;}
.ws1a{word-spacing:6.482332pt;}
.ws2{word-spacing:8.767088pt;}
.ws28{word-spacing:10.839309pt;}
.ws26{word-spacing:11.742585pt;}
.ws11{word-spacing:13.294182pt;}
.ws29{word-spacing:13.549136pt;}
.ws2d{word-spacing:14.080475pt;}
.ws1f{word-spacing:14.693702pt;}
.ws10{word-spacing:14.718081pt;}
.ws31{word-spacing:15.481125pt;}
.ws17{word-spacing:16.205829pt;}
.ws2c{word-spacing:23.857106pt;}
.ws24{word-spacing:26.105125pt;}
.ws14{word-spacing:29.204044pt;}
.ws33{word-spacing:30.114504pt;}
.ws30{word-spacing:54.572559pt;}
.ws2f{word-spacing:60.248439pt;}
.ws34{word-spacing:93.946254pt;}
._0{margin-left:-10.711829pt;}
._14{margin-left:-8.288891pt;}
._6{margin-left:-5.674688pt;}
._8{margin-left:-3.931899pt;}
._1{margin-left:-2.295392pt;}
._5{margin-left:-1.062677pt;}
._3{width:1.328347pt;}
._4{width:2.465429pt;}
._7{width:12.794598pt;}
._10{width:15.005042pt;}
._e{width:16.317513pt;}
._2{width:18.278050pt;}
._11{width:19.603486pt;}
._d{width:20.584078pt;}
._a{width:22.943195pt;}
._f{width:26.992004pt;}
._b{width:30.084404pt;}
._c{width:32.677328pt;}
._9{width:37.246841pt;}
._15{width:39.671001pt;}
._13{width:68.709683pt;}
._12{width:77.090969pt;}
._16{width:109.904963pt;}
.fsc{font-size:10.222859pt;}
.fsb{font-size:10.953067pt;}
.fsd{font-size:11.574933pt;}
.fs8{font-size:13.228267pt;}
.fsa{font-size:15.334293pt;}
.fse{font-size:16.204907pt;}
.fs10{font-size:16.535467pt;}
.fs9{font-size:18.519573pt;}
.fs4{font-size:21.253867pt;}
.fsf{font-size:23.149653pt;}
.fs3{font-size:26.566933pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:0.899028pt;}
.ye8{bottom:0.940462pt;}
.y10b{bottom:1.343505pt;}
.y75{bottom:3.334713pt;}
.y8a{bottom:3.830773pt;}
.y8b{bottom:4.905569pt;}
.yc5{bottom:4.960863pt;}
.ydf{bottom:5.232911pt;}
.ye{bottom:5.720000pt;}
.y21{bottom:7.160000pt;}
.yff{bottom:7.475518pt;}
.ye0{bottom:7.668392pt;}
.yea{bottom:7.692584pt;}
.yc6{bottom:7.881608pt;}
.y6a{bottom:8.240151pt;}
.y78{bottom:8.267666pt;}
.yd0{bottom:8.315240pt;}
.y7d{bottom:8.626019pt;}
.y6b{bottom:11.023643pt;}
.yee{bottom:11.574932pt;}
.y79{bottom:11.822762pt;}
.y100{bottom:11.884865pt;}
.y10d{bottom:12.539505pt;}
.y7e{bottom:13.255913pt;}
.y20{bottom:13.801333pt;}
.y7a{bottom:15.377859pt;}
.yed{bottom:16.470203pt;}
.yf6{bottom:17.338323pt;}
.yc7{bottom:17.488433pt;}
.y7f{bottom:17.913321pt;}
.y113{bottom:18.085665pt;}
.y7b{bottom:18.932956pt;}
.yf5{bottom:19.121107pt;}
.ye1{bottom:20.087370pt;}
.yda{bottom:20.442667pt;}
.y1f{bottom:20.444000pt;}
.y6c{bottom:21.110196pt;}
.yec{bottom:21.365474pt;}
.yef{bottom:22.161251pt;}
.y7c{bottom:22.515699pt;}
.y80{bottom:22.543214pt;}
.y101{bottom:24.079772pt;}
.y3d{bottom:24.294667pt;}
.yd4{bottom:24.676383pt;}
.y112{bottom:25.044451pt;}
.y67{bottom:25.277333pt;}
.yf7{bottom:27.008254pt;}
.yc8{bottom:27.072366pt;}
.y1e{bottom:27.085333pt;}
.y81{bottom:27.173108pt;}
.y122{bottom:29.326667pt;}
.y82{bottom:30.480174pt;}
.y6d{bottom:31.169102pt;}
.y111{bottom:32.003072pt;}
.ye2{bottom:32.506405pt;}
.y9f{bottom:33.402667pt;}
.ycf{bottom:34.328828pt;}
.y10c{bottom:35.826898pt;}
.y102{bottom:36.240285pt;}
.yf0{bottom:36.653993pt;}
.yc9{bottom:36.656354pt;}
.y83{bottom:38.747841pt;}
.y3c{bottom:38.906667pt;}
.y110{bottom:38.961692pt;}
.yd7{bottom:40.489928pt;}
.y6e{bottom:41.228141pt;}
.yd5{bottom:41.448321pt;}
.y66{bottom:41.882667pt;}
.yf4{bottom:43.068532pt;}
.ye9{bottom:43.864309pt;}
.ye3{bottom:44.925151pt;}
.y10f{bottom:45.920561pt;}
.yca{bottom:46.240288pt;}
.yf8{bottom:46.323982pt;}
.y121{bottom:46.928000pt;}
.y84{bottom:47.015508pt;}
.y9e{bottom:48.014667pt;}
.y103{bottom:48.400881pt;}
.yf1{bottom:51.146678pt;}
.y6f{bottom:51.287246pt;}
.yc4{bottom:53.795481pt;}
.y3b{bottom:54.182667pt;}
.y65{bottom:54.501333pt;}
.y85{bottom:55.255726pt;}
.ycb{bottom:55.824221pt;}
.yf9{bottom:55.969663pt;}
.y76{bottom:56.357971pt;}
.ye4{bottom:57.344187pt;}
.yd6{bottom:58.220204pt;}
.y8c{bottom:58.507564pt;}
.y104{bottom:60.595787pt;}
.y70{bottom:61.373799pt;}
.y9d{bottom:62.626667pt;}
.y2a{bottom:62.900000pt;}
.y86{bottom:63.523392pt;}
.y120{bottom:65.193333pt;}
.ycc{bottom:65.408154pt;}
.yf2{bottom:65.639652pt;}
.yab{bottom:65.942667pt;}
.yd3{bottom:66.275090pt;}
.y3a{bottom:68.793333pt;}
.ye5{bottom:69.763222pt;}
.yb6{bottom:70.657333pt;}
.yd2{bottom:70.907415pt;}
.y64{bottom:71.105333pt;}
.y71{bottom:71.432573pt;}
.y87{bottom:71.791059pt;}
.y105{bottom:72.755969pt;}
.ycd{bottom:74.992088pt;}
.yfa{bottom:75.285333pt;}
.yd1{bottom:75.448228pt;}
.y9c{bottom:77.237333pt;}
.y88{bottom:80.058726pt;}
.yf3{bottom:80.132337pt;}
.yfe{bottom:80.576435pt;}
.y72{bottom:81.491678pt;}
.ya8{bottom:82.086667pt;}
.ye6{bottom:82.181968pt;}
.y11f{bottom:82.793333pt;}
.yd{bottom:84.642667pt;}
.y106{bottom:84.916565pt;}
.yfb{bottom:84.955322pt;}
.y39{bottom:85.066667pt;}
.y63{bottom:85.717333pt;}
.y8d{bottom:85.876000pt;}
.yb5{bottom:88.258667pt;}
.y89{bottom:88.298613pt;}
.y73{bottom:91.550782pt;}
.y9b{bottom:91.849333pt;}
.ye7{bottom:94.601003pt;}
.yeb{bottom:94.649271pt;}
.yaa{bottom:94.706667pt;}
.y107{bottom:97.111472pt;}
.ya9{bottom:98.692000pt;}
.y62{bottom:100.329333pt;}
.y44{bottom:100.965333pt;}
.y11e{bottom:101.058667pt;}
.y74{bottom:101.609556pt;}
.y29{bottom:101.766667pt;}
.yb4{bottom:104.198667pt;}
.yc{bottom:104.590667pt;}
.y77{bottom:109.188000pt;}
.y108{bottom:109.272067pt;}
.yb3{bottom:110.440000pt;}
.y9a{bottom:110.778667pt;}
.y38{bottom:113.293333pt;}
.y61{bottom:115.605333pt;}
.y4d{bottom:118.794667pt;}
.y109{bottom:121.432249pt;}
.yb{bottom:121.908000pt;}
.y11d{bottom:122.312000pt;}
.y69{bottom:123.610212pt;}
.ya7{bottom:124.578667pt;}
.y99{bottom:127.714667pt;}
.y37{bottom:127.905333pt;}
.yde{bottom:131.249107pt;}
.y60{bottom:131.877333pt;}
.yb2{bottom:132.970667pt;}
.y10a{bottom:133.592845pt;}
.y10e{bottom:134.281878pt;}
.y4c{bottom:136.394667pt;}
.ya{bottom:136.542667pt;}
.y11c{bottom:138.252000pt;}
.y1d{bottom:139.628000pt;}
.y28{bottom:140.632000pt;}
.y43{bottom:140.785333pt;}
.y36{bottom:142.517333pt;}
.ya6{bottom:142.844000pt;}
.y98{bottom:143.656000pt;}
.y1c{bottom:147.597333pt;}
.y114{bottom:148.538667pt;}
.y5f{bottom:148.814667pt;}
.yb1{bottom:151.236000pt;}
.y9{bottom:153.970667pt;}
.y4b{bottom:154.660000pt;}
.y11b{bottom:155.853333pt;}
.y27{bottom:156.573333pt;}
.y42{bottom:157.389333pt;}
.y35{bottom:157.793333pt;}
.ya5{bottom:158.784000pt;}
.y97{bottom:159.596000pt;}
.yc3{bottom:160.318667pt;}
.y1b{bottom:161.801333pt;}
.yd9{bottom:162.686667pt;}
.yfc{bottom:162.741333pt;}
.y5e{bottom:163.426667pt;}
.yb0{bottom:167.176000pt;}
.y8{bottom:168.606667pt;}
.y127{bottom:169.642667pt;}
.y41{bottom:170.008000pt;}
.y4a{bottom:172.260000pt;}
.y26{bottom:172.513333pt;}
.y34{bottom:174.065333pt;}
.y11a{bottom:174.117333pt;}
.y1a{bottom:175.718667pt;}
.yb7{bottom:176.048000pt;}
.y8e{bottom:176.102667pt;}
.ya4{bottom:176.384000pt;}
.y96{bottom:177.196000pt;}
.yc2{bottom:177.918667pt;}
.y5d{bottom:178.038667pt;}
.y55{bottom:178.044000pt;}
.yaf{bottom:184.776000pt;}
.y19{bottom:184.833333pt;}
.y56{bottom:185.218667pt;}
.y68{bottom:185.254667pt;}
.y40{bottom:186.613333pt;}
.y25{bottom:188.453333pt;}
.y49{bottom:190.525333pt;}
.y33{bottom:191.002667pt;}
.y7{bottom:191.164000pt;}
.y119{bottom:191.718667pt;}
.y5c{bottom:192.650667pt;}
.y18{bottom:193.949333pt;}
.y54{bottom:193.985333pt;}
.y4e{bottom:194.424000pt;}
.ya3{bottom:194.649333pt;}
.y95{bottom:195.461333pt;}
.yc1{bottom:196.184000pt;}
.y126{bottom:198.866667pt;}
.y17{bottom:203.064000pt;}
.y45{bottom:203.394667pt;}
.ybb{bottom:203.976000pt;}
.y24{bottom:204.393333pt;}
.yae{bottom:204.701333pt;}
.y32{bottom:206.942667pt;}
.y6{bottom:207.105333pt;}
.y5b{bottom:207.261333pt;}
.y48{bottom:208.126667pt;}
.y118{bottom:211.644000pt;}
.ya2{bottom:212.249333pt;}
.y16{bottom:212.465333pt;}
.y94{bottom:213.061333pt;}
.yc0{bottom:213.784000pt;}
.y125{bottom:214.806667pt;}
.y53{bottom:215.238667pt;}
.yba{bottom:221.577333pt;}
.y5a{bottom:221.873333pt;}
.y3f{bottom:222.446667pt;}
.y31{bottom:222.882667pt;}
.yad{bottom:222.966667pt;}
.y15{bottom:226.669333pt;}
.y2b{bottom:227.554667pt;}
.y3e{bottom:227.609333pt;}
.y117{bottom:229.908000pt;}
.ya1{bottom:230.514667pt;}
.y124{bottom:230.746667pt;}
.y93{bottom:231.326667pt;}
.yfd{bottom:231.970667pt;}
.ybf{bottom:232.049333pt;}
.y59{bottom:236.485333pt;}
.y52{bottom:236.492000pt;}
.yd8{bottom:237.002667pt;}
.y30{bottom:238.822667pt;}
.y5{bottom:238.985333pt;}
.yb9{bottom:239.841333pt;}
.yac{bottom:240.566667pt;}
.y23{bottom:243.260000pt;}
.y14{bottom:244.890667pt;}
.y123{bottom:246.688000pt;}
.y92{bottom:247.266667pt;}
.y116{bottom:247.509333pt;}
.ya0{bottom:248.114667pt;}
.ydd{bottom:248.160000pt;}
.ybe{bottom:249.649333pt;}
.y51{bottom:252.432000pt;}
.y58{bottom:253.754667pt;}
.y2f{bottom:254.762667pt;}
.yb8{bottom:257.442667pt;}
.y13{bottom:257.894667pt;}
.y91{bottom:264.868000pt;}
.ydc{bottom:265.761333pt;}
.y115{bottom:265.773333pt;}
.y12{bottom:265.865333pt;}
.y57{bottom:270.026667pt;}
.y2e{bottom:272.364000pt;}
.y11{bottom:273.834667pt;}
.y10{bottom:281.805333pt;}
.ydb{bottom:281.902667pt;}
.y4{bottom:284.454667pt;}
.yf{bottom:289.776000pt;}
.y3{bottom:300.394667pt;}
.y2{bottom:316.334667pt;}
.y2d{bottom:318.494667pt;}
.y50{bottom:318.556000pt;}
.ybd{bottom:318.604000pt;}
.y90{bottom:319.613333pt;}
.y47{bottom:319.677333pt;}
.y22{bottom:324.780000pt;}
.y2c{bottom:331.113333pt;}
.y4f{bottom:331.174667pt;}
.ybc{bottom:331.222667pt;}
.y8f{bottom:332.232000pt;}
.y46{bottom:332.296000pt;}
.y1{bottom:335.988000pt;}
.h17{height:2.125355pt;}
.h1e{height:8.116222pt;}
.h21{height:8.577026pt;}
.h14{height:9.378841pt;}
.h1d{height:11.362711pt;}
.h22{height:12.007836pt;}
.h25{height:12.252781pt;}
.h15{height:13.130377pt;}
.h8{height:15.749115pt;}
.h26{height:15.920764pt;}
.h11{height:15.926098pt;}
.h9{height:16.144764pt;}
.h24{height:17.153893pt;}
.h6{height:19.686098pt;}
.h10{height:27.461879pt;}
.hd{height:27.467213pt;}
.h7{height:27.560458pt;}
.h1f{height:27.655625pt;}
.h18{height:27.895200pt;}
.ha{height:31.497835pt;}
.hf{height:32.726862pt;}
.hb{height:32.732195pt;}
.h1b{height:33.205067pt;}
.h16{height:33.210400pt;}
.h12{height:35.435213pt;}
.he{height:35.970142pt;}
.h3{height:39.372195pt;}
.hc{height:39.850400pt;}
.h19{height:41.912021pt;}
.h4{height:46.840458pt;}
.h5{height:46.845791pt;}
.h1a{height:47.020533pt;}
.h2{height:56.696182pt;}
.h1c{height:82.613505pt;}
.h20{height:97.277707pt;}
.h13{height:111.172601pt;}
.h23{height:138.966872pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w4{width:129.639253pt;}
.w2{width:148.156587pt;}
.w5{width:185.197227pt;}
.w3{width:351.867267pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x45{left:3.834197pt;}
.x43{left:6.052764pt;}
.x42{left:7.668393pt;}
.x4c{left:8.646726pt;}
.x2e{left:10.610128pt;}
.x41{left:11.719620pt;}
.x2a{left:13.035399pt;}
.x2b{left:14.991991pt;}
.x4b{left:16.294380pt;}
.x4d{left:17.293287pt;}
.x15{left:18.897333pt;}
.x21{left:24.114072pt;}
.x1{left:25.064000pt;}
.x1f{left:26.649401pt;}
.x3{left:27.602667pt;}
.x1e{left:28.523450pt;}
.x18{left:30.521333pt;}
.x38{left:35.437826pt;}
.x37{left:37.536981pt;}
.x16{left:38.822667pt;}
.x29{left:39.794925pt;}
.x2d{left:41.035075pt;}
.x36{left:42.853873pt;}
.x19{left:45.465333pt;}
.x1d{left:48.424000pt;}
.x28{left:52.251653pt;}
.x1c{left:55.420000pt;}
.x44{left:56.379475pt;}
.x1a{left:58.194667pt;}
.x7{left:64.400000pt;}
.x30{left:67.300000pt;}
.x1b{left:72.032000pt;}
.x20{left:75.483797pt;}
.x6{left:79.749333pt;}
.x24{left:87.802620pt;}
.x2c{left:98.578035pt;}
.x47{left:102.968581pt;}
.x25{left:104.034695pt;}
.x22{left:115.197333pt;}
.x26{left:120.267101pt;}
.x35{left:121.486667pt;}
.x9{left:122.705333pt;}
.x4a{left:124.780000pt;}
.x46{left:127.613698pt;}
.x4f{left:133.351511pt;}
.x27{left:136.499177pt;}
.x2{left:139.928000pt;}
.x8{left:148.034667pt;}
.x50{left:150.101333pt;}
.x49{left:152.558667pt;}
.x3a{left:155.761644pt;}
.x39{left:163.223421pt;}
.xb{left:165.361333pt;}
.x31{left:166.560000pt;}
.xa{left:177.192000pt;}
.x4{left:178.880000pt;}
.x4e{left:182.992718pt;}
.x54{left:188.377333pt;}
.x3e{left:192.591331pt;}
.x3c{left:194.690760pt;}
.x3b{left:197.885496pt;}
.x5{left:199.928000pt;}
.x52{left:206.090667pt;}
.x53{left:206.981333pt;}
.x51{left:208.296000pt;}
.x33{left:209.984000pt;}
.x23{left:211.610667pt;}
.x32{left:216.916000pt;}
.x48{left:224.893333pt;}
.x34{left:231.385333pt;}
.x3d{left:250.209117pt;}
.x2f{left:278.384000pt;}
.x40{left:310.815173pt;}
.x3f{left:318.255043pt;}
.xc{left:402.246667pt;}
.x17{left:403.722667pt;}
.x13{left:413.502667pt;}
.xf{left:416.652000pt;}
.xe{left:418.301333pt;}
.x10{left:424.790667pt;}
.x12{left:426.657333pt;}
.xd{left:429.560000pt;}
.x14{left:431.768000pt;}
.x11{left:432.697333pt;}
}




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