
    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_4a5c72159e32e7722122689f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d41b7e4fdf7c634b3b3fedf8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_05dc796964acc6ab46c70564.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_82147201c9e119126fe5ee23.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.840332;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_417e220983a078f1d40e210e.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_81bd173ee9f205b500391884.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_47b9e0b9e7f5f7371e5d70a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.710449;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;}
.m1{transform:matrix(0.220986,0.000000,-0.073655,0.238904,0,0);-ms-transform:matrix(0.220986,0.000000,-0.073655,0.238904,0,0);-webkit-transform:matrix(0.220986,0.000000,-0.073655,0.238904,0,0);}
.m9{transform:matrix(0.233891,0.000000,-0.077956,0.237535,0,0);-ms-transform:matrix(0.233891,0.000000,-0.077956,0.237535,0,0);-webkit-transform:matrix(0.233891,0.000000,-0.077956,0.237535,0,0);}
.m7{transform:matrix(0.242798,0.000000,-0.080924,0.236540,0,0);-ms-transform:matrix(0.242798,0.000000,-0.080924,0.236540,0,0);-webkit-transform:matrix(0.242798,0.000000,-0.080924,0.236540,0,0);}
.m3{transform:matrix(0.243422,0.000000,-0.081132,0.236469,0,0);-ms-transform:matrix(0.243422,0.000000,-0.081132,0.236469,0,0);-webkit-transform:matrix(0.243422,0.000000,-0.081132,0.236469,0,0);}
.m5{transform:matrix(0.249037,0.000000,-0.083004,0.235818,0,0);-ms-transform:matrix(0.249037,0.000000,-0.083004,0.235818,0,0);-webkit-transform:matrix(0.249037,0.000000,-0.083004,0.235818,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);}
.m8{transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.256614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256614,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257351,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.264014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264014,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.v1{vertical-align:-77.760000px;}
.v3{vertical-align:-30.240000px;}
.v7{vertical-align:-26.342063px;}
.v4{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.512229px;}
.vb{vertical-align:18.222093px;}
.v2{vertical-align:30.240000px;}
.v9{vertical-align:38.071940px;}
.v6{vertical-align:39.148676px;}
.v8{vertical-align:48.240000px;}
.va{vertical-align:51.227725px;}
.lsb{letter-spacing:-2.709389px;}
.ls10{letter-spacing:-2.634871px;}
.ls18{letter-spacing:-2.527200px;}
.lsc{letter-spacing:-2.424454px;}
.ls11{letter-spacing:-2.357772px;}
.ls19{letter-spacing:-1.983225px;}
.ls7{letter-spacing:-1.008000px;}
.ls1d{letter-spacing:-0.936000px;}
.lse{letter-spacing:-0.874803px;}
.ls13{letter-spacing:-0.850742px;}
.ls1f{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.529656px;}
.ls4{letter-spacing:-0.457800px;}
.ls21{letter-spacing:-0.413400px;}
.ls1c{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.156000px;}
.lsf{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.719485px;}
.ls14{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.739833px;}
.ls1a{letter-spacing:0.958748px;}
.ls1e{letter-spacing:17.280000px;}
.ls16{letter-spacing:390.171102px;}
.ls1{letter-spacing:800.100000px;}
.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;}
}
.ws25{word-spacing:-72.000000px;}
.ws1f{word-spacing:-19.162010px;}
.ws1e{word-spacing:-18.632353px;}
.ws28{word-spacing:-18.216000px;}
.ws23{word-spacing:-18.151510px;}
.ws27{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws26{word-spacing:-17.712000px;}
.ws24{word-spacing:-17.064000px;}
.ws21{word-spacing:-16.634810px;}
.wsf{word-spacing:-16.410051px;}
.ws1{word-spacing:-16.102200px;}
.ws1a{word-spacing:-15.958713px;}
.wsd{word-spacing:-15.670218px;}
.ws0{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.239228px;}
.ws13{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.795415px;}
.ws4{word-spacing:-14.680200px;}
.ws29{word-spacing:-14.526600px;}
.ws8{word-spacing:-14.400000px;}
.ws1d{word-spacing:-14.388485px;}
.wse{word-spacing:-13.245765px;}
.wsc{word-spacing:-12.960829px;}
.ws19{word-spacing:-12.881456px;}
.ws17{word-spacing:-12.604357px;}
.ws2{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.632619px;}
.ws5{word-spacing:-9.000000px;}
.ws14{word-spacing:-8.653062px;}
.ws6{word-spacing:0.000000px;}
.ws15{word-spacing:44.905482px;}
.wsa{word-spacing:45.440648px;}
.ws16{word-spacing:69.157329px;}
.wsb{word-spacing:70.503349px;}
.ws1c{word-spacing:79.935639px;}
.ws11{word-spacing:81.586487px;}
.ws1b{word-spacing:108.904921px;}
.ws10{word-spacing:109.545980px;}
.ws22{word-spacing:201.079100px;}
.ws20{word-spacing:699.999814px;}
._27{margin-left:-530.649954px;}
._48{margin-left:-514.839728px;}
._2c{margin-left:-467.699142px;}
._35{margin-left:-465.979210px;}
._4c{margin-left:-457.212865px;}
._51{margin-left:-455.781961px;}
._43{margin-left:-371.493706px;}
._5d{margin-left:-362.005432px;}
._34{margin-left:-358.145257px;}
._30{margin-left:-351.377234px;}
._2a{margin-left:-348.341044px;}
._29{margin-left:-340.842734px;}
._4f{margin-left:-334.040054px;}
._4a{margin-left:-332.586389px;}
._28{margin-left:-331.494841px;}
._49{margin-left:-313.821441px;}
._33{margin-left:-309.445860px;}
._50{margin-left:-302.275170px;}
._69{margin-left:-287.722505px;}
._6a{margin-left:-243.454255px;}
._31{margin-left:-242.120364px;}
._46{margin-left:-239.893366px;}
._3e{margin-left:-236.344231px;}
._60{margin-left:-234.350313px;}
._65{margin-left:-231.388607px;}
._63{margin-left:-230.190205px;}
._58{margin-left:-221.628130px;}
._2f{margin-left:-213.025212px;}
._4e{margin-left:-204.892469px;}
._6b{margin-left:-195.511361px;}
._3f{margin-left:-188.160501px;}
._2e{margin-left:-186.882879px;}
._41{margin-left:-180.856737px;}
._5b{margin-left:-176.708929px;}
._59{margin-left:-172.421070px;}
._62{margin-left:-157.844441px;}
._2b{margin-left:-154.764673px;}
._4b{margin-left:-151.726555px;}
._45{margin-left:-145.114793px;}
._5f{margin-left:-141.950685px;}
._38{margin-left:-137.076410px;}
._54{margin-left:-133.695201px;}
._67{margin-left:-119.922960px;}
._66{margin-left:-104.714258px;}
._37{margin-left:-99.025181px;}
._53{margin-left:-96.884981px;}
._39{margin-left:-95.307729px;}
._55{margin-left:-93.318386px;}
._40{margin-left:-85.388060px;}
._5a{margin-left:-83.039565px;}
._44{margin-left:-77.687360px;}
._5e{margin-left:-75.988189px;}
._42{margin-left:-62.442571px;}
._5c{margin-left:-61.308531px;}
._3c{margin-left:-59.534082px;}
._3b{margin-left:-58.414269px;}
._3a{margin-left:-53.085535px;}
._56{margin-left:-51.431027px;}
._3d{margin-left:-46.217018px;}
._57{margin-left:-44.182851px;}
._64{margin-left:-6.983840px;}
._32{margin-left:-2.688093px;}
._1{margin-left:-1.135440px;}
._0{width:1.015920px;}
._5{width:2.793360px;}
._6{width:4.803120px;}
._e{width:5.849760px;}
._13{width:7.279440px;}
._b{width:8.340000px;}
._7{width:9.442080px;}
._8{width:10.517760px;}
._21{width:11.659440px;}
._17{width:12.744000px;}
._16{width:13.968000px;}
._61{width:15.120000px;}
._c{width:16.673040px;}
._d{width:17.928000px;}
._22{width:19.512000px;}
._11{width:20.899440px;}
._f{width:22.104000px;}
._10{width:23.292000px;}
._12{width:24.552000px;}
._23{width:26.136000px;}
._24{width:27.148080px;}
._18{width:28.332000px;}
._a{width:29.862240px;}
._9{width:31.391760px;}
._6c{width:32.400000px;}
._6d{width:36.514320px;}
._15{width:37.584000px;}
._14{width:39.024000px;}
._1b{width:83.629440px;}
._20{width:91.030080px;}
._2{width:97.011600px;}
._68{width:127.440000px;}
._1c{width:163.092000px;}
._1f{width:179.925840px;}
._25{width:187.642080px;}
._1a{width:195.816000px;}
._3{width:197.460000px;}
._1d{width:720.120000px;}
._1e{width:729.540000px;}
._19{width:738.120000px;}
._4{width:861.821520px;}
._52{width:1563.823342px;}
._36{width:1607.905851px;}
._47{width:1690.625449px;}
._4d{width:1711.462533px;}
._26{width:1742.843103px;}
._2d{width:1763.619640px;}
.fc1{color:rgb(68,68,68);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.579021px;}
.fs4{font-size:36.000000px;}
.fs9{font-size:36.585254px;}
.fs3{font-size:41.760000px;}
.fs15{font-size:42.330192px;}
.fs10{font-size:44.686726px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fsc{font-size:60.956912px;}
.fs8{font-size:62.680873px;}
.fse{font-size:64.622733px;}
.fs2{font-size:66.240000px;}
.fsa{font-size:66.267576px;}
.fs12{font-size:70.814429px;}
.fs1{font-size:72.000000px;}
.fs16{font-size:72.606040px;}
.fsf{font-size:76.648039px;}
.fs6{font-size:77.225383px;}
.fs13{font-size:77.682919px;}
.fs11{font-size:81.009549px;}
.fsb{font-size:91.437798px;}
.fs7{font-size:94.023808px;}
.fs14{font-size:109.056107px;}
.y0{bottom:0.000000px;}
.yb4{bottom:3.780000px;}
.yb6{bottom:3.960000px;}
.yb8{bottom:4.140000px;}
.y66{bottom:4.534086px;}
.y92{bottom:4.561719px;}
.ya5{bottom:5.309287px;}
.y75{bottom:6.611970px;}
.y70{bottom:6.798968px;}
.y90{bottom:7.298046px;}
.ya8{bottom:8.430365px;}
.y89{bottom:8.596670px;}
.y76{bottom:10.140242px;}
.y71{bottom:10.427025px;}
.ya4{bottom:18.439723px;}
.ya6{bottom:22.671742px;}
.y88{bottom:23.933884px;}
.ya9{bottom:34.116428px;}
.y8a{bottom:36.015699px;}
.ya7{bottom:41.111464px;}
.y8b{bottom:44.573716px;}
.y3{bottom:56.700000px;}
.y2{bottom:73.980000px;}
.y32{bottom:90.720000px;}
.yf7{bottom:100.440000px;}
.yb2{bottom:104.220000px;}
.y63{bottom:107.280000px;}
.y31{bottom:112.320000px;}
.yf6{bottom:117.720000px;}
.y30{bottom:121.860000px;}
.y86{bottom:133.740000px;}
.yb1{bottom:135.720000px;}
.y62{bottom:138.060000px;}
.yd4{bottom:141.300000px;}
.y2f{bottom:143.280000px;}
.yf5{bottom:145.980000px;}
.y2e{bottom:152.820000px;}
.yd3{bottom:162.000000px;}
.y85{bottom:164.880000px;}
.yb0{bottom:166.680000px;}
.y61{bottom:169.380000px;}
.y2d{bottom:174.420000px;}
.yf4{bottom:176.940000px;}
.yd2{bottom:182.700000px;}
.y2c{bottom:183.960000px;}
.y51{bottom:187.380000px;}
.y60{bottom:189.540000px;}
.y84{bottom:195.840000px;}
.yaf{bottom:197.820000px;}
.yd1{bottom:203.400000px;}
.y2b{bottom:205.380000px;}
.y5f{bottom:211.710000px;}
.y2a{bottom:214.950000px;}
.y50{bottom:218.370000px;}
.yf3{bottom:218.550000px;}
.y83{bottom:227.010000px;}
.yae{bottom:228.810000px;}
.y29{bottom:236.550000px;}
.yd0{bottom:244.830000px;}
.y28{bottom:247.350000px;}
.y4f{bottom:249.510000px;}
.y82{bottom:257.610000px;}
.yad{bottom:259.950000px;}
.ycf{bottom:265.530000px;}
.y27{bottom:268.410000px;}
.y4e{bottom:280.470000px;}
.yf2{bottom:280.650000px;}
.yce{bottom:286.230000px;}
.y81{bottom:289.110000px;}
.yac{bottom:290.910000px;}
.y26{bottom:299.550000px;}
.yf1{bottom:301.350000px;}
.y80{bottom:309.270000px;}
.yab{bottom:311.070000px;}
.y4d{bottom:311.610000px;}
.y7f{bottom:322.770000px;}
.ya3{bottom:324.615000px;}
.ycd{bottom:327.630000px;}
.y25{bottom:330.510000px;}
.y4c{bottom:342.570000px;}
.yf0{bottom:342.750000px;}
.yaa{bottom:347.070000px;}
.ycc{bottom:348.330000px;}
.y24{bottom:361.650000px;}
.yef{bottom:363.450000px;}
.ycb{bottom:369.030000px;}
.y4b{bottom:373.710000px;}
.yee{bottom:384.150000px;}
.ya2{bottom:392.070000px;}
.y23{bottom:392.610000px;}
.y5e{bottom:394.050000px;}
.yca{bottom:399.990000px;}
.y4a{bottom:404.670000px;}
.y7e{bottom:421.770000px;}
.ya1{bottom:423.210000px;}
.y22{bottom:423.570000px;}
.y5d{bottom:425.010000px;}
.yed{bottom:425.550000px;}
.yc9{bottom:430.590000px;}
.y49{bottom:435.810000px;}
.yec{bottom:446.295000px;}
.y7d{bottom:452.775000px;}
.ya0{bottom:454.215000px;}
.y21{bottom:454.755000px;}
.y5c{bottom:456.195000px;}
.yc8{bottom:462.135000px;}
.y48{bottom:466.815000px;}
.yeb{bottom:466.995000px;}
.y7c{bottom:483.915000px;}
.y9f{bottom:485.355000px;}
.y20{bottom:485.715000px;}
.y5b{bottom:487.155000px;}
.yea{bottom:487.695000px;}
.yc7{bottom:493.095000px;}
.y47{bottom:497.955000px;}
.y7b{bottom:514.875000px;}
.y9e{bottom:516.315000px;}
.y1f{bottom:516.855000px;}
.y5a{bottom:518.295000px;}
.yc6{bottom:524.235000px;}
.y46{bottom:528.915000px;}
.ye9{bottom:529.095000px;}
.y7a{bottom:546.015000px;}
.y9d{bottom:547.455000px;}
.y1e{bottom:547.815000px;}
.y59{bottom:549.255000px;}
.ye8{bottom:549.795000px;}
.yc5{bottom:555.195000px;}
.y45{bottom:560.055000px;}
.y58{bottom:569.415000px;}
.ye7{bottom:570.495000px;}
.y79{bottom:576.975000px;}
.y9c{bottom:578.415000px;}
.y1d{bottom:578.955000px;}
.yc4{bottom:586.335000px;}
.y57{bottom:586.695000px;}
.y44{bottom:591.015000px;}
.y78{bottom:597.495000px;}
.y56{bottom:604.155000px;}
.y9b{bottom:609.555000px;}
.y1c{bottom:609.915000px;}
.ye6{bottom:611.895000px;}
.y74{bottom:612.465000px;}
.yc3{bottom:616.935000px;}
.y55{bottom:619.095000px;}
.y43{bottom:621.975000px;}
.y77{bottom:624.495000px;}
.ye5{bottom:632.595000px;}
.y9a{bottom:640.515000px;}
.y1b{bottom:641.055000px;}
.y73{bottom:645.555000px;}
.yc2{bottom:648.435000px;}
.y42{bottom:653.115000px;}
.ye4{bottom:653.295000px;}
.y72{bottom:660.495000px;}
.y6f{bottom:660.540000px;}
.y99{bottom:671.295000px;}
.y1a{bottom:671.655000px;}
.ye3{bottom:673.995000px;}
.yc1{bottom:679.425000px;}
.y41{bottom:683.745000px;}
.y6e{bottom:694.545000px;}
.y98{bottom:702.645000px;}
.y19{bottom:703.185000px;}
.y6d{bottom:709.440000px;}
.yc0{bottom:710.565000px;}
.y6c{bottom:713.985000px;}
.y40{bottom:715.245000px;}
.ye2{bottom:715.425000px;}
.y97{bottom:722.805000px;}
.y18{bottom:723.345000px;}
.ye1{bottom:736.125000px;}
.y96{bottom:736.305000px;}
.y17{bottom:741.345000px;}
.ybf{bottom:741.525000px;}
.y6b{bottom:745.665000px;}
.y3f{bottom:746.205000px;}
.ye0{bottom:756.825000px;}
.y16{bottom:762.045000px;}
.ybe{bottom:772.665000px;}
.y6a{bottom:776.625000px;}
.y3e{bottom:777.345000px;}
.y15{bottom:781.845000px;}
.y54{bottom:796.785000px;}
.ydf{bottom:798.225000px;}
.y14{bottom:799.125000px;}
.ybd{bottom:803.625000px;}
.y69{bottom:807.765000px;}
.y3d{bottom:808.305000px;}
.y95{bottom:809.385000px;}
.y13{bottom:816.405000px;}
.yde{bottom:818.925000px;}
.y12{bottom:833.685000px;}
.ybc{bottom:834.765000px;}
.y68{bottom:838.725000px;}
.y3c{bottom:839.445000px;}
.ydd{bottom:839.625000px;}
.y94{bottom:840.525000px;}
.y11{bottom:850.965000px;}
.ybb{bottom:855.285000px;}
.y10{bottom:868.245000px;}
.y67{bottom:869.865000px;}
.y3b{bottom:870.405000px;}
.y93{bottom:871.485000px;}
.ydc{bottom:881.025000px;}
.yf{bottom:885.345000px;}
.yba{bottom:886.425000px;}
.y65{bottom:896.490000px;}
.y64{bottom:901.005000px;}
.y3a{bottom:901.545000px;}
.ydb{bottom:901.725000px;}
.ye{bottom:902.625000px;}
.yb9{bottom:906.585000px;}
.yd{bottom:920.670000px;}
.yb7{bottom:920.850000px;}
.yda{bottom:922.470000px;}
.y8f{bottom:929.265000px;}
.y91{bottom:932.340000px;}
.y39{bottom:932.550000px;}
.y8e{bottom:936.870000px;}
.yb5{bottom:940.650000px;}
.yc{bottom:941.370000px;}
.yd9{bottom:943.170000px;}
.yb3{bottom:960.270000px;}
.yb{bottom:962.070000px;}
.y53{bottom:962.790000px;}
.y38{bottom:963.690000px;}
.y8d{bottom:968.370000px;}
.y52{bottom:977.730000px;}
.ya{bottom:982.410000px;}
.yd8{bottom:984.570000px;}
.y87{bottom:984.690000px;}
.yff{bottom:994.110000px;}
.y37{bottom:994.650000px;}
.y9{bottom:1001.310000px;}
.yd7{bottom:1005.270000px;}
.y8c{bottom:1007.250000px;}
.yfe{bottom:1012.110000px;}
.y8{bottom:1020.210000px;}
.y36{bottom:1025.790000px;}
.yd6{bottom:1025.970000px;}
.yfd{bottom:1032.810000px;}
.y7{bottom:1039.290000px;}
.yfc{bottom:1052.790000px;}
.y35{bottom:1056.750000px;}
.yfb{bottom:1070.070000px;}
.y6{bottom:1077.630000px;}
.yfa{bottom:1087.350000px;}
.y34{bottom:1087.890000px;}
.y5{bottom:1098.330000px;}
.yf9{bottom:1104.450000px;}
.y4{bottom:1118.670000px;}
.y33{bottom:1118.850000px;}
.yd5{bottom:1119.030000px;}
.yf8{bottom:1121.730000px;}
.y1{bottom:1196.280000px;}
.h1c{height:16.874999px;}
.h28{height:18.900000px;}
.h27{height:19.080000px;}
.hb{height:21.450236px;}
.h1a{height:23.549412px;}
.h11{height:29.175605px;}
.hd{height:30.000738px;}
.h20{height:31.354932px;}
.h7{height:35.332031px;}
.h22{height:41.524099px;}
.h25{height:41.544768px;}
.h16{height:43.857577px;}
.h13{height:47.867522px;}
.hf{height:49.085895px;}
.h1e{height:52.950237px;}
.h8{height:52.998047px;}
.h21{height:53.780939px;}
.h19{height:56.774939px;}
.hc{height:57.202591px;}
.h14{height:57.450325px;}
.h1d{height:57.541498px;}
.h2{height:58.651172px;}
.h18{height:60.005608px;}
.h6{height:60.226875px;}
.ha{height:65.010937px;}
.h9{height:66.757500px;}
.h1b{height:69.465912px;}
.h4{height:70.664062px;}
.h24{height:71.223405px;}
.h5{height:71.225156px;}
.h26{height:71.258857px;}
.h3{height:72.562500px;}
.h17{height:75.188433px;}
.h15{height:75.225858px;}
.h1f{height:80.780329px;}
.h12{height:87.086519px;}
.he{height:89.549468px;}
.h10{height:106.891172px;}
.h23{height:140.673223px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:14.549172px;}
.w7{width:18.000413px;}
.w6{width:23.625570px;}
.wa{width:122.256000px;}
.wb{width:126.756000px;}
.w9{width:128.880000px;}
.wc{width:137.736000px;}
.w8{width:174.383357px;}
.w5{width:229.497312px;}
.w3{width:552.008782px;}
.w4{width:552.009280px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:1.000087px;}
.x2a{left:3.271606px;}
.x22{left:5.999483px;}
.x2f{left:7.740000px;}
.x12{left:26.645240px;}
.x15{left:27.897588px;}
.x28{left:34.496703px;}
.x37{left:35.685000px;}
.x38{left:42.120000px;}
.x36{left:45.174000px;}
.x39{left:47.520000px;}
.x1f{left:48.977910px;}
.x29{left:50.273606px;}
.x34{left:52.965000px;}
.x33{left:56.154000px;}
.x35{left:59.220000px;}
.x26{left:60.233260px;}
.x1a{left:64.333500px;}
.x27{left:68.050188px;}
.x2b{left:73.320580px;}
.x1e{left:100.561028px;}
.x2e{left:119.916000px;}
.x1{left:127.656000px;}
.x2c{left:145.514664px;}
.x1d{left:148.724711px;}
.x21{left:167.115000px;}
.x1c{left:178.492598px;}
.x8{left:181.650000px;}
.x23{left:190.650000px;}
.x18{left:193.852968px;}
.x19{left:196.259001px;}
.x1b{left:210.567727px;}
.x2{left:212.070000px;}
.x10{left:215.940000px;}
.x17{left:220.558341px;}
.x11{left:230.430000px;}
.x30{left:249.510000px;}
.x2d{left:302.115000px;}
.x9{left:303.195000px;}
.xb{left:308.775000px;}
.xa{left:312.195000px;}
.x20{left:357.195000px;}
.xc{left:372.855000px;}
.x13{left:438.722774px;}
.x24{left:445.065000px;}
.xd{left:449.190000px;}
.x16{left:451.725000px;}
.xf{left:463.785000px;}
.x3{left:467.925000px;}
.x31{left:500.145000px;}
.x25{left:546.225000px;}
.x7{left:625.110000px;}
.x32{left:638.610000px;}
.x5{left:663.270000px;}
.x14{left:679.830000px;}
.x4{left:692.430000px;}
.x6{left:699.450000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v3{vertical-align:-26.880000pt;}
.v7{vertical-align:-23.415167pt;}
.v4{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.899759pt;}
.vb{vertical-align:16.197416pt;}
.v2{vertical-align:26.880000pt;}
.v9{vertical-align:33.841724pt;}
.v6{vertical-align:34.798823pt;}
.v8{vertical-align:42.880000pt;}
.va{vertical-align:45.535756pt;}
.lsb{letter-spacing:-2.408346pt;}
.ls10{letter-spacing:-2.342107pt;}
.ls18{letter-spacing:-2.246400pt;}
.lsc{letter-spacing:-2.155070pt;}
.ls11{letter-spacing:-2.095797pt;}
.ls19{letter-spacing:-1.762867pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls1d{letter-spacing:-0.832000pt;}
.lse{letter-spacing:-0.777603pt;}
.ls13{letter-spacing:-0.756216pt;}
.ls1f{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.470806pt;}
.ls4{letter-spacing:-0.406933pt;}
.ls21{letter-spacing:-0.367467pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.138667pt;}
.lsf{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.639542pt;}
.ls14{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.657630pt;}
.ls1a{letter-spacing:0.852220pt;}
.ls1e{letter-spacing:15.360000pt;}
.ls16{letter-spacing:346.818758pt;}
.ls1{letter-spacing:711.200000pt;}
.ws25{word-spacing:-64.000000pt;}
.ws1f{word-spacing:-17.032898pt;}
.ws1e{word-spacing:-16.562092pt;}
.ws28{word-spacing:-16.192000pt;}
.ws23{word-spacing:-16.134676pt;}
.ws27{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws26{word-spacing:-15.744000pt;}
.ws24{word-spacing:-15.168000pt;}
.ws21{word-spacing:-14.786498pt;}
.wsf{word-spacing:-14.586712pt;}
.ws1{word-spacing:-14.313067pt;}
.ws1a{word-spacing:-14.185523pt;}
.wsd{word-spacing:-13.929083pt;}
.ws0{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.545980pt;}
.ws13{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.151480pt;}
.ws4{word-spacing:-13.049067pt;}
.ws29{word-spacing:-12.912533pt;}
.ws8{word-spacing:-12.800000pt;}
.ws1d{word-spacing:-12.789765pt;}
.wse{word-spacing:-11.774013pt;}
.wsc{word-spacing:-11.520737pt;}
.ws19{word-spacing:-11.450183pt;}
.ws17{word-spacing:-11.203873pt;}
.ws2{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.562328pt;}
.ws5{word-spacing:-8.000000pt;}
.ws14{word-spacing:-7.691611pt;}
.ws6{word-spacing:0.000000pt;}
.ws15{word-spacing:39.915984pt;}
.wsa{word-spacing:40.391687pt;}
.ws16{word-spacing:61.473182pt;}
.wsb{word-spacing:62.669644pt;}
.ws1c{word-spacing:71.053901pt;}
.ws11{word-spacing:72.521321pt;}
.ws1b{word-spacing:96.804374pt;}
.ws10{word-spacing:97.374204pt;}
.ws22{word-spacing:178.736978pt;}
.ws20{word-spacing:622.222057pt;}
._27{margin-left:-471.688848pt;}
._48{margin-left:-457.635314pt;}
._2c{margin-left:-415.732571pt;}
._35{margin-left:-414.203742pt;}
._4c{margin-left:-406.411436pt;}
._51{margin-left:-405.139521pt;}
._43{margin-left:-330.216627pt;}
._5d{margin-left:-321.782606pt;}
._34{margin-left:-318.351340pt;}
._30{margin-left:-312.335320pt;}
._2a{margin-left:-309.636483pt;}
._29{margin-left:-302.971319pt;}
._4f{margin-left:-296.924492pt;}
._4a{margin-left:-295.632346pt;}
._28{margin-left:-294.662081pt;}
._49{margin-left:-278.952392pt;}
._33{margin-left:-275.062987pt;}
._50{margin-left:-268.689040pt;}
._69{margin-left:-255.753338pt;}
._6a{margin-left:-216.403782pt;}
._31{margin-left:-215.218102pt;}
._46{margin-left:-213.238548pt;}
._3e{margin-left:-210.083761pt;}
._60{margin-left:-208.311389pt;}
._65{margin-left:-205.678762pt;}
._63{margin-left:-204.613516pt;}
._58{margin-left:-197.002782pt;}
._2f{margin-left:-189.355744pt;}
._4e{margin-left:-182.126639pt;}
._6b{margin-left:-173.787876pt;}
._3f{margin-left:-167.253779pt;}
._2e{margin-left:-166.118115pt;}
._41{margin-left:-160.761544pt;}
._5b{margin-left:-157.074604pt;}
._59{margin-left:-153.263174pt;}
._62{margin-left:-140.306170pt;}
._2b{margin-left:-137.568598pt;}
._4b{margin-left:-134.868049pt;}
._45{margin-left:-128.990927pt;}
._5f{margin-left:-126.178387pt;}
._38{margin-left:-121.845698pt;}
._54{margin-left:-118.840179pt;}
._67{margin-left:-106.598187pt;}
._66{margin-left:-93.079341pt;}
._37{margin-left:-88.022383pt;}
._53{margin-left:-86.119983pt;}
._39{margin-left:-84.717981pt;}
._55{margin-left:-82.949677pt;}
._40{margin-left:-75.900498pt;}
._5a{margin-left:-73.812947pt;}
._44{margin-left:-69.055431pt;}
._5e{margin-left:-67.545057pt;}
._42{margin-left:-55.504508pt;}
._5c{margin-left:-54.496472pt;}
._3c{margin-left:-52.919184pt;}
._3b{margin-left:-51.923795pt;}
._3a{margin-left:-47.187142pt;}
._56{margin-left:-45.716468pt;}
._3d{margin-left:-41.081794pt;}
._57{margin-left:-39.273645pt;}
._64{margin-left:-6.207858pt;}
._32{margin-left:-2.389416pt;}
._1{margin-left:-1.009280pt;}
._0{width:0.903040pt;}
._5{width:2.482987pt;}
._6{width:4.269440pt;}
._e{width:5.199787pt;}
._13{width:6.470613pt;}
._b{width:7.413333pt;}
._7{width:8.392960pt;}
._8{width:9.349120pt;}
._21{width:10.363947pt;}
._17{width:11.328000pt;}
._16{width:12.416000pt;}
._61{width:13.440000pt;}
._c{width:14.820480pt;}
._d{width:15.936000pt;}
._22{width:17.344000pt;}
._11{width:18.577280pt;}
._f{width:19.648000pt;}
._10{width:20.704000pt;}
._12{width:21.824000pt;}
._23{width:23.232000pt;}
._24{width:24.131627pt;}
._18{width:25.184000pt;}
._a{width:26.544213pt;}
._9{width:27.903787pt;}
._6c{width:28.800000pt;}
._6d{width:32.457173pt;}
._15{width:33.408000pt;}
._14{width:34.688000pt;}
._1b{width:74.337280pt;}
._20{width:80.915627pt;}
._2{width:86.232533pt;}
._68{width:113.280000pt;}
._1c{width:144.970667pt;}
._1f{width:159.934080pt;}
._25{width:166.792960pt;}
._1a{width:174.058667pt;}
._3{width:175.520000pt;}
._1d{width:640.106667pt;}
._1e{width:648.480000pt;}
._19{width:656.106667pt;}
._4{width:766.063573pt;}
._52{width:1390.065193pt;}
._36{width:1429.249645pt;}
._47{width:1502.778177pt;}
._4d{width:1521.300030pt;}
._26{width:1549.193869pt;}
._2d{width:1567.661903pt;}
.fsd{font-size:31.625797pt;}
.fs4{font-size:32.000000pt;}
.fs9{font-size:32.520226pt;}
.fs3{font-size:37.120000pt;}
.fs15{font-size:37.626837pt;}
.fs10{font-size:39.721534pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fsc{font-size:54.183921pt;}
.fs8{font-size:55.716331pt;}
.fse{font-size:57.442429pt;}
.fs2{font-size:58.880000pt;}
.fsa{font-size:58.904512pt;}
.fs12{font-size:62.946159pt;}
.fs1{font-size:64.000000pt;}
.fs16{font-size:64.538702pt;}
.fsf{font-size:68.131590pt;}
.fs6{font-size:68.644785pt;}
.fs13{font-size:69.051484pt;}
.fs11{font-size:72.008488pt;}
.fsb{font-size:81.278043pt;}
.fs7{font-size:83.576719pt;}
.fs14{font-size:96.938762pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:3.360000pt;}
.yb6{bottom:3.520000pt;}
.yb8{bottom:3.680000pt;}
.y66{bottom:4.030299pt;}
.y92{bottom:4.054861pt;}
.ya5{bottom:4.719366pt;}
.y75{bottom:5.877307pt;}
.y70{bottom:6.043527pt;}
.y90{bottom:6.487152pt;}
.ya8{bottom:7.493657pt;}
.y89{bottom:7.641484pt;}
.y76{bottom:9.013549pt;}
.y71{bottom:9.268467pt;}
.ya4{bottom:16.390864pt;}
.ya6{bottom:20.152659pt;}
.y88{bottom:21.274564pt;}
.ya9{bottom:30.325713pt;}
.y8a{bottom:32.013955pt;}
.ya7{bottom:36.543524pt;}
.y8b{bottom:39.621081pt;}
.y3{bottom:50.400000pt;}
.y2{bottom:65.760000pt;}
.y32{bottom:80.640000pt;}
.yf7{bottom:89.280000pt;}
.yb2{bottom:92.640000pt;}
.y63{bottom:95.360000pt;}
.y31{bottom:99.840000pt;}
.yf6{bottom:104.640000pt;}
.y30{bottom:108.320000pt;}
.y86{bottom:118.880000pt;}
.yb1{bottom:120.640000pt;}
.y62{bottom:122.720000pt;}
.yd4{bottom:125.600000pt;}
.y2f{bottom:127.360000pt;}
.yf5{bottom:129.760000pt;}
.y2e{bottom:135.840000pt;}
.yd3{bottom:144.000000pt;}
.y85{bottom:146.560000pt;}
.yb0{bottom:148.160000pt;}
.y61{bottom:150.560000pt;}
.y2d{bottom:155.040000pt;}
.yf4{bottom:157.280000pt;}
.yd2{bottom:162.400000pt;}
.y2c{bottom:163.520000pt;}
.y51{bottom:166.560000pt;}
.y60{bottom:168.480000pt;}
.y84{bottom:174.080000pt;}
.yaf{bottom:175.840000pt;}
.yd1{bottom:180.800000pt;}
.y2b{bottom:182.560000pt;}
.y5f{bottom:188.186667pt;}
.y2a{bottom:191.066667pt;}
.y50{bottom:194.106667pt;}
.yf3{bottom:194.266667pt;}
.y83{bottom:201.786667pt;}
.yae{bottom:203.386667pt;}
.y29{bottom:210.266667pt;}
.yd0{bottom:217.626667pt;}
.y28{bottom:219.866667pt;}
.y4f{bottom:221.786667pt;}
.y82{bottom:228.986667pt;}
.yad{bottom:231.066667pt;}
.ycf{bottom:236.026667pt;}
.y27{bottom:238.586667pt;}
.y4e{bottom:249.306667pt;}
.yf2{bottom:249.466667pt;}
.yce{bottom:254.426667pt;}
.y81{bottom:256.986667pt;}
.yac{bottom:258.586667pt;}
.y26{bottom:266.266667pt;}
.yf1{bottom:267.866667pt;}
.y80{bottom:274.906667pt;}
.yab{bottom:276.506667pt;}
.y4d{bottom:276.986667pt;}
.y7f{bottom:286.906667pt;}
.ya3{bottom:288.546667pt;}
.ycd{bottom:291.226667pt;}
.y25{bottom:293.786667pt;}
.y4c{bottom:304.506667pt;}
.yf0{bottom:304.666667pt;}
.yaa{bottom:308.506667pt;}
.ycc{bottom:309.626667pt;}
.y24{bottom:321.466667pt;}
.yef{bottom:323.066667pt;}
.ycb{bottom:328.026667pt;}
.y4b{bottom:332.186667pt;}
.yee{bottom:341.466667pt;}
.ya2{bottom:348.506667pt;}
.y23{bottom:348.986667pt;}
.y5e{bottom:350.266667pt;}
.yca{bottom:355.546667pt;}
.y4a{bottom:359.706667pt;}
.y7e{bottom:374.906667pt;}
.ya1{bottom:376.186667pt;}
.y22{bottom:376.506667pt;}
.y5d{bottom:377.786667pt;}
.yed{bottom:378.266667pt;}
.yc9{bottom:382.746667pt;}
.y49{bottom:387.386667pt;}
.yec{bottom:396.706667pt;}
.y7d{bottom:402.466667pt;}
.ya0{bottom:403.746667pt;}
.y21{bottom:404.226667pt;}
.y5c{bottom:405.506667pt;}
.yc8{bottom:410.786667pt;}
.y48{bottom:414.946667pt;}
.yeb{bottom:415.106667pt;}
.y7c{bottom:430.146667pt;}
.y9f{bottom:431.426667pt;}
.y20{bottom:431.746667pt;}
.y5b{bottom:433.026667pt;}
.yea{bottom:433.506667pt;}
.yc7{bottom:438.306667pt;}
.y47{bottom:442.626667pt;}
.y7b{bottom:457.666667pt;}
.y9e{bottom:458.946667pt;}
.y1f{bottom:459.426667pt;}
.y5a{bottom:460.706667pt;}
.yc6{bottom:465.986667pt;}
.y46{bottom:470.146667pt;}
.ye9{bottom:470.306667pt;}
.y7a{bottom:485.346667pt;}
.y9d{bottom:486.626667pt;}
.y1e{bottom:486.946667pt;}
.y59{bottom:488.226667pt;}
.ye8{bottom:488.706667pt;}
.yc5{bottom:493.506667pt;}
.y45{bottom:497.826667pt;}
.y58{bottom:506.146667pt;}
.ye7{bottom:507.106667pt;}
.y79{bottom:512.866667pt;}
.y9c{bottom:514.146667pt;}
.y1d{bottom:514.626667pt;}
.yc4{bottom:521.186667pt;}
.y57{bottom:521.506667pt;}
.y44{bottom:525.346667pt;}
.y78{bottom:531.106667pt;}
.y56{bottom:537.026667pt;}
.y9b{bottom:541.826667pt;}
.y1c{bottom:542.146667pt;}
.ye6{bottom:543.906667pt;}
.y74{bottom:544.413333pt;}
.yc3{bottom:548.386667pt;}
.y55{bottom:550.306667pt;}
.y43{bottom:552.866667pt;}
.y77{bottom:555.106667pt;}
.ye5{bottom:562.306667pt;}
.y9a{bottom:569.346667pt;}
.y1b{bottom:569.826667pt;}
.y73{bottom:573.826667pt;}
.yc2{bottom:576.386667pt;}
.y42{bottom:580.546667pt;}
.ye4{bottom:580.706667pt;}
.y72{bottom:587.106667pt;}
.y6f{bottom:587.146667pt;}
.y99{bottom:596.706667pt;}
.y1a{bottom:597.026667pt;}
.ye3{bottom:599.106667pt;}
.yc1{bottom:603.933333pt;}
.y41{bottom:607.773333pt;}
.y6e{bottom:617.373333pt;}
.y98{bottom:624.573333pt;}
.y19{bottom:625.053333pt;}
.y6d{bottom:630.613333pt;}
.yc0{bottom:631.613333pt;}
.y6c{bottom:634.653333pt;}
.y40{bottom:635.773333pt;}
.ye2{bottom:635.933333pt;}
.y97{bottom:642.493333pt;}
.y18{bottom:642.973333pt;}
.ye1{bottom:654.333333pt;}
.y96{bottom:654.493333pt;}
.y17{bottom:658.973333pt;}
.ybf{bottom:659.133333pt;}
.y6b{bottom:662.813333pt;}
.y3f{bottom:663.293333pt;}
.ye0{bottom:672.733333pt;}
.y16{bottom:677.373333pt;}
.ybe{bottom:686.813333pt;}
.y6a{bottom:690.333333pt;}
.y3e{bottom:690.973333pt;}
.y15{bottom:694.973333pt;}
.y54{bottom:708.253333pt;}
.ydf{bottom:709.533333pt;}
.y14{bottom:710.333333pt;}
.ybd{bottom:714.333333pt;}
.y69{bottom:718.013333pt;}
.y3d{bottom:718.493333pt;}
.y95{bottom:719.453333pt;}
.y13{bottom:725.693333pt;}
.yde{bottom:727.933333pt;}
.y12{bottom:741.053333pt;}
.ybc{bottom:742.013333pt;}
.y68{bottom:745.533333pt;}
.y3c{bottom:746.173333pt;}
.ydd{bottom:746.333333pt;}
.y94{bottom:747.133333pt;}
.y11{bottom:756.413333pt;}
.ybb{bottom:760.253333pt;}
.y10{bottom:771.773333pt;}
.y67{bottom:773.213333pt;}
.y3b{bottom:773.693333pt;}
.y93{bottom:774.653333pt;}
.ydc{bottom:783.133333pt;}
.yf{bottom:786.973333pt;}
.yba{bottom:787.933333pt;}
.y65{bottom:796.880000pt;}
.y64{bottom:800.893333pt;}
.y3a{bottom:801.373333pt;}
.ydb{bottom:801.533333pt;}
.ye{bottom:802.333333pt;}
.yb9{bottom:805.853333pt;}
.yd{bottom:818.373333pt;}
.yb7{bottom:818.533333pt;}
.yda{bottom:819.973333pt;}
.y8f{bottom:826.013333pt;}
.y91{bottom:828.746667pt;}
.y39{bottom:828.933333pt;}
.y8e{bottom:832.773333pt;}
.yb5{bottom:836.133333pt;}
.yc{bottom:836.773333pt;}
.yd9{bottom:838.373333pt;}
.yb3{bottom:853.573333pt;}
.yb{bottom:855.173333pt;}
.y53{bottom:855.813333pt;}
.y38{bottom:856.613333pt;}
.y8d{bottom:860.773333pt;}
.y52{bottom:869.093333pt;}
.ya{bottom:873.253333pt;}
.yd8{bottom:875.173333pt;}
.y87{bottom:875.280000pt;}
.yff{bottom:883.653333pt;}
.y37{bottom:884.133333pt;}
.y9{bottom:890.053333pt;}
.yd7{bottom:893.573333pt;}
.y8c{bottom:895.333333pt;}
.yfe{bottom:899.653333pt;}
.y8{bottom:906.853333pt;}
.y36{bottom:911.813333pt;}
.yd6{bottom:911.973333pt;}
.yfd{bottom:918.053333pt;}
.y7{bottom:923.813333pt;}
.yfc{bottom:935.813333pt;}
.y35{bottom:939.333333pt;}
.yfb{bottom:951.173333pt;}
.y6{bottom:957.893333pt;}
.yfa{bottom:966.533333pt;}
.y34{bottom:967.013333pt;}
.y5{bottom:976.293333pt;}
.yf9{bottom:981.733333pt;}
.y4{bottom:994.373333pt;}
.y33{bottom:994.533333pt;}
.yd5{bottom:994.693333pt;}
.yf8{bottom:997.093333pt;}
.y1{bottom:1063.360000pt;}
.h1c{height:14.999999pt;}
.h28{height:16.800000pt;}
.h27{height:16.960000pt;}
.hb{height:19.066877pt;}
.h1a{height:20.932811pt;}
.h11{height:25.933871pt;}
.hd{height:26.667323pt;}
.h20{height:27.871051pt;}
.h7{height:31.406250pt;}
.h22{height:36.910310pt;}
.h25{height:36.928683pt;}
.h16{height:38.984513pt;}
.h13{height:42.548909pt;}
.hf{height:43.631907pt;}
.h1e{height:47.066877pt;}
.h8{height:47.109375pt;}
.h21{height:47.805279pt;}
.h19{height:50.466612pt;}
.hc{height:50.846747pt;}
.h14{height:51.066956pt;}
.h1d{height:51.147998pt;}
.h2{height:52.134375pt;}
.h18{height:53.338318pt;}
.h6{height:53.535000pt;}
.ha{height:57.787500pt;}
.h9{height:59.340000pt;}
.h1b{height:61.747477pt;}
.h4{height:62.812500pt;}
.h24{height:63.309694pt;}
.h5{height:63.311250pt;}
.h26{height:63.341207pt;}
.h3{height:64.500000pt;}
.h17{height:66.834162pt;}
.h15{height:66.867430pt;}
.h1f{height:71.804737pt;}
.h12{height:77.410239pt;}
.he{height:79.599527pt;}
.h10{height:95.014375pt;}
.h23{height:125.042865pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:12.932597pt;}
.w7{width:16.000367pt;}
.w6{width:21.000507pt;}
.wa{width:108.672000pt;}
.wb{width:112.672000pt;}
.w9{width:114.560000pt;}
.wc{width:122.432000pt;}
.w8{width:155.007429pt;}
.w5{width:203.997611pt;}
.w3{width:490.674473pt;}
.w4{width:490.674915pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:0.888966pt;}
.x2a{left:2.908095pt;}
.x22{left:5.332874pt;}
.x2f{left:6.880000pt;}
.x12{left:23.684657pt;}
.x15{left:24.797856pt;}
.x28{left:30.663736pt;}
.x37{left:31.720000pt;}
.x38{left:37.440000pt;}
.x36{left:40.154667pt;}
.x39{left:42.240000pt;}
.x1f{left:43.535920pt;}
.x29{left:44.687650pt;}
.x34{left:47.080000pt;}
.x33{left:49.914667pt;}
.x35{left:52.640000pt;}
.x26{left:53.540676pt;}
.x1a{left:57.185333pt;}
.x27{left:60.489056pt;}
.x2b{left:65.173849pt;}
.x1e{left:89.387580pt;}
.x2e{left:106.592000pt;}
.x1{left:113.472000pt;}
.x2c{left:129.346368pt;}
.x1d{left:132.199743pt;}
.x21{left:148.546667pt;}
.x1c{left:158.660087pt;}
.x8{left:161.466667pt;}
.x23{left:169.466667pt;}
.x18{left:172.313749pt;}
.x19{left:174.452445pt;}
.x1b{left:187.171313pt;}
.x2{left:188.506667pt;}
.x10{left:191.946667pt;}
.x17{left:196.051859pt;}
.x11{left:204.826667pt;}
.x30{left:221.786667pt;}
.x2d{left:268.546667pt;}
.x9{left:269.506667pt;}
.xb{left:274.466667pt;}
.xa{left:277.506667pt;}
.x20{left:317.506667pt;}
.xc{left:331.426667pt;}
.x13{left:389.975799pt;}
.x24{left:395.613333pt;}
.xd{left:399.280000pt;}
.x16{left:401.533333pt;}
.xf{left:412.253333pt;}
.x3{left:415.933333pt;}
.x31{left:444.573333pt;}
.x25{left:485.533333pt;}
.x7{left:555.653333pt;}
.x32{left:567.653333pt;}
.x5{left:589.573333pt;}
.x14{left:604.293333pt;}
.x4{left:615.493333pt;}
.x6{left:621.733333pt;}
}




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