
    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_27899e83bf4f369b27447b4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_cd54385b96a50fd982b824f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.073242;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_88ec5472044325b9c48f4521.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d11dc8044bc235704872b239.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_3ed8ca8bab9ba6b6ee29510b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_e82f1736391e32c2f6cccace.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7aeb57d2473cdce999e23fb3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.896973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2efb731f223a99384805fdac.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m3{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:54.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018880px;}
.ls5{letter-spacing:0.020400px;}
.lsb{letter-spacing:3.633600px;}
.ls4{letter-spacing:4.337460px;}
.ls8{letter-spacing:6.519420px;}
.lsc{letter-spacing:7.223280px;}
.lsa{letter-spacing:7.246740px;}
.ls3{letter-spacing:14.449620px;}
.lsd{letter-spacing:17.312040px;}
.ls2{letter-spacing:34.018968px;}
.ls6{letter-spacing:198.204900px;}
.ls7{letter-spacing:198.228300px;}
.ls9{letter-spacing:401.433900px;}
.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;}
}
.ws1{word-spacing:-17.998500px;}
.ws0{word-spacing:0.000000px;}
._3e{margin-left:-15.781494px;}
._8b{margin-left:-11.698355px;}
._8c{margin-left:-9.663581px;}
._46{margin-left:-8.660742px;}
._3d{margin-left:-5.663284px;}
._5b{margin-left:-2.163420px;}
._3{margin-left:-1.105010px;}
._2{width:1.040672px;}
._4a{width:2.366740px;}
._49{width:3.390963px;}
._4c{width:4.820326px;}
._54{width:5.913787px;}
._55{width:6.951094px;}
._4e{width:8.403169px;}
._3a{width:9.629897px;}
._1{width:10.964542px;}
._0{width:12.150283px;}
._4d{width:13.589212px;}
._5d{width:14.676613px;}
._60{width:16.621855px;}
._66{width:19.128616px;}
._5e{width:20.131975px;}
._5f{width:21.376872px;}
._56{width:22.780301px;}
._62{width:23.894179px;}
._52{width:25.203067px;}
._65{width:27.161321px;}
._64{width:28.361276px;}
._57{width:29.361614px;}
._58{width:30.425960px;}
._5c{width:31.989315px;}
._4b{width:33.228497px;}
._51{width:34.740216px;}
._48{width:36.191899px;}
._61{width:37.279969px;}
._6e{width:38.813459px;}
._47{width:40.621049px;}
._6d{width:42.573436px;}
._73{width:43.812264px;}
._75{width:44.898258px;}
._69{width:45.956582px;}
._6a{width:47.111086px;}
._63{width:48.221601px;}
._72{width:49.335292px;}
._3b{width:50.348006px;}
._6f{width:51.639344px;}
._7e{width:52.672474px;}
._5a{width:53.815410px;}
._59{width:55.001865px;}
._53{width:56.585348px;}
._4f{width:58.183016px;}
._50{width:59.766163px;}
._67{width:63.782470px;}
._68{width:65.726659px;}
._70{width:67.124425px;}
._71{width:68.535100px;}
._36{width:74.511895px;}
._74{width:81.101284px;}
._6c{width:82.702435px;}
._81{width:84.297131px;}
._8d{width:88.038852px;}
._7f{width:94.212726px;}
._80{width:95.470727px;}
._45{width:105.342563px;}
._39{width:115.801587px;}
._44{width:117.330314px;}
._43{width:120.475503px;}
._3c{width:126.639831px;}
._38{width:154.666250px;}
._40{width:172.470381px;}
._3f{width:180.206209px;}
._84{width:196.791486px;}
._37{width:198.228280px;}
._7a{width:257.262473px;}
._85{width:279.733119px;}
._86{width:305.491410px;}
._87{width:309.607051px;}
._89{width:329.231865px;}
._78{width:377.655208px;}
._25{width:386.387138px;}
._79{width:393.683424px;}
._8a{width:421.224034px;}
._7d{width:478.260828px;}
._7b{width:524.003172px;}
._15{width:546.342644px;}
._9{width:550.102574px;}
._83{width:580.540775px;}
._77{width:581.684426px;}
._76{width:622.743199px;}
._2b{width:639.246950px;}
._7c{width:655.171157px;}
._30{width:657.438981px;}
._88{width:714.228144px;}
._41{width:719.202174px;}
._2e{width:789.296993px;}
._17{width:818.484847px;}
._6b{width:835.929172px;}
._82{width:1049.362946px;}
._29{width:1054.467053px;}
._1a{width:1120.409494px;}
._12{width:1130.223199px;}
._7{width:1138.444481px;}
._18{width:1208.342487px;}
._42{width:1279.243500px;}
._1c{width:1288.263484px;}
._11{width:1298.183330px;}
._21{width:1319.044159px;}
._34{width:1372.454162px;}
._1e{width:1377.424812px;}
._33{width:1380.055834px;}
._24{width:1386.319312px;}
._e{width:1394.015001px;}
._10{width:1408.197831px;}
._22{width:1430.064676px;}
._a{width:1436.275491px;}
._35{width:1440.416498px;}
._c{width:1460.249493px;}
._16{width:1484.295489px;}
._32{width:1503.270324px;}
._1d{width:1517.381148px;}
._19{width:1548.161824px;}
._13{width:1576.992168px;}
._27{width:1578.039334px;}
._23{width:1590.062332px;}
._8{width:1601.254158px;}
._20{width:1609.245492px;}
._d{width:1618.964670px;}
._2a{width:1639.266990px;}
._1f{width:1648.161490px;}
._14{width:1661.009166px;}
._4{width:1668.193834px;}
._f{width:1679.280340px;}
._2f{width:1715.148666px;}
._2d{width:1731.275322px;}
._1b{width:1744.174498px;}
._2c{width:1775.119668px;}
._b{width:1811.260656px;}
._31{width:1880.099170px;}
._28{width:1931.202660px;}
._26{width:1993.090512px;}
._5{width:2008.149502px;}
._6{width:2017.253502px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(41,37,38);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.879760px;}
.fs3{font-size:59.755020px;}
.fs1{font-size:66.234600px;}
.fs2{font-size:69.114000px;}
.fs0{font-size:71.994000px;}
.y0{bottom:0.000000px;}
.y12b{bottom:134.672250px;}
.y188{bottom:134.853600px;}
.ye1{bottom:137.372850px;}
.y122{bottom:137.555100px;}
.y27{bottom:141.872850px;}
.y40{bottom:141.873000px;}
.y16e{bottom:141.873450px;}
.yfd{bottom:143.132550px;}
.y129{bottom:146.372550px;}
.y109{bottom:146.372700px;}
.ydb{bottom:146.372850px;}
.y143{bottom:148.535100px;}
.yb7{bottom:150.872850px;}
.y7e{bottom:156.094500px;}
.y187{bottom:161.853600px;}
.ye0{bottom:164.372850px;}
.y121{bottom:164.555100px;}
.y26{bottom:168.872850px;}
.y3f{bottom:168.873000px;}
.y16d{bottom:168.873450px;}
.y1ad{bottom:168.873600px;}
.yfc{bottom:170.132550px;}
.y1a1{bottom:171.750300px;}
.y128{bottom:173.372550px;}
.y108{bottom:173.372700px;}
.yda{bottom:173.372850px;}
.y142{bottom:175.529250px;}
.y7d{bottom:176.613000px;}
.yb6{bottom:177.872850px;}
.y1c2{bottom:185.068350px;}
.y186{bottom:188.847750px;}
.y15c{bottom:189.568500px;}
.ydf{bottom:191.367000px;}
.y120{bottom:191.549250px;}
.y25{bottom:195.867000px;}
.y16c{bottom:195.867600px;}
.y1ac{bottom:195.867750px;}
.y7c{bottom:196.048350px;}
.yfb{bottom:197.126700px;}
.y1a0{bottom:198.750300px;}
.y127{bottom:200.366700px;}
.y107{bottom:200.366850px;}
.yd9{bottom:200.367000px;}
.y141{bottom:202.529250px;}
.yb5{bottom:204.867000px;}
.y185{bottom:215.847750px;}
.y15b{bottom:216.568500px;}
.y7b{bottom:216.749550px;}
.yde{bottom:218.367000px;}
.y11f{bottom:218.549250px;}
.y24{bottom:222.867000px;}
.y16b{bottom:222.867600px;}
.y1ab{bottom:222.867750px;}
.yfa{bottom:224.126700px;}
.y19f{bottom:225.744450px;}
.y126{bottom:227.366700px;}
.y106{bottom:227.366850px;}
.y93{bottom:227.367000px;}
.y140{bottom:229.529250px;}
.yb4{bottom:231.867000px;}
.y1c1{bottom:232.945350px;}
.y7a{bottom:237.444900px;}
.y184{bottom:242.847750px;}
.y15a{bottom:243.568500px;}
.ydd{bottom:245.367000px;}
.y11e{bottom:245.543400px;}
.y23{bottom:249.867000px;}
.y16a{bottom:249.867600px;}
.y1aa{bottom:249.867750px;}
.yf9{bottom:251.126700px;}
.y19e{bottom:252.744450px;}
.y125{bottom:254.366700px;}
.y105{bottom:254.366850px;}
.yd8{bottom:254.367000px;}
.y13f{bottom:256.523400px;}
.y79{bottom:258.146100px;}
.yb3{bottom:258.861150px;}
.y159{bottom:268.582500px;}
.y183{bottom:269.841900px;}
.y92{bottom:272.361150px;}
.y11d{bottom:272.543400px;}
.y3e{bottom:276.861000px;}
.y22{bottom:276.861150px;}
.y169{bottom:276.861750px;}
.y1a9{bottom:276.861900px;}
.y78{bottom:278.841450px;}
.y19d{bottom:279.744450px;}
.y1c0{bottom:281.004000px;}
.y124{bottom:281.360850px;}
.y104{bottom:281.361000px;}
.yd7{bottom:281.361150px;}
.yf8{bottom:282.620850px;}
.y13e{bottom:283.523400px;}
.yb2{bottom:285.861150px;}
.y158{bottom:286.939800px;}
.y12a{bottom:290.361150px;}
.y182{bottom:296.841900px;}
.y91{bottom:299.361150px;}
.y77{bottom:299.542650px;}
.y11c{bottom:299.543400px;}
.y3d{bottom:303.861000px;}
.y21{bottom:303.861150px;}
.y168{bottom:303.861750px;}
.y1a8{bottom:303.861900px;}
.y19c{bottom:306.738600px;}
.y157{bottom:307.641000px;}
.y123{bottom:308.360850px;}
.y103{bottom:308.361000px;}
.yd6{bottom:308.361150px;}
.y13d{bottom:310.517550px;}
.yb1{bottom:312.861150px;}
.y76{bottom:320.238000px;}
.ydc{bottom:321.861150px;}
.y181{bottom:323.836050px;}
.y90{bottom:326.361150px;}
.y11b{bottom:326.537550px;}
.yf7{bottom:327.620850px;}
.y20{bottom:330.855300px;}
.y167{bottom:330.855900px;}
.y1a7{bottom:330.856050px;}
.y153{bottom:332.835750px;}
.y19b{bottom:333.738600px;}
.y155{bottom:334.277100px;}
.y102{bottom:335.355000px;}
.yd5{bottom:335.355300px;}
.y13c{bottom:337.517550px;}
.yb0{bottom:339.855300px;}
.y75{bottom:340.939200px;}
.y1bf{bottom:341.478000px;}
.y180{bottom:350.836050px;}
.y152{bottom:351.738150px;}
.y8f{bottom:353.355300px;}
.y11a{bottom:353.537550px;}
.yf6{bottom:354.615000px;}
.y3c{bottom:357.855000px;}
.y1f{bottom:357.855300px;}
.y166{bottom:357.855900px;}
.y1a6{bottom:357.856050px;}
.y19a{bottom:360.738600px;}
.y74{bottom:361.634550px;}
.y101{bottom:362.355000px;}
.yd4{bottom:362.355300px;}
.y13b{bottom:364.517550px;}
.yaf{bottom:366.855300px;}
.y151{bottom:370.816350px;}
.y17f{bottom:377.836050px;}
.y8e{bottom:380.355300px;}
.y119{bottom:380.531700px;}
.y156{bottom:381.615000px;}
.y73{bottom:382.335750px;}
.y3b{bottom:384.855000px;}
.y1e{bottom:384.855300px;}
.y165{bottom:384.855900px;}
.y1a5{bottom:384.856050px;}
.y1be{bottom:385.395000px;}
.yf5{bottom:386.654550px;}
.y199{bottom:387.732750px;}
.yff{bottom:389.354850px;}
.y100{bottom:389.355000px;}
.yd3{bottom:389.355300px;}
.y150{bottom:389.712900px;}
.y13a{bottom:391.511700px;}
.yae{bottom:393.855300px;}
.y72{bottom:403.031100px;}
.y17e{bottom:404.830200px;}
.y8d{bottom:407.349450px;}
.y118{bottom:407.531700px;}
.y14f{bottom:408.791100px;}
.y3a{bottom:411.849000px;}
.y1d{bottom:411.849450px;}
.y164{bottom:411.850050px;}
.y1a4{bottom:411.850200px;}
.y1bd{bottom:412.389000px;}
.yf4{bottom:413.648700px;}
.y198{bottom:414.732750px;}
.yfe{bottom:416.349000px;}
.yd2{bottom:416.349450px;}
.y139{bottom:418.511700px;}
.yad{bottom:420.849450px;}
.y71{bottom:423.732300px;}
.y154{bottom:429.128700px;}
.y14e{bottom:429.129000px;}
.y17d{bottom:431.830200px;}
.y8c{bottom:434.349450px;}
.y117{bottom:434.531700px;}
.y39{bottom:438.849000px;}
.y1c{bottom:438.849450px;}
.y163{bottom:438.850050px;}
.y48{bottom:438.850200px;}
.yf3{bottom:440.648700px;}
.y197{bottom:441.726900px;}
.yd1{bottom:443.349450px;}
.y70{bottom:444.246000px;}
.y138{bottom:445.505850px;}
.yac{bottom:447.849450px;}
.y1bc{bottom:456.310500px;}
.y8b{bottom:461.349450px;}
.y116{bottom:461.525850px;}
.y17c{bottom:463.330200px;}
.y6f{bottom:464.947200px;}
.y14d{bottom:465.304500px;}
.y38{bottom:465.849000px;}
.y1b{bottom:465.849450px;}
.y162{bottom:465.850050px;}
.y47{bottom:465.850200px;}
.yf2{bottom:467.648700px;}
.y196{bottom:468.726900px;}
.y1bb{bottom:469.804500px;}
.yd0{bottom:470.343600px;}
.y137{bottom:472.505850px;}
.yab{bottom:474.843600px;}
.y12c{bottom:479.343600px;}
.y6e{bottom:485.642550px;}
.y8a{bottom:488.343600px;}
.y115{bottom:488.525850px;}
.y1a{bottom:492.843600px;}
.y161{bottom:492.844200px;}
.y46{bottom:492.844350px;}
.y37{bottom:492.844500px;}
.yf1{bottom:494.642850px;}
.y195{bottom:495.726900px;}
.yc8{bottom:497.343600px;}
.y149{bottom:499.505250px;}
.y136{bottom:499.505850px;}
.y14b{bottom:500.940750px;}
.yaa{bottom:501.843600px;}
.y6d{bottom:506.343750px;}
.y17b{bottom:508.324350px;}
.y89{bottom:515.343600px;}
.y114{bottom:515.525850px;}
.y148{bottom:518.583450px;}
.y19{bottom:519.843600px;}
.y160{bottom:519.844200px;}
.y45{bottom:519.844350px;}
.y36{bottom:519.844500px;}
.yf0{bottom:521.642850px;}
.y194{bottom:522.721050px;}
.yc7{bottom:524.343600px;}
.y135{bottom:526.500000px;}
.y6c{bottom:527.039100px;}
.y1ba{bottom:527.403000px;}
.ya9{bottom:528.843600px;}
.y147{bottom:537.480000px;}
.y88{bottom:542.337750px;}
.y113{bottom:542.520000px;}
.y18{bottom:546.837750px;}
.y15f{bottom:546.838350px;}
.y35{bottom:546.838500px;}
.y6b{bottom:547.740300px;}
.y14c{bottom:548.460300px;}
.yef{bottom:548.642850px;}
.y193{bottom:549.721050px;}
.yc6{bottom:551.337750px;}
.y17a{bottom:553.318500px;}
.y134{bottom:553.500000px;}
.y1b9{bottom:554.403000px;}
.ya8{bottom:555.837750px;}
.y146{bottom:556.558200px;}
.y6a{bottom:568.435650px;}
.y87{bottom:569.337750px;}
.y112{bottom:569.520000px;}
.y17{bottom:573.837750px;}
.y15e{bottom:573.838350px;}
.y34{bottom:573.838500px;}
.y145{bottom:575.454750px;}
.yee{bottom:575.637000px;}
.y192{bottom:576.715200px;}
.yc5{bottom:578.337750px;}
.y133{bottom:580.500000px;}
.ya7{bottom:582.837750px;}
.ycf{bottom:587.337750px;}
.y69{bottom:589.136850px;}
.y1b8{bottom:592.915500px;}
.y14a{bottom:595.798200px;}
.y144{bottom:595.798500px;}
.y86{bottom:596.337750px;}
.y111{bottom:596.514150px;}
.y1b7{bottom:598.318500px;}
.y16{bottom:600.837750px;}
.y15d{bottom:600.838350px;}
.y33{bottom:600.838500px;}
.yed{bottom:602.637000px;}
.y179{bottom:603.356850px;}
.y191{bottom:603.715200px;}
.yc4{bottom:605.337750px;}
.y132{bottom:607.494150px;}
.ya6{bottom:609.831900px;}
.y68{bottom:609.832200px;}
.y85{bottom:623.331900px;}
.y110{bottom:623.514150px;}
.y1b6{bottom:625.312500px;}
.y15{bottom:627.831900px;}
.y32{bottom:627.832500px;}
.y178{bottom:630.351000px;}
.y67{bottom:630.533400px;}
.y190{bottom:630.715200px;}
.yc3{bottom:632.331900px;}
.y131{bottom:634.494150px;}
.ya5{bottom:636.831900px;}
.yec{bottom:638.993850px;}
.y84{bottom:650.331900px;}
.y10f{bottom:650.514150px;}
.y66{bottom:651.234600px;}
.y14{bottom:654.831900px;}
.y31{bottom:654.832500px;}
.y18f{bottom:657.709350px;}
.yc2{bottom:659.331900px;}
.y130{bottom:661.488300px;}
.ya4{bottom:663.831900px;}
.yeb{bottom:665.988000px;}
.y177{bottom:666.709500px;}
.y1b2{bottom:667.969350px;}
.y1b4{bottom:669.228000px;}
.y65{bottom:671.929950px;}
.y83{bottom:677.331900px;}
.y10e{bottom:677.508300px;}
.y13{bottom:681.826050px;}
.y30{bottom:681.826500px;}
.y1b5{bottom:682.728000px;}
.yc1{bottom:686.326050px;}
.y12f{bottom:688.488300px;}
.y18e{bottom:689.209350px;}
.ya3{bottom:690.826050px;}
.y64{bottom:692.631150px;}
.yea{bottom:692.988000px;}
.y176{bottom:693.709500px;}
.y1b1{bottom:694.969350px;}
.y1a2{bottom:695.326050px;}
.y1b3{bottom:696.228000px;}
.y82{bottom:704.326050px;}
.y10d{bottom:704.508300px;}
.y12{bottom:708.826050px;}
.y2f{bottom:708.826500px;}
.yc0{bottom:713.326050px;}
.y63{bottom:713.326500px;}
.y12e{bottom:715.488300px;}
.ya2{bottom:717.826050px;}
.y1b0{bottom:721.963500px;}
.y175{bottom:729.885000px;}
.y81{bottom:731.326050px;}
.y10c{bottom:731.502450px;}
.ye9{bottom:732.943350px;}
.y18d{bottom:734.203500px;}
.y62{bottom:734.923500px;}
.y11{bottom:735.826050px;}
.y2e{bottom:735.826500px;}
.ybf{bottom:740.326050px;}
.y12d{bottom:742.482450px;}
.ya1{bottom:744.826050px;}
.y1af{bottom:748.963500px;}
.y174{bottom:756.885000px;}
.y80{bottom:758.320200px;}
.y10b{bottom:758.502450px;}
.ye8{bottom:759.943350px;}
.y18c{bottom:761.203500px;}
.y10{bottom:762.820200px;}
.y2d{bottom:762.820500px;}
.y61{bottom:766.423500px;}
.ybe{bottom:767.320200px;}
.ya0{bottom:771.820200px;}
.y1ae{bottom:775.963500px;}
.y7f{bottom:785.320200px;}
.y10a{bottom:785.502450px;}
.ye7{bottom:786.937500px;}
.yf{bottom:789.820200px;}
.y2c{bottom:789.820500px;}
.y173{bottom:793.241850px;}
.y18b{bottom:793.242000px;}
.ybd{bottom:794.320200px;}
.y9f{bottom:798.820200px;}
.y60{bottom:811.417650px;}
.y53{bottom:812.320200px;}
.ye{bottom:816.820200px;}
.y2b{bottom:816.820500px;}
.y172{bottom:820.236000px;}
.ybc{bottom:821.314350px;}
.y9e{bottom:825.814350px;}
.ye6{bottom:829.594500px;}
.y5f{bottom:837.515250px;}
.y52{bottom:839.314350px;}
.yd{bottom:843.814350px;}
.y2a{bottom:843.814500px;}
.ybb{bottom:848.314350px;}
.y9d{bottom:852.814350px;}
.y171{bottom:856.594350px;}
.ye5{bottom:856.594500px;}
.y189{bottom:857.314350px;}
.y5e{bottom:858.216450px;}
.y18a{bottom:865.775250px;}
.y51{bottom:866.314350px;}
.yc{bottom:870.814350px;}
.y44{bottom:870.814500px;}
.yba{bottom:875.314350px;}
.y5d{bottom:878.911800px;}
.y9c{bottom:879.814350px;}
.y170{bottom:883.594350px;}
.ye4{bottom:892.769400px;}
.y50{bottom:893.308500px;}
.yb{bottom:897.808500px;}
.y5c{bottom:899.613000px;}
.yb9{bottom:902.308500px;}
.y9b{bottom:906.808500px;}
.y16f{bottom:910.588500px;}
.ye3{bottom:919.769400px;}
.y5b{bottom:920.308350px;}
.y4f{bottom:920.308500px;}
.ya{bottom:924.808500px;}
.yb8{bottom:929.308500px;}
.y9a{bottom:933.808500px;}
.y5a{bottom:941.009550px;}
.ye2{bottom:946.769400px;}
.y4e{bottom:947.308500px;}
.y9{bottom:951.808500px;}
.yce{bottom:956.308500px;}
.y99{bottom:960.802650px;}
.y59{bottom:961.704900px;}
.y4d{bottom:974.302650px;}
.y1a3{bottom:978.802500px;}
.y8{bottom:978.802650px;}
.y58{bottom:982.406100px;}
.ycd{bottom:983.302650px;}
.y98{bottom:987.802650px;}
.y4c{bottom:1001.302650px;}
.y57{bottom:1003.101450px;}
.y29{bottom:1005.802500px;}
.y7{bottom:1005.802650px;}
.ycc{bottom:1010.302650px;}
.y97{bottom:1014.802650px;}
.y56{bottom:1023.802650px;}
.y4b{bottom:1028.302650px;}
.y43{bottom:1032.796500px;}
.y6{bottom:1032.796800px;}
.ycb{bottom:1037.296800px;}
.y96{bottom:1041.796800px;}
.y55{bottom:1044.140550px;}
.y4a{bottom:1055.296800px;}
.y28{bottom:1059.796500px;}
.y5{bottom:1059.796800px;}
.yca{bottom:1064.296800px;}
.y54{bottom:1064.835900px;}
.y95{bottom:1068.796800px;}
.y49{bottom:1082.296800px;}
.y42{bottom:1086.796500px;}
.y4{bottom:1086.796800px;}
.yc9{bottom:1095.796800px;}
.y94{bottom:1100.296800px;}
.y41{bottom:1113.790500px;}
.y3{bottom:1113.790950px;}
.y2{bottom:1150.687500px;}
.y1{bottom:1177.687500px;}
.hb{height:0.721500px;}
.hc{height:2.401675px;}
.ha{height:39.826954px;}
.h3{height:44.145620px;}
.h8{height:49.038882px;}
.h9{height:49.834753px;}
.h7{height:49.988021px;}
.h5{height:55.238621px;}
.h4{height:56.790995px;}
.h6{height:57.639996px;}
.h1{height:60.041871px;}
.h2{height:61.729230px;}
.he{height:114.017871px;}
.hd{height:114.041871px;}
.h0{height:1263.000000px;}
.w1{width:0.363000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.668731px;}
.x31{left:142.066350px;}
.x35{left:147.111300px;}
.x33{left:151.066500px;}
.x32{left:152.508000px;}
.x36{left:153.586500px;}
.xf{left:154.669500px;}
.x24{left:158.988000px;}
.x2d{left:160.066500px;}
.x1a{left:164.748000px;}
.x22{left:166.189500px;}
.x21{left:177.709500px;}
.x14{left:181.663588px;}
.x11{left:190.663500px;}
.x20{left:201.286947px;}
.x8{left:212.261145px;}
.x37{left:235.657220px;}
.x16{left:246.463500px;}
.x12{left:247.540500px;}
.x4{left:278.319331px;}
.x9{left:306.755272px;}
.x25{left:310.177500px;}
.x34{left:320.968500px;}
.x23{left:324.574500px;}
.x26{left:327.276000px;}
.x3{left:332.852561px;}
.x17{left:344.010000px;}
.x1e{left:347.613267px;}
.x5{left:349.768581px;}
.x18{left:365.068500px;}
.x19{left:370.653000px;}
.x10{left:391.887000px;}
.xc{left:393.509585px;}
.x7{left:396.028287px;}
.x27{left:399.270000px;}
.x13{left:437.607000px;}
.xd{left:442.101000px;}
.x6{left:444.801721px;}
.x1{left:446.601000px;}
.x1b{left:460.640538px;}
.x15{left:462.082274px;}
.x28{left:486.738000px;}
.x2e{left:490.159500px;}
.x29{left:512.296500px;}
.x30{left:528.135000px;}
.x1d{left:548.655000px;}
.x1c{left:558.193284px;}
.x2a{left:560.355000px;}
.xa{left:564.134190px;}
.x1f{left:570.252250px;}
.xb{left:613.089234px;}
.x2b{left:669.246000px;}
.x2f{left:687.784500px;}
.x2c{left:733.318500px;}
.xe{left:765.539033px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:48.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016782pt;}
.ls5{letter-spacing:0.018133pt;}
.lsb{letter-spacing:3.229867pt;}
.ls4{letter-spacing:3.855520pt;}
.ls8{letter-spacing:5.795040pt;}
.lsc{letter-spacing:6.420693pt;}
.lsa{letter-spacing:6.441547pt;}
.ls3{letter-spacing:12.844107pt;}
.lsd{letter-spacing:15.388480pt;}
.ls2{letter-spacing:30.239083pt;}
.ls6{letter-spacing:176.182133pt;}
.ls7{letter-spacing:176.202933pt;}
.ls9{letter-spacing:356.830133pt;}
.ws1{word-spacing:-15.998667pt;}
.ws0{word-spacing:0.000000pt;}
._3e{margin-left:-14.027995pt;}
._8b{margin-left:-10.398538pt;}
._8c{margin-left:-8.589850pt;}
._46{margin-left:-7.698437pt;}
._3d{margin-left:-5.034030pt;}
._5b{margin-left:-1.923040pt;}
._3{margin-left:-0.982231pt;}
._2{width:0.925042pt;}
._4a{width:2.103769pt;}
._49{width:3.014190pt;}
._4c{width:4.284734pt;}
._54{width:5.256699pt;}
._55{width:6.178750pt;}
._4e{width:7.469483pt;}
._3a{width:8.559909pt;}
._1{width:9.746260pt;}
._0{width:10.800252pt;}
._4d{width:12.079299pt;}
._5d{width:13.045878pt;}
._60{width:14.774982pt;}
._66{width:17.003214pt;}
._5e{width:17.895089pt;}
._5f{width:19.001664pt;}
._56{width:20.249156pt;}
._62{width:21.239270pt;}
._52{width:22.402726pt;}
._65{width:24.143396pt;}
._64{width:25.210023pt;}
._57{width:26.099213pt;}
._58{width:27.045298pt;}
._5c{width:28.434947pt;}
._4b{width:29.536442pt;}
._51{width:30.880192pt;}
._48{width:32.170577pt;}
._61{width:33.137750pt;}
._6e{width:34.500853pt;}
._47{width:36.107599pt;}
._6d{width:37.843054pt;}
._73{width:38.944234pt;}
._75{width:39.909562pt;}
._69{width:40.850295pt;}
._6a{width:41.876520pt;}
._63{width:42.863646pt;}
._72{width:43.853592pt;}
._3b{width:44.753783pt;}
._6f{width:45.901639pt;}
._7e{width:46.819977pt;}
._5a{width:47.835920pt;}
._59{width:48.890547pt;}
._53{width:50.298087pt;}
._4f{width:51.718237pt;}
._50{width:53.125478pt;}
._67{width:56.695529pt;}
._68{width:58.423697pt;}
._70{width:59.666156pt;}
._71{width:60.920088pt;}
._36{width:66.232795pt;}
._74{width:72.090030pt;}
._6c{width:73.513276pt;}
._81{width:74.930783pt;}
._8d{width:78.256758pt;}
._7f{width:83.744645pt;}
._80{width:84.862868pt;}
._45{width:93.637834pt;}
._39{width:102.934744pt;}
._44{width:104.293612pt;}
._43{width:107.089336pt;}
._3c{width:112.568739pt;}
._38{width:137.481111pt;}
._40{width:153.307005pt;}
._3f{width:160.183297pt;}
._84{width:174.925765pt;}
._37{width:176.202915pt;}
._7a{width:228.677754pt;}
._85{width:248.651661pt;}
._86{width:271.547920pt;}
._87{width:275.206268pt;}
._89{width:292.650547pt;}
._78{width:335.693519pt;}
._25{width:343.455234pt;}
._79{width:349.940821pt;}
._8a{width:374.421363pt;}
._7d{width:425.120736pt;}
._7b{width:465.780597pt;}
._15{width:485.637906pt;}
._9{width:488.980066pt;}
._83{width:516.036245pt;}
._77{width:517.052824pt;}
._76{width:553.549510pt;}
._2b{width:568.219511pt;}
._7c{width:582.374362pt;}
._30{width:584.390206pt;}
._88{width:634.869461pt;}
._41{width:639.290821pt;}
._2e{width:701.597328pt;}
._17{width:727.542087pt;}
._6b{width:743.048152pt;}
._82{width:932.767063pt;}
._29{width:937.304047pt;}
._1a{width:995.919550pt;}
._12{width:1004.642844pt;}
._7{width:1011.950650pt;}
._18{width:1074.082210pt;}
._42{width:1137.105333pt;}
._1c{width:1145.123096pt;}
._11{width:1153.940738pt;}
._21{width:1172.483697pt;}
._34{width:1219.959255pt;}
._1e{width:1224.377611pt;}
._33{width:1226.716296pt;}
._24{width:1232.283832pt;}
._e{width:1239.124445pt;}
._10{width:1251.731405pt;}
._22{width:1271.168600pt;}
._a{width:1276.689325pt;}
._35{width:1280.370220pt;}
._c{width:1297.999549pt;}
._16{width:1319.373768pt;}
._32{width:1336.240288pt;}
._1d{width:1348.783243pt;}
._19{width:1376.143843pt;}
._13{width:1401.770816pt;}
._27{width:1402.701630pt;}
._23{width:1413.388739pt;}
._8{width:1423.337029pt;}
._20{width:1430.440437pt;}
._d{width:1439.079707pt;}
._2a{width:1457.126213pt;}
._1f{width:1465.032435pt;}
._14{width:1476.452592pt;}
._4{width:1482.838963pt;}
._f{width:1492.693636pt;}
._2f{width:1524.576592pt;}
._2d{width:1538.911397pt;}
._1b{width:1550.377331pt;}
._2c{width:1577.884149pt;}
._b{width:1610.009472pt;}
._31{width:1671.199262pt;}
._28{width:1716.624587pt;}
._26{width:1771.636011pt;}
._5{width:1785.021779pt;}
._6{width:1793.114224pt;}
.fs4{font-size:2.559787pt;}
.fs3{font-size:53.115573pt;}
.fs1{font-size:58.875200pt;}
.fs2{font-size:61.434667pt;}
.fs0{font-size:63.994667pt;}
.y0{bottom:0.000000pt;}
.y12b{bottom:119.708667pt;}
.y188{bottom:119.869867pt;}
.ye1{bottom:122.109200pt;}
.y122{bottom:122.271200pt;}
.y27{bottom:126.109200pt;}
.y40{bottom:126.109333pt;}
.y16e{bottom:126.109733pt;}
.yfd{bottom:127.228933pt;}
.y129{bottom:130.108933pt;}
.y109{bottom:130.109067pt;}
.ydb{bottom:130.109200pt;}
.y143{bottom:132.031200pt;}
.yb7{bottom:134.109200pt;}
.y7e{bottom:138.750667pt;}
.y187{bottom:143.869867pt;}
.ye0{bottom:146.109200pt;}
.y121{bottom:146.271200pt;}
.y26{bottom:150.109200pt;}
.y3f{bottom:150.109333pt;}
.y16d{bottom:150.109733pt;}
.y1ad{bottom:150.109867pt;}
.yfc{bottom:151.228933pt;}
.y1a1{bottom:152.666933pt;}
.y128{bottom:154.108933pt;}
.y108{bottom:154.109067pt;}
.yda{bottom:154.109200pt;}
.y142{bottom:156.026000pt;}
.y7d{bottom:156.989333pt;}
.yb6{bottom:158.109200pt;}
.y1c2{bottom:164.505200pt;}
.y186{bottom:167.864667pt;}
.y15c{bottom:168.505333pt;}
.ydf{bottom:170.104000pt;}
.y120{bottom:170.266000pt;}
.y25{bottom:174.104000pt;}
.y16c{bottom:174.104533pt;}
.y1ac{bottom:174.104667pt;}
.y7c{bottom:174.265200pt;}
.yfb{bottom:175.223733pt;}
.y1a0{bottom:176.666933pt;}
.y127{bottom:178.103733pt;}
.y107{bottom:178.103867pt;}
.yd9{bottom:178.104000pt;}
.y141{bottom:180.026000pt;}
.yb5{bottom:182.104000pt;}
.y185{bottom:191.864667pt;}
.y15b{bottom:192.505333pt;}
.y7b{bottom:192.666267pt;}
.yde{bottom:194.104000pt;}
.y11f{bottom:194.266000pt;}
.y24{bottom:198.104000pt;}
.y16b{bottom:198.104533pt;}
.y1ab{bottom:198.104667pt;}
.yfa{bottom:199.223733pt;}
.y19f{bottom:200.661733pt;}
.y126{bottom:202.103733pt;}
.y106{bottom:202.103867pt;}
.y93{bottom:202.104000pt;}
.y140{bottom:204.026000pt;}
.yb4{bottom:206.104000pt;}
.y1c1{bottom:207.062533pt;}
.y7a{bottom:211.062133pt;}
.y184{bottom:215.864667pt;}
.y15a{bottom:216.505333pt;}
.ydd{bottom:218.104000pt;}
.y11e{bottom:218.260800pt;}
.y23{bottom:222.104000pt;}
.y16a{bottom:222.104533pt;}
.y1aa{bottom:222.104667pt;}
.yf9{bottom:223.223733pt;}
.y19e{bottom:224.661733pt;}
.y125{bottom:226.103733pt;}
.y105{bottom:226.103867pt;}
.yd8{bottom:226.104000pt;}
.y13f{bottom:228.020800pt;}
.y79{bottom:229.463200pt;}
.yb3{bottom:230.098800pt;}
.y159{bottom:238.740000pt;}
.y183{bottom:239.859467pt;}
.y92{bottom:242.098800pt;}
.y11d{bottom:242.260800pt;}
.y3e{bottom:246.098667pt;}
.y22{bottom:246.098800pt;}
.y169{bottom:246.099333pt;}
.y1a9{bottom:246.099467pt;}
.y78{bottom:247.859067pt;}
.y19d{bottom:248.661733pt;}
.y1c0{bottom:249.781333pt;}
.y124{bottom:250.098533pt;}
.y104{bottom:250.098667pt;}
.yd7{bottom:250.098800pt;}
.yf8{bottom:251.218533pt;}
.y13e{bottom:252.020800pt;}
.yb2{bottom:254.098800pt;}
.y158{bottom:255.057600pt;}
.y12a{bottom:258.098800pt;}
.y182{bottom:263.859467pt;}
.y91{bottom:266.098800pt;}
.y77{bottom:266.260133pt;}
.y11c{bottom:266.260800pt;}
.y3d{bottom:270.098667pt;}
.y21{bottom:270.098800pt;}
.y168{bottom:270.099333pt;}
.y1a8{bottom:270.099467pt;}
.y19c{bottom:272.656533pt;}
.y157{bottom:273.458667pt;}
.y123{bottom:274.098533pt;}
.y103{bottom:274.098667pt;}
.yd6{bottom:274.098800pt;}
.y13d{bottom:276.015600pt;}
.yb1{bottom:278.098800pt;}
.y76{bottom:284.656000pt;}
.ydc{bottom:286.098800pt;}
.y181{bottom:287.854267pt;}
.y90{bottom:290.098800pt;}
.y11b{bottom:290.255600pt;}
.yf7{bottom:291.218533pt;}
.y20{bottom:294.093600pt;}
.y167{bottom:294.094133pt;}
.y1a7{bottom:294.094267pt;}
.y153{bottom:295.854000pt;}
.y19b{bottom:296.656533pt;}
.y155{bottom:297.135200pt;}
.y102{bottom:298.093333pt;}
.yd5{bottom:298.093600pt;}
.y13c{bottom:300.015600pt;}
.yb0{bottom:302.093600pt;}
.y75{bottom:303.057067pt;}
.y1bf{bottom:303.536000pt;}
.y180{bottom:311.854267pt;}
.y152{bottom:312.656133pt;}
.y8f{bottom:314.093600pt;}
.y11a{bottom:314.255600pt;}
.yf6{bottom:315.213333pt;}
.y3c{bottom:318.093333pt;}
.y1f{bottom:318.093600pt;}
.y166{bottom:318.094133pt;}
.y1a6{bottom:318.094267pt;}
.y19a{bottom:320.656533pt;}
.y74{bottom:321.452933pt;}
.y101{bottom:322.093333pt;}
.yd4{bottom:322.093600pt;}
.y13b{bottom:324.015600pt;}
.yaf{bottom:326.093600pt;}
.y151{bottom:329.614533pt;}
.y17f{bottom:335.854267pt;}
.y8e{bottom:338.093600pt;}
.y119{bottom:338.250400pt;}
.y156{bottom:339.213333pt;}
.y73{bottom:339.854000pt;}
.y3b{bottom:342.093333pt;}
.y1e{bottom:342.093600pt;}
.y165{bottom:342.094133pt;}
.y1a5{bottom:342.094267pt;}
.y1be{bottom:342.573333pt;}
.yf5{bottom:343.692933pt;}
.y199{bottom:344.651333pt;}
.yff{bottom:346.093200pt;}
.y100{bottom:346.093333pt;}
.yd3{bottom:346.093600pt;}
.y150{bottom:346.411467pt;}
.y13a{bottom:348.010400pt;}
.yae{bottom:350.093600pt;}
.y72{bottom:358.249867pt;}
.y17e{bottom:359.849067pt;}
.y8d{bottom:362.088400pt;}
.y118{bottom:362.250400pt;}
.y14f{bottom:363.369867pt;}
.y3a{bottom:366.088000pt;}
.y1d{bottom:366.088400pt;}
.y164{bottom:366.088933pt;}
.y1a4{bottom:366.089067pt;}
.y1bd{bottom:366.568000pt;}
.yf4{bottom:367.687733pt;}
.y198{bottom:368.651333pt;}
.yfe{bottom:370.088000pt;}
.yd2{bottom:370.088400pt;}
.y139{bottom:372.010400pt;}
.yad{bottom:374.088400pt;}
.y71{bottom:376.650933pt;}
.y154{bottom:381.447733pt;}
.y14e{bottom:381.448000pt;}
.y17d{bottom:383.849067pt;}
.y8c{bottom:386.088400pt;}
.y117{bottom:386.250400pt;}
.y39{bottom:390.088000pt;}
.y1c{bottom:390.088400pt;}
.y163{bottom:390.088933pt;}
.y48{bottom:390.089067pt;}
.yf3{bottom:391.687733pt;}
.y197{bottom:392.646133pt;}
.yd1{bottom:394.088400pt;}
.y70{bottom:394.885333pt;}
.y138{bottom:396.005200pt;}
.yac{bottom:398.088400pt;}
.y1bc{bottom:405.609333pt;}
.y8b{bottom:410.088400pt;}
.y116{bottom:410.245200pt;}
.y17c{bottom:411.849067pt;}
.y6f{bottom:413.286400pt;}
.y14d{bottom:413.604000pt;}
.y38{bottom:414.088000pt;}
.y1b{bottom:414.088400pt;}
.y162{bottom:414.088933pt;}
.y47{bottom:414.089067pt;}
.yf2{bottom:415.687733pt;}
.y196{bottom:416.646133pt;}
.y1bb{bottom:417.604000pt;}
.yd0{bottom:418.083200pt;}
.y137{bottom:420.005200pt;}
.yab{bottom:422.083200pt;}
.y12c{bottom:426.083200pt;}
.y6e{bottom:431.682267pt;}
.y8a{bottom:434.083200pt;}
.y115{bottom:434.245200pt;}
.y1a{bottom:438.083200pt;}
.y161{bottom:438.083733pt;}
.y46{bottom:438.083867pt;}
.y37{bottom:438.084000pt;}
.yf1{bottom:439.682533pt;}
.y195{bottom:440.646133pt;}
.yc8{bottom:442.083200pt;}
.y149{bottom:444.004667pt;}
.y136{bottom:444.005200pt;}
.y14b{bottom:445.280667pt;}
.yaa{bottom:446.083200pt;}
.y6d{bottom:450.083333pt;}
.y17b{bottom:451.843867pt;}
.y89{bottom:458.083200pt;}
.y114{bottom:458.245200pt;}
.y148{bottom:460.963067pt;}
.y19{bottom:462.083200pt;}
.y160{bottom:462.083733pt;}
.y45{bottom:462.083867pt;}
.y36{bottom:462.084000pt;}
.yf0{bottom:463.682533pt;}
.y194{bottom:464.640933pt;}
.yc7{bottom:466.083200pt;}
.y135{bottom:468.000000pt;}
.y6c{bottom:468.479200pt;}
.y1ba{bottom:468.802667pt;}
.ya9{bottom:470.083200pt;}
.y147{bottom:477.760000pt;}
.y88{bottom:482.078000pt;}
.y113{bottom:482.240000pt;}
.y18{bottom:486.078000pt;}
.y15f{bottom:486.078533pt;}
.y35{bottom:486.078667pt;}
.y6b{bottom:486.880267pt;}
.y14c{bottom:487.520267pt;}
.yef{bottom:487.682533pt;}
.y193{bottom:488.640933pt;}
.yc6{bottom:490.078000pt;}
.y17a{bottom:491.838667pt;}
.y134{bottom:492.000000pt;}
.y1b9{bottom:492.802667pt;}
.ya8{bottom:494.078000pt;}
.y146{bottom:494.718400pt;}
.y6a{bottom:505.276133pt;}
.y87{bottom:506.078000pt;}
.y112{bottom:506.240000pt;}
.y17{bottom:510.078000pt;}
.y15e{bottom:510.078533pt;}
.y34{bottom:510.078667pt;}
.y145{bottom:511.515333pt;}
.yee{bottom:511.677333pt;}
.y192{bottom:512.635733pt;}
.yc5{bottom:514.078000pt;}
.y133{bottom:516.000000pt;}
.ya7{bottom:518.078000pt;}
.ycf{bottom:522.078000pt;}
.y69{bottom:523.677200pt;}
.y1b8{bottom:527.036000pt;}
.y14a{bottom:529.598400pt;}
.y144{bottom:529.598667pt;}
.y86{bottom:530.078000pt;}
.y111{bottom:530.234800pt;}
.y1b7{bottom:531.838667pt;}
.y16{bottom:534.078000pt;}
.y15d{bottom:534.078533pt;}
.y33{bottom:534.078667pt;}
.yed{bottom:535.677333pt;}
.y179{bottom:536.317200pt;}
.y191{bottom:536.635733pt;}
.yc4{bottom:538.078000pt;}
.y132{bottom:539.994800pt;}
.ya6{bottom:542.072800pt;}
.y68{bottom:542.073067pt;}
.y85{bottom:554.072800pt;}
.y110{bottom:554.234800pt;}
.y1b6{bottom:555.833333pt;}
.y15{bottom:558.072800pt;}
.y32{bottom:558.073333pt;}
.y178{bottom:560.312000pt;}
.y67{bottom:560.474133pt;}
.y190{bottom:560.635733pt;}
.yc3{bottom:562.072800pt;}
.y131{bottom:563.994800pt;}
.ya5{bottom:566.072800pt;}
.yec{bottom:567.994533pt;}
.y84{bottom:578.072800pt;}
.y10f{bottom:578.234800pt;}
.y66{bottom:578.875200pt;}
.y14{bottom:582.072800pt;}
.y31{bottom:582.073333pt;}
.y18f{bottom:584.630533pt;}
.yc2{bottom:586.072800pt;}
.y130{bottom:587.989600pt;}
.ya4{bottom:590.072800pt;}
.yeb{bottom:591.989333pt;}
.y177{bottom:592.630667pt;}
.y1b2{bottom:593.750533pt;}
.y1b4{bottom:594.869333pt;}
.y65{bottom:597.271067pt;}
.y83{bottom:602.072800pt;}
.y10e{bottom:602.229600pt;}
.y13{bottom:606.067600pt;}
.y30{bottom:606.068000pt;}
.y1b5{bottom:606.869333pt;}
.yc1{bottom:610.067600pt;}
.y12f{bottom:611.989600pt;}
.y18e{bottom:612.630533pt;}
.ya3{bottom:614.067600pt;}
.y64{bottom:615.672133pt;}
.yea{bottom:615.989333pt;}
.y176{bottom:616.630667pt;}
.y1b1{bottom:617.750533pt;}
.y1a2{bottom:618.067600pt;}
.y1b3{bottom:618.869333pt;}
.y82{bottom:626.067600pt;}
.y10d{bottom:626.229600pt;}
.y12{bottom:630.067600pt;}
.y2f{bottom:630.068000pt;}
.yc0{bottom:634.067600pt;}
.y63{bottom:634.068000pt;}
.y12e{bottom:635.989600pt;}
.ya2{bottom:638.067600pt;}
.y1b0{bottom:641.745333pt;}
.y175{bottom:648.786667pt;}
.y81{bottom:650.067600pt;}
.y10c{bottom:650.224400pt;}
.ye9{bottom:651.505200pt;}
.y18d{bottom:652.625333pt;}
.y62{bottom:653.265333pt;}
.y11{bottom:654.067600pt;}
.y2e{bottom:654.068000pt;}
.ybf{bottom:658.067600pt;}
.y12d{bottom:659.984400pt;}
.ya1{bottom:662.067600pt;}
.y1af{bottom:665.745333pt;}
.y174{bottom:672.786667pt;}
.y80{bottom:674.062400pt;}
.y10b{bottom:674.224400pt;}
.ye8{bottom:675.505200pt;}
.y18c{bottom:676.625333pt;}
.y10{bottom:678.062400pt;}
.y2d{bottom:678.062667pt;}
.y61{bottom:681.265333pt;}
.ybe{bottom:682.062400pt;}
.ya0{bottom:686.062400pt;}
.y1ae{bottom:689.745333pt;}
.y7f{bottom:698.062400pt;}
.y10a{bottom:698.224400pt;}
.ye7{bottom:699.500000pt;}
.yf{bottom:702.062400pt;}
.y2c{bottom:702.062667pt;}
.y173{bottom:705.103867pt;}
.y18b{bottom:705.104000pt;}
.ybd{bottom:706.062400pt;}
.y9f{bottom:710.062400pt;}
.y60{bottom:721.260133pt;}
.y53{bottom:722.062400pt;}
.ye{bottom:726.062400pt;}
.y2b{bottom:726.062667pt;}
.y172{bottom:729.098667pt;}
.ybc{bottom:730.057200pt;}
.y9e{bottom:734.057200pt;}
.ye6{bottom:737.417333pt;}
.y5f{bottom:744.458000pt;}
.y52{bottom:746.057200pt;}
.yd{bottom:750.057200pt;}
.y2a{bottom:750.057333pt;}
.ybb{bottom:754.057200pt;}
.y9d{bottom:758.057200pt;}
.y171{bottom:761.417200pt;}
.ye5{bottom:761.417333pt;}
.y189{bottom:762.057200pt;}
.y5e{bottom:762.859067pt;}
.y18a{bottom:769.578000pt;}
.y51{bottom:770.057200pt;}
.yc{bottom:774.057200pt;}
.y44{bottom:774.057333pt;}
.yba{bottom:778.057200pt;}
.y5d{bottom:781.254933pt;}
.y9c{bottom:782.057200pt;}
.y170{bottom:785.417200pt;}
.ye4{bottom:793.572800pt;}
.y50{bottom:794.052000pt;}
.yb{bottom:798.052000pt;}
.y5c{bottom:799.656000pt;}
.yb9{bottom:802.052000pt;}
.y9b{bottom:806.052000pt;}
.y16f{bottom:809.412000pt;}
.ye3{bottom:817.572800pt;}
.y5b{bottom:818.051867pt;}
.y4f{bottom:818.052000pt;}
.ya{bottom:822.052000pt;}
.yb8{bottom:826.052000pt;}
.y9a{bottom:830.052000pt;}
.y5a{bottom:836.452933pt;}
.ye2{bottom:841.572800pt;}
.y4e{bottom:842.052000pt;}
.y9{bottom:846.052000pt;}
.yce{bottom:850.052000pt;}
.y99{bottom:854.046800pt;}
.y59{bottom:854.848800pt;}
.y4d{bottom:866.046800pt;}
.y1a3{bottom:870.046667pt;}
.y8{bottom:870.046800pt;}
.y58{bottom:873.249867pt;}
.ycd{bottom:874.046800pt;}
.y98{bottom:878.046800pt;}
.y4c{bottom:890.046800pt;}
.y57{bottom:891.645733pt;}
.y29{bottom:894.046667pt;}
.y7{bottom:894.046800pt;}
.ycc{bottom:898.046800pt;}
.y97{bottom:902.046800pt;}
.y56{bottom:910.046800pt;}
.y4b{bottom:914.046800pt;}
.y43{bottom:918.041333pt;}
.y6{bottom:918.041600pt;}
.ycb{bottom:922.041600pt;}
.y96{bottom:926.041600pt;}
.y55{bottom:928.124933pt;}
.y4a{bottom:938.041600pt;}
.y28{bottom:942.041333pt;}
.y5{bottom:942.041600pt;}
.yca{bottom:946.041600pt;}
.y54{bottom:946.520800pt;}
.y95{bottom:950.041600pt;}
.y49{bottom:962.041600pt;}
.y42{bottom:966.041333pt;}
.y4{bottom:966.041600pt;}
.yc9{bottom:974.041600pt;}
.y94{bottom:978.041600pt;}
.y41{bottom:990.036000pt;}
.y3{bottom:990.036400pt;}
.y2{bottom:1022.833333pt;}
.y1{bottom:1046.833333pt;}
.hb{height:0.641333pt;}
.hc{height:2.134822pt;}
.ha{height:35.401737pt;}
.h3{height:39.240551pt;}
.h8{height:43.590117pt;}
.h9{height:44.297558pt;}
.h7{height:44.433797pt;}
.h5{height:49.100997pt;}
.h4{height:50.480884pt;}
.h6{height:51.235552pt;}
.h1{height:53.370552pt;}
.h2{height:54.870427pt;}
.he{height:101.349219pt;}
.hd{height:101.370552pt;}
.h0{height:1122.666667pt;}
.w1{width:0.322667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.483316pt;}
.x31{left:126.281200pt;}
.x35{left:130.765600pt;}
.x33{left:134.281333pt;}
.x32{left:135.562667pt;}
.x36{left:136.521333pt;}
.xf{left:137.484000pt;}
.x24{left:141.322667pt;}
.x2d{left:142.281333pt;}
.x1a{left:146.442667pt;}
.x22{left:147.724000pt;}
.x21{left:157.964000pt;}
.x14{left:161.478745pt;}
.x11{left:169.478667pt;}
.x20{left:178.921731pt;}
.x8{left:188.676574pt;}
.x37{left:209.473085pt;}
.x16{left:219.078667pt;}
.x12{left:220.036000pt;}
.x4{left:247.394961pt;}
.x9{left:272.671353pt;}
.x25{left:275.713333pt;}
.x34{left:285.305333pt;}
.x23{left:288.510667pt;}
.x26{left:290.912000pt;}
.x3{left:295.868943pt;}
.x17{left:305.786667pt;}
.x1e{left:308.989570pt;}
.x5{left:310.905405pt;}
.x18{left:324.505333pt;}
.x19{left:329.469333pt;}
.x10{left:348.344000pt;}
.xc{left:349.786297pt;}
.x7{left:352.025144pt;}
.x27{left:354.906667pt;}
.x13{left:388.984000pt;}
.xd{left:392.978667pt;}
.x6{left:395.379308pt;}
.x1{left:396.978667pt;}
.x1b{left:409.458256pt;}
.x15{left:410.739799pt;}
.x28{left:432.656000pt;}
.x2e{left:435.697333pt;}
.x29{left:455.374667pt;}
.x30{left:469.453333pt;}
.x1d{left:487.693333pt;}
.x1c{left:496.171808pt;}
.x2a{left:498.093333pt;}
.xa{left:501.452614pt;}
.x1f{left:506.890889pt;}
.xb{left:544.968208pt;}
.x2b{left:594.885333pt;}
.x2f{left:611.364000pt;}
.x2c{left:651.838667pt;}
.xe{left:680.479141pt;}
}




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