
    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_102bccb41ca25585519cc853.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a0ed5ce985587a7323e39ad6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d3d6f2c1fac25f4be5bcedf7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e39ae45f40c79e8be2cd66a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a7652e11c7b0c6d777e63987.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_1365cecbc3b0e8c46821929b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.825684;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_fb8063add173a4d7af256a76.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:26.974560px;}
.v1{vertical-align:29.899080px;}
.ls4d{letter-spacing:-0.306612px;}
.ls48{letter-spacing:-0.276552px;}
.ls3d{letter-spacing:-0.252504px;}
.ls45{letter-spacing:-0.240480px;}
.ls14{letter-spacing:-0.222444px;}
.ls44{letter-spacing:-0.216432px;}
.ls15{letter-spacing:-0.186372px;}
.ls53{letter-spacing:-0.180360px;}
.ls32{letter-spacing:-0.174348px;}
.ls38{letter-spacing:-0.168336px;}
.ls37{letter-spacing:-0.162324px;}
.ls2c{letter-spacing:-0.156312px;}
.ls22{letter-spacing:-0.150300px;}
.ls24{letter-spacing:-0.144288px;}
.lse{letter-spacing:-0.138276px;}
.ls26{letter-spacing:-0.132264px;}
.ls2a{letter-spacing:-0.126252px;}
.ls20{letter-spacing:-0.120240px;}
.ls21{letter-spacing:-0.114228px;}
.ls17{letter-spacing:-0.108216px;}
.ls2e{letter-spacing:-0.102204px;}
.ls27{letter-spacing:-0.096192px;}
.ls7{letter-spacing:-0.090180px;}
.ls16{letter-spacing:-0.084168px;}
.ls2f{letter-spacing:-0.078156px;}
.lsf{letter-spacing:-0.072144px;}
.lsc{letter-spacing:-0.066132px;}
.ls39{letter-spacing:-0.060120px;}
.lsd{letter-spacing:-0.054108px;}
.ls13{letter-spacing:-0.048096px;}
.ls8{letter-spacing:-0.042084px;}
.ls10{letter-spacing:-0.036072px;}
.ls25{letter-spacing:-0.030060px;}
.ls2b{letter-spacing:-0.024048px;}
.ls12{letter-spacing:-0.018036px;}
.ls31{letter-spacing:-0.014400px;}
.lsb{letter-spacing:-0.012024px;}
.ls4b{letter-spacing:-0.007200px;}
.lsa{letter-spacing:-0.006012px;}
.ls54{letter-spacing:-0.003888px;}
.ls6{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.006012px;}
.ls3b{letter-spacing:0.007200px;}
.ls1a{letter-spacing:0.012024px;}
.ls42{letter-spacing:0.014400px;}
.ls1c{letter-spacing:0.018036px;}
.ls33{letter-spacing:0.021600px;}
.ls28{letter-spacing:0.024048px;}
.ls29{letter-spacing:0.030060px;}
.ls9{letter-spacing:0.036000px;}
.ls46{letter-spacing:0.036072px;}
.ls49{letter-spacing:0.042084px;}
.ls4{letter-spacing:0.043200px;}
.ls1f{letter-spacing:0.048096px;}
.ls50{letter-spacing:0.050400px;}
.ls5{letter-spacing:0.058716px;}
.ls34{letter-spacing:0.060120px;}
.ls4e{letter-spacing:0.064800px;}
.ls1d{letter-spacing:0.066132px;}
.ls3a{letter-spacing:0.068724px;}
.ls2{letter-spacing:0.072144px;}
.ls11{letter-spacing:0.078156px;}
.ls4f{letter-spacing:0.079200px;}
.ls0{letter-spacing:0.084168px;}
.ls23{letter-spacing:0.090180px;}
.ls2d{letter-spacing:0.096192px;}
.ls3{letter-spacing:0.102204px;}
.ls1e{letter-spacing:0.108216px;}
.ls36{letter-spacing:0.114228px;}
.ls1{letter-spacing:0.120240px;}
.ls4a{letter-spacing:0.126252px;}
.ls3c{letter-spacing:0.132264px;}
.ls40{letter-spacing:0.138276px;}
.ls3f{letter-spacing:0.144288px;}
.ls41{letter-spacing:0.150300px;}
.ls51{letter-spacing:0.156312px;}
.ls4c{letter-spacing:0.162324px;}
.ls19{letter-spacing:0.162600px;}
.ls43{letter-spacing:0.168336px;}
.ls18{letter-spacing:0.180360px;}
.ls52{letter-spacing:0.187200px;}
.ls3e{letter-spacing:0.324648px;}
.ls30{letter-spacing:46.292400px;}
.ls35{letter-spacing:63.546840px;}
.ls47{letter-spacing:154.267920px;}
.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;}
}
.ws52{word-spacing:-60.120000px;}
.ws1{word-spacing:-33.005880px;}
.ws0{word-spacing:-18.043200px;}
.ws48{word-spacing:-17.996724px;}
.ws38{word-spacing:-15.210360px;}
.ws49{word-spacing:-15.120180px;}
.ws63{word-spacing:-15.108156px;}
.ws40{word-spacing:-15.102144px;}
.ws6d{word-spacing:-15.096132px;}
.ws6a{word-spacing:-15.078096px;}
.ws73{word-spacing:-14.909760px;}
.ws39{word-spacing:-14.885712px;}
.ws4a{word-spacing:-14.879700px;}
.ws71{word-spacing:-14.849640px;}
.ws4b{word-spacing:-14.777496px;}
.ws6e{word-spacing:-9.720000px;}
.ws72{word-spacing:-9.716112px;}
.ws74{word-spacing:-0.438876px;}
.ws58{word-spacing:-0.414828px;}
.ws59{word-spacing:-0.408816px;}
.ws4d{word-spacing:-0.402804px;}
.ws3c{word-spacing:-0.378756px;}
.ws4{word-spacing:-0.372744px;}
.ws36{word-spacing:-0.366732px;}
.ws4e{word-spacing:-0.360720px;}
.ws5{word-spacing:-0.354708px;}
.ws35{word-spacing:-0.348696px;}
.ws3a{word-spacing:-0.345600px;}
.ws41{word-spacing:-0.342684px;}
.ws22{word-spacing:-0.336672px;}
.ws68{word-spacing:-0.330660px;}
.ws29{word-spacing:-0.318636px;}
.ws69{word-spacing:-0.306612px;}
.ws2c{word-spacing:-0.294588px;}
.ws4f{word-spacing:-0.288576px;}
.ws3e{word-spacing:-0.282564px;}
.ws47{word-spacing:-0.276552px;}
.ws67{word-spacing:-0.270540px;}
.ws5f{word-spacing:-0.258516px;}
.ws54{word-spacing:-0.252504px;}
.ws57{word-spacing:-0.246492px;}
.ws23{word-spacing:-0.240480px;}
.ws55{word-spacing:-0.234468px;}
.ws50{word-spacing:-0.228456px;}
.ws14{word-spacing:-0.222444px;}
.ws5c{word-spacing:-0.216432px;}
.ws10{word-spacing:-0.198396px;}
.ws2d{word-spacing:-0.186372px;}
.ws8{word-spacing:-0.180360px;}
.ws28{word-spacing:-0.174348px;}
.ws3b{word-spacing:-0.168336px;}
.ws2{word-spacing:-0.150984px;}
.ws65{word-spacing:-0.108216px;}
.ws6f{word-spacing:-0.066132px;}
.ws6c{word-spacing:-0.064800px;}
.ws70{word-spacing:-0.042084px;}
.ws64{word-spacing:-0.036072px;}
.wsf{word-spacing:-0.030060px;}
.ws43{word-spacing:-0.024048px;}
.ws3f{word-spacing:-0.021600px;}
.ws26{word-spacing:-0.018036px;}
.ws53{word-spacing:-0.014400px;}
.ws27{word-spacing:-0.012024px;}
.ws4c{word-spacing:-0.007200px;}
.ws30{word-spacing:-0.006012px;}
.ws3{word-spacing:0.000000px;}
.ws1b{word-spacing:0.006012px;}
.ws66{word-spacing:0.007200px;}
.ws12{word-spacing:0.012024px;}
.wsa{word-spacing:0.018036px;}
.ws51{word-spacing:0.024048px;}
.ws62{word-spacing:0.030060px;}
.ws42{word-spacing:0.042084px;}
.ws60{word-spacing:0.048096px;}
.ws5e{word-spacing:0.054108px;}
.ws33{word-spacing:0.060120px;}
.ws61{word-spacing:0.066132px;}
.ws20{word-spacing:0.072144px;}
.ws1a{word-spacing:0.078156px;}
.ws1f{word-spacing:0.084168px;}
.ws19{word-spacing:0.090180px;}
.ws9{word-spacing:0.096192px;}
.wsb{word-spacing:0.102204px;}
.ws13{word-spacing:0.108216px;}
.ws2e{word-spacing:0.114228px;}
.ws2a{word-spacing:0.120240px;}
.ws11{word-spacing:0.126252px;}
.ws7{word-spacing:0.132264px;}
.ws31{word-spacing:0.138276px;}
.wsd{word-spacing:0.144288px;}
.ws46{word-spacing:0.150300px;}
.wsc{word-spacing:0.156312px;}
.ws24{word-spacing:0.162324px;}
.ws37{word-spacing:0.168336px;}
.ws17{word-spacing:0.174348px;}
.ws6{word-spacing:0.180360px;}
.ws32{word-spacing:0.186372px;}
.ws34{word-spacing:0.192384px;}
.ws18{word-spacing:0.198396px;}
.ws1d{word-spacing:0.204408px;}
.ws1c{word-spacing:0.210420px;}
.ws2b{word-spacing:0.216432px;}
.ws25{word-spacing:0.222444px;}
.wse{word-spacing:0.228456px;}
.ws21{word-spacing:0.234468px;}
.ws1e{word-spacing:0.240480px;}
.ws2f{word-spacing:0.246492px;}
.ws44{word-spacing:0.252504px;}
.ws45{word-spacing:0.258516px;}
.ws3d{word-spacing:0.264528px;}
.ws16{word-spacing:0.276552px;}
.ws56{word-spacing:0.306612px;}
.ws15{word-spacing:0.312624px;}
.ws5b{word-spacing:0.330660px;}
.ws5a{word-spacing:0.342684px;}
.ws5d{word-spacing:0.366732px;}
.ws6b{word-spacing:0.396792px;}
._11{margin-left:-280.459608px;}
._4{margin-left:-244.810896px;}
._5{margin-left:-242.618904px;}
._6{margin-left:-232.581888px;}
._7{margin-left:-229.524636px;}
._a{margin-left:-169.475592px;}
._b{margin-left:-127.250904px;}
._9{margin-left:-68.355540px;}
._c{margin-left:-67.317228px;}
._d{margin-left:-59.933676px;}
._3{margin-left:-51.454128px;}
._e{margin-left:-50.127396px;}
._f{margin-left:-48.627612px;}
._10{margin-left:-43.493736px;}
._8{margin-left:-41.417112px;}
._0{margin-left:-1.082160px;}
._1{width:1.082160px;}
._2{width:200.860920px;}
._12{width:386.828904px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:29.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:57.684000px;}
.fs1{font-size:60.120000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:57.630450px;}
.y105{bottom:175.399920px;}
.ydd{bottom:175.442880px;}
.y63{bottom:178.020750px;}
.ycc{bottom:180.014250px;}
.y35{bottom:182.349390px;}
.y11d{bottom:196.081320px;}
.yf9{bottom:200.640450px;}
.yb3{bottom:206.490450px;}
.y84{bottom:206.840460px;}
.y4e{bottom:206.850450px;}
.y19{bottom:207.582840px;}
.y104{bottom:209.863710px;}
.ydc{bottom:209.906670px;}
.y62{bottom:212.574720px;}
.ycb{bottom:214.478040px;}
.y34{bottom:216.813180px;}
.y11c{bottom:230.545110px;}
.yfa{bottom:237.903000px;}
.yf7{bottom:237.909000px;}
.y99{bottom:240.078720px;}
.yb2{bottom:240.960600px;}
.y83{bottom:241.394430px;}
.y18{bottom:243.128790px;}
.y103{bottom:244.327500px;}
.ydb{bottom:244.370460px;}
.y4d{bottom:244.424100px;}
.y61{bottom:247.038510px;}
.yca{bottom:249.032010px;}
.y33{bottom:251.367150px;}
.y11b{bottom:265.008900px;}
.yf8{bottom:272.462970px;}
.yf6{bottom:272.468910px;}
.y98{bottom:274.632690px;}
.yb1{bottom:275.430450px;}
.y82{bottom:275.858220px;}
.y17{bottom:278.764920px;}
.y102{bottom:278.791290px;}
.yda{bottom:278.834250px;}
.y4c{bottom:278.887890px;}
.y60{bottom:281.502300px;}
.yc9{bottom:283.495800px;}
.y32{bottom:285.830940px;}
.y11a{bottom:299.472690px;}
.yf5{bottom:306.932700px;}
.yb0{bottom:309.990450px;}
.y97{bottom:310.178640px;}
.y81{bottom:310.322010px;}
.y16{bottom:313.318890px;}
.y101{bottom:313.345260px;}
.yd9{bottom:313.388220px;}
.y4b{bottom:313.441860px;}
.y5f{bottom:316.056270px;}
.yc8{bottom:317.959590px;}
.y31{bottom:320.294730px;}
.yf2{bottom:327.450450px;}
.y119{bottom:334.026660px;}
.yf4{bottom:338.698830px;}
.yaf{bottom:344.460600px;}
.y96{bottom:344.642430px;}
.y80{bottom:344.785800px;}
.y100{bottom:347.809050px;}
.yd8{bottom:347.852010px;}
.yf3{bottom:347.885007px;}
.y4a{bottom:347.905650px;}
.y5e{bottom:350.520060px;}
.y15{bottom:351.750600px;}
.yc7{bottom:352.513560px;}
.y30{bottom:354.848700px;}
.y118{bottom:368.496810px;}
.yae{bottom:378.930450px;}
.y95{bottom:379.106220px;}
.y7f{bottom:379.339770px;}
.yff{bottom:382.272840px;}
.yd7{bottom:382.315800px;}
.y49{bottom:382.369440px;}
.y5d{bottom:384.983850px;}
.yc6{bottom:386.977350px;}
.y14{bottom:389.252010px;}
.y2f{bottom:389.312490px;}
.y117{bottom:402.960600px;}
.yad{bottom:413.490450px;}
.y94{bottom:413.660190px;}
.y7e{bottom:413.803560px;}
.yfe{bottom:416.826810px;}
.yd6{bottom:416.869770px;}
.y48{bottom:416.923410px;}
.yf1{bottom:416.931330px;}
.y5c{bottom:419.447640px;}
.yc5{bottom:421.441140px;}
.y13{bottom:423.715800px;}
.y2e{bottom:423.776280px;}
.y116{bottom:441.390450px;}
.yac{bottom:447.960600px;}
.y7d{bottom:448.267350px;}
.y93{bottom:449.206140px;}
.yfd{bottom:451.290600px;}
.yd5{bottom:451.333560px;}
.y47{bottom:451.387200px;}
.yf0{bottom:451.395120px;}
.y5b{bottom:454.001610px;}
.yc4{bottom:455.995110px;}
.y12{bottom:458.269770px;}
.y2d{bottom:458.330250px;}
.y115{bottom:478.926660px;}
.yab{bottom:482.430600px;}
.y7c{bottom:482.821320px;}
.y92{bottom:483.669930px;}
.yd4{bottom:485.797350px;}
.y46{bottom:485.850990px;}
.yef{bottom:485.858910px;}
.y5a{bottom:488.465400px;}
.yfc{bottom:489.720450px;}
.yc3{bottom:490.458900px;}
.y11{bottom:492.733560px;}
.y2c{bottom:492.794040px;}
.y114{bottom:513.390450px;}
.yaa{bottom:517.041480px;}
.y7b{bottom:517.285110px;}
.y91{bottom:518.223900px;}
.yd3{bottom:520.351320px;}
.y45{bottom:520.404960px;}
.yee{bottom:520.412880px;}
.y59{bottom:522.929190px;}
.yc2{bottom:524.922690px;}
.yfb{bottom:527.077470px;}
.y10{bottom:527.197350px;}
.y2b{bottom:527.257830px;}
.y7a{bottom:551.748900px;}
.y113{bottom:551.820450px;}
.ya9{bottom:553.759770px;}
.y90{bottom:553.769850px;}
.yd2{bottom:554.815110px;}
.y44{bottom:554.868750px;}
.yed{bottom:554.876670px;}
.y58{bottom:557.483160px;}
.yc1{bottom:559.386480px;}
.yf{bottom:561.661140px;}
.y2a{bottom:561.721620px;}
.y79{bottom:586.302870px;}
.ya8{bottom:588.043200px;}
.y8f{bottom:588.233640px;}
.yd1{bottom:589.278900px;}
.y112{bottom:589.322010px;}
.y43{bottom:589.332540px;}
.yec{bottom:589.340460px;}
.y57{bottom:591.946950px;}
.yc0{bottom:593.940450px;}
.ye{bottom:596.215110px;}
.y29{bottom:596.275590px;}
.y78{bottom:620.766660px;}
.ya7{bottom:622.687350px;}
.y8e{bottom:622.697430px;}
.yd0{bottom:623.742690px;}
.y111{bottom:623.785800px;}
.y42{bottom:623.796330px;}
.yeb{bottom:623.804250px;}
.y56{bottom:626.410740px;}
.ybf{bottom:630.570450px;}
.yd{bottom:630.678900px;}
.y28{bottom:630.739380px;}
.y77{bottom:655.230450px;}
.ya6{bottom:657.241320px;}
.ycf{bottom:658.296660px;}
.y8d{bottom:658.333560px;}
.y110{bottom:658.339770px;}
.y41{bottom:658.350300px;}
.yea{bottom:658.358220px;}
.y55{bottom:660.964710px;}
.ybe{bottom:665.130450px;}
.yc{bottom:665.142690px;}
.y27{bottom:665.203170px;}
.ya5{bottom:691.705110px;}
.yce{bottom:692.760450px;}
.y8c{bottom:692.797350px;}
.y10f{bottom:692.803560px;}
.y40{bottom:692.814090px;}
.ye9{bottom:692.822010px;}
.y76{bottom:693.660450px;}
.y54{bottom:695.428500px;}
.ybd{bottom:699.690450px;}
.yb{bottom:699.696660px;}
.y120{bottom:699.702870px;}
.y26{bottom:699.757140px;}
.ya4{bottom:726.168900px;}
.y8b{bottom:727.261140px;}
.y10e{bottom:727.267350px;}
.y3f{bottom:727.277880px;}
.ye8{bottom:727.285800px;}
.y53{bottom:730.974450px;}
.y75{bottom:731.115840px;}
.ycd{bottom:731.190450px;}
.ya{bottom:734.160450px;}
.y11f{bottom:734.166660px;}
.y25{bottom:734.220930px;}
.ya3{bottom:760.722870px;}
.y8a{bottom:761.815110px;}
.y10d{bottom:761.821320px;}
.y3e{bottom:761.831850px;}
.ye7{bottom:761.839770px;}
.y52{bottom:765.438240px;}
.y74{bottom:765.669810px;}
.ybc{bottom:768.630450px;}
.y24{bottom:768.684720px;}
.y9{bottom:772.590450px;}
.ya2{bottom:795.186660px;}
.y89{bottom:796.278900px;}
.y10c{bottom:796.285110px;}
.y3d{bottom:796.295640px;}
.ye6{bottom:796.303560px;}
.y73{bottom:800.133600px;}
.y51{bottom:801.074370px;}
.ybb{bottom:803.190450px;}
.y23{bottom:803.238690px;}
.y8{bottom:810.061140px;}
.ya1{bottom:829.650450px;}
.y88{bottom:830.742690px;}
.y10b{bottom:830.748900px;}
.y3c{bottom:830.759430px;}
.ye5{bottom:830.767350px;}
.y72{bottom:834.597390px;}
.y50{bottom:835.538160px;}
.yba{bottom:837.660450px;}
.y22{bottom:837.702480px;}
.y7{bottom:844.615110px;}
.y71{bottom:851.430990px;}
.y3b{bottom:865.133040px;}
.y87{bottom:865.296660px;}
.y10a{bottom:865.302870px;}
.ye4{bottom:865.321320px;}
.y70{bottom:866.460990px;}
.ya0{bottom:868.080450px;}
.y4f{bottom:871.084110px;}
.yb9{bottom:872.130450px;}
.y21{bottom:872.166270px;}
.y6{bottom:879.078900px;}
.y6f{bottom:881.400810px;}
.y6e{bottom:896.430810px;}
.y86{bottom:899.760450px;}
.y109{bottom:899.766660px;}
.y3a{bottom:899.777190px;}
.ye3{bottom:899.785110px;}
.y9f{bottom:905.638080px;}
.yb8{bottom:906.600450px;}
.y20{bottom:906.630060px;}
.y6d{bottom:911.460810px;}
.y5{bottom:913.542690px;}
.y6c{bottom:926.400630px;}
.y39{bottom:934.060620px;}
.y108{bottom:934.230450px;}
.ye2{bottom:934.248900px;}
.y85{bottom:938.190450px;}
.y9e{bottom:940.101870px;}
.yb7{bottom:941.160450px;}
.y1f{bottom:941.184030px;}
.y6b{bottom:941.430630px;}
.y4{bottom:948.006480px;}
.y6a{bottom:956.460630px;}
.y38{bottom:968.704770px;}
.ye1{bottom:968.712690px;}
.y69{bottom:971.400450px;}
.y107{bottom:972.660450px;}
.y9d{bottom:974.565660px;}
.yb6{bottom:975.630450px;}
.y1e{bottom:975.647820px;}
.y3{bottom:982.560450px;}
.y68{bottom:986.430450px;}
.y67{bottom:1001.460630px;}
.y37{bottom:1003.258740px;}
.ye0{bottom:1003.266660px;}
.y9c{bottom:1009.029450px;}
.y106{bottom:1009.931250px;}
.yb5{bottom:1010.100450px;}
.y1d{bottom:1010.111610px;}
.y66{bottom:1016.395680px;}
.y2{bottom:1024.944600px;}
.y65{bottom:1031.425680px;}
.ydf{bottom:1037.730450px;}
.y36{bottom:1041.690450px;}
.y9b{bottom:1043.583420px;}
.yb4{bottom:1044.660450px;}
.y1c{bottom:1044.665580px;}
.y64{bottom:1046.455680px;}
.y1{bottom:1073.280450px;}
.yde{bottom:1076.160450px;}
.y9a{bottom:1078.050150px;}
.y11e{bottom:1079.129370px;}
.y1b{bottom:1079.130900px;}
.h7{height:40.070215px;}
.h9{height:49.794417px;}
.ha{height:49.795137px;}
.h8{height:49.814217px;}
.hb{height:58.134656px;}
.h2{height:58.975137px;}
.h4{height:59.004492px;}
.h5{height:60.589687px;}
.h6{height:62.703281px;}
.he{height:64.922529px;}
.hd{height:65.114169px;}
.hc{height:70.664062px;}
.h3{height:72.562500px;}
.h1{height:84.535312px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:170.100000px;}
.x9{left:184.288320px;}
.x4{left:197.111520px;}
.x3{left:224.100150px;}
.x8{left:314.283423px;}
.x5{left:438.930000px;}
.x2{left:442.710000px;}
.x6{left:502.290000px;}
.x7{left:532.804836px;}
.xa{left:553.440150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.977387pt;}
.v1{vertical-align:26.576960pt;}
.ls4d{letter-spacing:-0.272544pt;}
.ls48{letter-spacing:-0.245824pt;}
.ls3d{letter-spacing:-0.224448pt;}
.ls45{letter-spacing:-0.213760pt;}
.ls14{letter-spacing:-0.197728pt;}
.ls44{letter-spacing:-0.192384pt;}
.ls15{letter-spacing:-0.165664pt;}
.ls53{letter-spacing:-0.160320pt;}
.ls32{letter-spacing:-0.154976pt;}
.ls38{letter-spacing:-0.149632pt;}
.ls37{letter-spacing:-0.144288pt;}
.ls2c{letter-spacing:-0.138944pt;}
.ls22{letter-spacing:-0.133600pt;}
.ls24{letter-spacing:-0.128256pt;}
.lse{letter-spacing:-0.122912pt;}
.ls26{letter-spacing:-0.117568pt;}
.ls2a{letter-spacing:-0.112224pt;}
.ls20{letter-spacing:-0.106880pt;}
.ls21{letter-spacing:-0.101536pt;}
.ls17{letter-spacing:-0.096192pt;}
.ls2e{letter-spacing:-0.090848pt;}
.ls27{letter-spacing:-0.085504pt;}
.ls7{letter-spacing:-0.080160pt;}
.ls16{letter-spacing:-0.074816pt;}
.ls2f{letter-spacing:-0.069472pt;}
.lsf{letter-spacing:-0.064128pt;}
.lsc{letter-spacing:-0.058784pt;}
.ls39{letter-spacing:-0.053440pt;}
.lsd{letter-spacing:-0.048096pt;}
.ls13{letter-spacing:-0.042752pt;}
.ls8{letter-spacing:-0.037408pt;}
.ls10{letter-spacing:-0.032064pt;}
.ls25{letter-spacing:-0.026720pt;}
.ls2b{letter-spacing:-0.021376pt;}
.ls12{letter-spacing:-0.016032pt;}
.ls31{letter-spacing:-0.012800pt;}
.lsb{letter-spacing:-0.010688pt;}
.ls4b{letter-spacing:-0.006400pt;}
.lsa{letter-spacing:-0.005344pt;}
.ls54{letter-spacing:-0.003456pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.005344pt;}
.ls3b{letter-spacing:0.006400pt;}
.ls1a{letter-spacing:0.010688pt;}
.ls42{letter-spacing:0.012800pt;}
.ls1c{letter-spacing:0.016032pt;}
.ls33{letter-spacing:0.019200pt;}
.ls28{letter-spacing:0.021376pt;}
.ls29{letter-spacing:0.026720pt;}
.ls9{letter-spacing:0.032000pt;}
.ls46{letter-spacing:0.032064pt;}
.ls49{letter-spacing:0.037408pt;}
.ls4{letter-spacing:0.038400pt;}
.ls1f{letter-spacing:0.042752pt;}
.ls50{letter-spacing:0.044800pt;}
.ls5{letter-spacing:0.052192pt;}
.ls34{letter-spacing:0.053440pt;}
.ls4e{letter-spacing:0.057600pt;}
.ls1d{letter-spacing:0.058784pt;}
.ls3a{letter-spacing:0.061088pt;}
.ls2{letter-spacing:0.064128pt;}
.ls11{letter-spacing:0.069472pt;}
.ls4f{letter-spacing:0.070400pt;}
.ls0{letter-spacing:0.074816pt;}
.ls23{letter-spacing:0.080160pt;}
.ls2d{letter-spacing:0.085504pt;}
.ls3{letter-spacing:0.090848pt;}
.ls1e{letter-spacing:0.096192pt;}
.ls36{letter-spacing:0.101536pt;}
.ls1{letter-spacing:0.106880pt;}
.ls4a{letter-spacing:0.112224pt;}
.ls3c{letter-spacing:0.117568pt;}
.ls40{letter-spacing:0.122912pt;}
.ls3f{letter-spacing:0.128256pt;}
.ls41{letter-spacing:0.133600pt;}
.ls51{letter-spacing:0.138944pt;}
.ls4c{letter-spacing:0.144288pt;}
.ls19{letter-spacing:0.144533pt;}
.ls43{letter-spacing:0.149632pt;}
.ls18{letter-spacing:0.160320pt;}
.ls52{letter-spacing:0.166400pt;}
.ls3e{letter-spacing:0.288576pt;}
.ls30{letter-spacing:41.148800pt;}
.ls35{letter-spacing:56.486080pt;}
.ls47{letter-spacing:137.127040pt;}
.ws52{word-spacing:-53.440000pt;}
.ws1{word-spacing:-29.338560pt;}
.ws0{word-spacing:-16.038400pt;}
.ws48{word-spacing:-15.997088pt;}
.ws38{word-spacing:-13.520320pt;}
.ws49{word-spacing:-13.440160pt;}
.ws63{word-spacing:-13.429472pt;}
.ws40{word-spacing:-13.424128pt;}
.ws6d{word-spacing:-13.418784pt;}
.ws6a{word-spacing:-13.402752pt;}
.ws73{word-spacing:-13.253120pt;}
.ws39{word-spacing:-13.231744pt;}
.ws4a{word-spacing:-13.226400pt;}
.ws71{word-spacing:-13.199680pt;}
.ws4b{word-spacing:-13.135552pt;}
.ws6e{word-spacing:-8.640000pt;}
.ws72{word-spacing:-8.636544pt;}
.ws74{word-spacing:-0.390112pt;}
.ws58{word-spacing:-0.368736pt;}
.ws59{word-spacing:-0.363392pt;}
.ws4d{word-spacing:-0.358048pt;}
.ws3c{word-spacing:-0.336672pt;}
.ws4{word-spacing:-0.331328pt;}
.ws36{word-spacing:-0.325984pt;}
.ws4e{word-spacing:-0.320640pt;}
.ws5{word-spacing:-0.315296pt;}
.ws35{word-spacing:-0.309952pt;}
.ws3a{word-spacing:-0.307200pt;}
.ws41{word-spacing:-0.304608pt;}
.ws22{word-spacing:-0.299264pt;}
.ws68{word-spacing:-0.293920pt;}
.ws29{word-spacing:-0.283232pt;}
.ws69{word-spacing:-0.272544pt;}
.ws2c{word-spacing:-0.261856pt;}
.ws4f{word-spacing:-0.256512pt;}
.ws3e{word-spacing:-0.251168pt;}
.ws47{word-spacing:-0.245824pt;}
.ws67{word-spacing:-0.240480pt;}
.ws5f{word-spacing:-0.229792pt;}
.ws54{word-spacing:-0.224448pt;}
.ws57{word-spacing:-0.219104pt;}
.ws23{word-spacing:-0.213760pt;}
.ws55{word-spacing:-0.208416pt;}
.ws50{word-spacing:-0.203072pt;}
.ws14{word-spacing:-0.197728pt;}
.ws5c{word-spacing:-0.192384pt;}
.ws10{word-spacing:-0.176352pt;}
.ws2d{word-spacing:-0.165664pt;}
.ws8{word-spacing:-0.160320pt;}
.ws28{word-spacing:-0.154976pt;}
.ws3b{word-spacing:-0.149632pt;}
.ws2{word-spacing:-0.134208pt;}
.ws65{word-spacing:-0.096192pt;}
.ws6f{word-spacing:-0.058784pt;}
.ws6c{word-spacing:-0.057600pt;}
.ws70{word-spacing:-0.037408pt;}
.ws64{word-spacing:-0.032064pt;}
.wsf{word-spacing:-0.026720pt;}
.ws43{word-spacing:-0.021376pt;}
.ws3f{word-spacing:-0.019200pt;}
.ws26{word-spacing:-0.016032pt;}
.ws53{word-spacing:-0.012800pt;}
.ws27{word-spacing:-0.010688pt;}
.ws4c{word-spacing:-0.006400pt;}
.ws30{word-spacing:-0.005344pt;}
.ws3{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.005344pt;}
.ws66{word-spacing:0.006400pt;}
.ws12{word-spacing:0.010688pt;}
.wsa{word-spacing:0.016032pt;}
.ws51{word-spacing:0.021376pt;}
.ws62{word-spacing:0.026720pt;}
.ws42{word-spacing:0.037408pt;}
.ws60{word-spacing:0.042752pt;}
.ws5e{word-spacing:0.048096pt;}
.ws33{word-spacing:0.053440pt;}
.ws61{word-spacing:0.058784pt;}
.ws20{word-spacing:0.064128pt;}
.ws1a{word-spacing:0.069472pt;}
.ws1f{word-spacing:0.074816pt;}
.ws19{word-spacing:0.080160pt;}
.ws9{word-spacing:0.085504pt;}
.wsb{word-spacing:0.090848pt;}
.ws13{word-spacing:0.096192pt;}
.ws2e{word-spacing:0.101536pt;}
.ws2a{word-spacing:0.106880pt;}
.ws11{word-spacing:0.112224pt;}
.ws7{word-spacing:0.117568pt;}
.ws31{word-spacing:0.122912pt;}
.wsd{word-spacing:0.128256pt;}
.ws46{word-spacing:0.133600pt;}
.wsc{word-spacing:0.138944pt;}
.ws24{word-spacing:0.144288pt;}
.ws37{word-spacing:0.149632pt;}
.ws17{word-spacing:0.154976pt;}
.ws6{word-spacing:0.160320pt;}
.ws32{word-spacing:0.165664pt;}
.ws34{word-spacing:0.171008pt;}
.ws18{word-spacing:0.176352pt;}
.ws1d{word-spacing:0.181696pt;}
.ws1c{word-spacing:0.187040pt;}
.ws2b{word-spacing:0.192384pt;}
.ws25{word-spacing:0.197728pt;}
.wse{word-spacing:0.203072pt;}
.ws21{word-spacing:0.208416pt;}
.ws1e{word-spacing:0.213760pt;}
.ws2f{word-spacing:0.219104pt;}
.ws44{word-spacing:0.224448pt;}
.ws45{word-spacing:0.229792pt;}
.ws3d{word-spacing:0.235136pt;}
.ws16{word-spacing:0.245824pt;}
.ws56{word-spacing:0.272544pt;}
.ws15{word-spacing:0.277888pt;}
.ws5b{word-spacing:0.293920pt;}
.ws5a{word-spacing:0.304608pt;}
.ws5d{word-spacing:0.325984pt;}
.ws6b{word-spacing:0.352704pt;}
._11{margin-left:-249.297429pt;}
._4{margin-left:-217.609685pt;}
._5{margin-left:-215.661248pt;}
._6{margin-left:-206.739456pt;}
._7{margin-left:-204.021899pt;}
._a{margin-left:-150.644971pt;}
._b{margin-left:-113.111915pt;}
._9{margin-left:-60.760480pt;}
._c{margin-left:-59.837536pt;}
._d{margin-left:-53.274379pt;}
._3{margin-left:-45.737003pt;}
._e{margin-left:-44.557685pt;}
._f{margin-left:-43.224544pt;}
._10{margin-left:-38.661099pt;}
._8{margin-left:-36.815211pt;}
._0{margin-left:-0.961920pt;}
._1{width:0.961920pt;}
._2{width:178.543040pt;}
._12{width:343.847915pt;}
.fs3{font-size:26.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:51.274667pt;}
.fs1{font-size:53.440000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:51.227067pt;}
.y105{bottom:155.911040pt;}
.ydd{bottom:155.949227pt;}
.y63{bottom:158.240667pt;}
.ycc{bottom:160.012667pt;}
.y35{bottom:162.088347pt;}
.y11d{bottom:174.294507pt;}
.yf9{bottom:178.347067pt;}
.yb3{bottom:183.547067pt;}
.y84{bottom:183.858187pt;}
.y4e{bottom:183.867067pt;}
.y19{bottom:184.518080pt;}
.y104{bottom:186.545520pt;}
.ydc{bottom:186.583707pt;}
.y62{bottom:188.955307pt;}
.ycb{bottom:190.647147pt;}
.y34{bottom:192.722827pt;}
.y11c{bottom:204.928987pt;}
.yfa{bottom:211.469333pt;}
.yf7{bottom:211.474667pt;}
.y99{bottom:213.403307pt;}
.yb2{bottom:214.187200pt;}
.y83{bottom:214.572827pt;}
.y18{bottom:216.114480pt;}
.y103{bottom:217.180000pt;}
.ydb{bottom:217.218187pt;}
.y4d{bottom:217.265867pt;}
.y61{bottom:219.589787pt;}
.yca{bottom:221.361787pt;}
.y33{bottom:223.437467pt;}
.y11b{bottom:235.563467pt;}
.yf8{bottom:242.189307pt;}
.yf6{bottom:242.194587pt;}
.y98{bottom:244.117947pt;}
.yb1{bottom:244.827067pt;}
.y82{bottom:245.207307pt;}
.y17{bottom:247.791040pt;}
.y102{bottom:247.814480pt;}
.yda{bottom:247.852667pt;}
.y4c{bottom:247.900347pt;}
.y60{bottom:250.224267pt;}
.yc9{bottom:251.996267pt;}
.y32{bottom:254.071947pt;}
.y11a{bottom:266.197947pt;}
.yf5{bottom:272.829067pt;}
.yb0{bottom:275.547067pt;}
.y97{bottom:275.714347pt;}
.y81{bottom:275.841787pt;}
.y16{bottom:278.505680pt;}
.y101{bottom:278.529120pt;}
.yd9{bottom:278.567307pt;}
.y4b{bottom:278.614987pt;}
.y5f{bottom:280.938907pt;}
.yc8{bottom:282.630747pt;}
.y31{bottom:284.706427pt;}
.yf2{bottom:291.067067pt;}
.y119{bottom:296.912587pt;}
.yf4{bottom:301.065627pt;}
.yaf{bottom:306.187200pt;}
.y96{bottom:306.348827pt;}
.y80{bottom:306.476267pt;}
.y100{bottom:309.163600pt;}
.yd8{bottom:309.201787pt;}
.yf3{bottom:309.231117pt;}
.y4a{bottom:309.249467pt;}
.y5e{bottom:311.573387pt;}
.y15{bottom:312.667200pt;}
.yc7{bottom:313.345387pt;}
.y30{bottom:315.421067pt;}
.y118{bottom:327.552720pt;}
.yae{bottom:336.827067pt;}
.y95{bottom:336.983307pt;}
.y7f{bottom:337.190907pt;}
.yff{bottom:339.798080pt;}
.yd7{bottom:339.836267pt;}
.y49{bottom:339.883947pt;}
.y5d{bottom:342.207867pt;}
.yc6{bottom:343.979867pt;}
.y14{bottom:346.001787pt;}
.y2f{bottom:346.055547pt;}
.y117{bottom:358.187200pt;}
.yad{bottom:367.547067pt;}
.y94{bottom:367.697947pt;}
.y7e{bottom:367.825387pt;}
.yfe{bottom:370.512720pt;}
.yd6{bottom:370.550907pt;}
.y48{bottom:370.598587pt;}
.yf1{bottom:370.605627pt;}
.y5c{bottom:372.842347pt;}
.yc5{bottom:374.614347pt;}
.y13{bottom:376.636267pt;}
.y2e{bottom:376.690027pt;}
.y116{bottom:392.347067pt;}
.yac{bottom:398.187200pt;}
.y7d{bottom:398.459867pt;}
.y93{bottom:399.294347pt;}
.yfd{bottom:401.147200pt;}
.yd5{bottom:401.185387pt;}
.y47{bottom:401.233067pt;}
.yf0{bottom:401.240107pt;}
.y5b{bottom:403.556987pt;}
.yc4{bottom:405.328987pt;}
.y12{bottom:407.350907pt;}
.y2d{bottom:407.404667pt;}
.y115{bottom:425.712587pt;}
.yab{bottom:428.827200pt;}
.y7c{bottom:429.174507pt;}
.y92{bottom:429.928827pt;}
.yd4{bottom:431.819867pt;}
.y46{bottom:431.867547pt;}
.yef{bottom:431.874587pt;}
.y5a{bottom:434.191467pt;}
.yfc{bottom:435.307067pt;}
.yc3{bottom:435.963467pt;}
.y11{bottom:437.985387pt;}
.y2c{bottom:438.039147pt;}
.y114{bottom:456.347067pt;}
.yaa{bottom:459.592427pt;}
.y7b{bottom:459.808987pt;}
.y91{bottom:460.643467pt;}
.yd3{bottom:462.534507pt;}
.y45{bottom:462.582187pt;}
.yee{bottom:462.589227pt;}
.y59{bottom:464.825947pt;}
.yc2{bottom:466.597947pt;}
.yfb{bottom:468.513307pt;}
.y10{bottom:468.619867pt;}
.y2b{bottom:468.673627pt;}
.y7a{bottom:490.443467pt;}
.y113{bottom:490.507067pt;}
.ya9{bottom:492.230907pt;}
.y90{bottom:492.239867pt;}
.yd2{bottom:493.168987pt;}
.y44{bottom:493.216667pt;}
.yed{bottom:493.223707pt;}
.y58{bottom:495.540587pt;}
.yc1{bottom:497.232427pt;}
.yf{bottom:499.254347pt;}
.y2a{bottom:499.308107pt;}
.y79{bottom:521.158107pt;}
.ya8{bottom:522.705067pt;}
.y8f{bottom:522.874347pt;}
.yd1{bottom:523.803467pt;}
.y112{bottom:523.841787pt;}
.y43{bottom:523.851147pt;}
.yec{bottom:523.858187pt;}
.y57{bottom:526.175067pt;}
.yc0{bottom:527.947067pt;}
.ye{bottom:529.968987pt;}
.y29{bottom:530.022747pt;}
.y78{bottom:551.792587pt;}
.ya7{bottom:553.499867pt;}
.y8e{bottom:553.508827pt;}
.yd0{bottom:554.437947pt;}
.y111{bottom:554.476267pt;}
.y42{bottom:554.485627pt;}
.yeb{bottom:554.492667pt;}
.y56{bottom:556.809547pt;}
.ybf{bottom:560.507067pt;}
.yd{bottom:560.603467pt;}
.y28{bottom:560.657227pt;}
.y77{bottom:582.427067pt;}
.ya6{bottom:584.214507pt;}
.ycf{bottom:585.152587pt;}
.y8d{bottom:585.185387pt;}
.y110{bottom:585.190907pt;}
.y41{bottom:585.200267pt;}
.yea{bottom:585.207307pt;}
.y55{bottom:587.524187pt;}
.ybe{bottom:591.227067pt;}
.yc{bottom:591.237947pt;}
.y27{bottom:591.291707pt;}
.ya5{bottom:614.848987pt;}
.yce{bottom:615.787067pt;}
.y8c{bottom:615.819867pt;}
.y10f{bottom:615.825387pt;}
.y40{bottom:615.834747pt;}
.ye9{bottom:615.841787pt;}
.y76{bottom:616.587067pt;}
.y54{bottom:618.158667pt;}
.ybd{bottom:621.947067pt;}
.yb{bottom:621.952587pt;}
.y120{bottom:621.958107pt;}
.y26{bottom:622.006347pt;}
.ya4{bottom:645.483467pt;}
.y8b{bottom:646.454347pt;}
.y10e{bottom:646.459867pt;}
.y3f{bottom:646.469227pt;}
.ye8{bottom:646.476267pt;}
.y53{bottom:649.755067pt;}
.y75{bottom:649.880747pt;}
.ycd{bottom:649.947067pt;}
.ya{bottom:652.587067pt;}
.y11f{bottom:652.592587pt;}
.y25{bottom:652.640827pt;}
.ya3{bottom:676.198107pt;}
.y8a{bottom:677.168987pt;}
.y10d{bottom:677.174507pt;}
.y3e{bottom:677.183867pt;}
.ye7{bottom:677.190907pt;}
.y52{bottom:680.389547pt;}
.y74{bottom:680.595387pt;}
.ybc{bottom:683.227067pt;}
.y24{bottom:683.275307pt;}
.y9{bottom:686.747067pt;}
.ya2{bottom:706.832587pt;}
.y89{bottom:707.803467pt;}
.y10c{bottom:707.808987pt;}
.y3d{bottom:707.818347pt;}
.ye6{bottom:707.825387pt;}
.y73{bottom:711.229867pt;}
.y51{bottom:712.066107pt;}
.ybb{bottom:713.947067pt;}
.y23{bottom:713.989947pt;}
.y8{bottom:720.054347pt;}
.ya1{bottom:737.467067pt;}
.y88{bottom:738.437947pt;}
.y10b{bottom:738.443467pt;}
.y3c{bottom:738.452827pt;}
.ye5{bottom:738.459867pt;}
.y72{bottom:741.864347pt;}
.y50{bottom:742.700587pt;}
.yba{bottom:744.587067pt;}
.y22{bottom:744.624427pt;}
.y7{bottom:750.768987pt;}
.y71{bottom:756.827547pt;}
.y3b{bottom:769.007147pt;}
.y87{bottom:769.152587pt;}
.y10a{bottom:769.158107pt;}
.ye4{bottom:769.174507pt;}
.y70{bottom:770.187547pt;}
.ya0{bottom:771.627067pt;}
.y4f{bottom:774.296987pt;}
.yb9{bottom:775.227067pt;}
.y21{bottom:775.258907pt;}
.y6{bottom:781.403467pt;}
.y6f{bottom:783.467387pt;}
.y6e{bottom:796.827387pt;}
.y86{bottom:799.787067pt;}
.y109{bottom:799.792587pt;}
.y3a{bottom:799.801947pt;}
.ye3{bottom:799.808987pt;}
.y9f{bottom:805.011627pt;}
.yb8{bottom:805.867067pt;}
.y20{bottom:805.893387pt;}
.y6d{bottom:810.187387pt;}
.y5{bottom:812.037947pt;}
.y6c{bottom:823.467227pt;}
.y39{bottom:830.276107pt;}
.y108{bottom:830.427067pt;}
.ye2{bottom:830.443467pt;}
.y85{bottom:833.947067pt;}
.y9e{bottom:835.646107pt;}
.yb7{bottom:836.587067pt;}
.y1f{bottom:836.608027pt;}
.y6b{bottom:836.827227pt;}
.y4{bottom:842.672427pt;}
.y6a{bottom:850.187227pt;}
.y38{bottom:861.070907pt;}
.ye1{bottom:861.077947pt;}
.y69{bottom:863.467067pt;}
.y107{bottom:864.587067pt;}
.y9d{bottom:866.280587pt;}
.yb6{bottom:867.227067pt;}
.y1e{bottom:867.242507pt;}
.y3{bottom:873.387067pt;}
.y68{bottom:876.827067pt;}
.y67{bottom:890.187227pt;}
.y37{bottom:891.785547pt;}
.ye0{bottom:891.792587pt;}
.y9c{bottom:896.915067pt;}
.y106{bottom:897.716667pt;}
.yb5{bottom:897.867067pt;}
.y1d{bottom:897.876987pt;}
.y66{bottom:903.462827pt;}
.y2{bottom:911.061867pt;}
.y65{bottom:916.822827pt;}
.ydf{bottom:922.427067pt;}
.y36{bottom:925.947067pt;}
.y9b{bottom:927.629707pt;}
.yb4{bottom:928.587067pt;}
.y1c{bottom:928.591627pt;}
.y64{bottom:930.182827pt;}
.y1{bottom:954.027067pt;}
.yde{bottom:956.587067pt;}
.y9a{bottom:958.266800pt;}
.y11e{bottom:959.226107pt;}
.y1b{bottom:959.227467pt;}
.h7{height:35.617969pt;}
.h9{height:44.261704pt;}
.ha{height:44.262344pt;}
.h8{height:44.279304pt;}
.hb{height:51.675250pt;}
.h2{height:52.422344pt;}
.h4{height:52.448437pt;}
.h5{height:53.857500pt;}
.h6{height:55.736250pt;}
.he{height:57.708915pt;}
.hd{height:57.879262pt;}
.hc{height:62.812500pt;}
.h3{height:64.500000pt;}
.h1{height:75.142500pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:151.200000pt;}
.x9{left:163.811840pt;}
.x4{left:175.210240pt;}
.x3{left:199.200133pt;}
.x8{left:279.363043pt;}
.x5{left:390.160000pt;}
.x2{left:393.520000pt;}
.x6{left:446.480000pt;}
.x7{left:473.604299pt;}
.xa{left:491.946800pt;}
}




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