
    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_decf5d03d74f187fd6aa8725.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_40e0cba1b44cfc51dc8e4292.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_eaba2f2d0ecf42f537cf069a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.896000;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_decf5d03d74f187fd6aa8725.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_40e0cba1b44cfc51dc8e4292.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_decf5d03d74f187fd6aa8725.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;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_1e29fcb9e5121354281f4e3f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906000;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_decf5d03d74f187fd6aa8725.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_daf9765c5c8751a1b3b1a61c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_eaba2f2d0ecf42f537cf069a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.896000;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;}
.m5{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.206520px;}
.ls1{letter-spacing:0.209220px;}
.ls3{letter-spacing:0.407220px;}
.ls5{letter-spacing:0.412980px;}
.ls0{letter-spacing:18.965332px;}
.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;}
}
.ws0{word-spacing:-14.939994px;}
.ws3{word-spacing:-13.912974px;}
.ws2{word-spacing:-13.499995px;}
.ws1{word-spacing:0.000000px;}
._39{margin-left:-2.606399px;}
._1{margin-left:-1.568039px;}
._0{width:1.399979px;}
._6{width:3.086519px;}
._1a{width:4.106878px;}
._7{width:5.114098px;}
._8{width:6.168538px;}
._5{width:7.978257px;}
._4{width:9.225416px;}
._13{width:10.297376px;}
._f{width:11.965015px;}
._e{width:13.182055px;}
._3{width:16.923353px;}
._2{width:18.359393px;}
._c{width:19.602232px;}
._d{width:20.611792px;}
._a{width:22.538811px;}
._19{width:23.927030px;}
._18{width:25.291610px;}
._12{width:26.320909px;}
._11{width:27.391849px;}
._1b{width:29.005728px;}
._3a{width:30.108288px;}
._1c{width:31.361567px;}
._15{width:33.091007px;}
._14{width:34.602226px;}
._b{width:36.121546px;}
._1f{width:37.230945px;}
._1d{width:38.247105px;}
._1e{width:39.307244px;}
._9{width:41.725543px;}
._10{width:43.945602px;}
._3b{width:45.440382px;}
._17{width:54.864638px;}
._16{width:56.316097px;}
._2f{width:64.812214px;}
._35{width:66.033874px;}
._27{width:67.137093px;}
._26{width:77.957249px;}
._2b{width:80.074948px;}
._29{width:86.974585px;}
._31{width:88.655605px;}
._28{width:89.860164px;}
._30{width:97.096701px;}
._2d{width:99.015080px;}
._2c{width:100.995140px;}
._37{width:102.326779px;}
._2e{width:110.334796px;}
._32{width:111.611535px;}
._36{width:112.721835px;}
._24{width:119.138892px;}
._23{width:120.591312px;}
._38{width:121.886531px;}
._34{width:123.153551px;}
._33{width:124.743670px;}
._45{width:130.681508px;}
._47{width:141.394383px;}
._40{width:142.501083px;}
._42{width:143.557323px;}
._22{width:144.797702px;}
._25{width:150.973740px;}
._44{width:152.269799px;}
._48{width:153.658379px;}
._21{width:156.131458px;}
._2a{width:163.237735px;}
._41{width:164.350914px;}
._3c{width:165.509454px;}
._49{width:176.536909px;}
._43{width:180.236748px;}
._46{width:192.500143px;}
._3f{width:199.306720px;}
._3e{width:205.705838px;}
._3d{width:214.371874px;}
._20{width:480.484728px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.879984px;}
.fs4{font-size:48.239981px;}
.fs3{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs6{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.yea{bottom:-9.000350px;}
.ye0{bottom:-7.560395px;}
.yd7{bottom:-7.200165px;}
.ye4{bottom:-6.300380px;}
.yed{bottom:-5.940387px;}
.yf1{bottom:-5.760398px;}
.yfa{bottom:-5.760394px;}
.yef{bottom:-5.760376px;}
.ycc{bottom:-5.580232px;}
.yc8{bottom:-5.580171px;}
.yf6{bottom:-5.400184px;}
.y0{bottom:0.000000px;}
.yd9{bottom:3.239656px;}
.ydb{bottom:3.239663px;}
.y183{bottom:3.239708px;}
.yc5{bottom:3.239816px;}
.y1{bottom:56.339977px;}
.y32{bottom:131.759947px;}
.y157{bottom:132.479947px;}
.yc2{bottom:132.659947px;}
.y5b{bottom:139.319944px;}
.y122{bottom:142.379943px;}
.y31{bottom:149.399940px;}
.y156{bottom:150.119940px;}
.yc1{bottom:150.299940px;}
.y179{bottom:154.799938px;}
.y5a{bottom:156.959937px;}
.y121{bottom:160.019936px;}
.y8e{bottom:160.379936px;}
.y30{bottom:167.039933px;}
.y155{bottom:167.759933px;}
.yc0{bottom:167.939933px;}
.y178{bottom:172.259931px;}
.y59{bottom:174.599930px;}
.y120{bottom:177.659929px;}
.y8d{bottom:178.019929px;}
.y2f{bottom:184.679926px;}
.y154{bottom:185.399926px;}
.ybf{bottom:185.579926px;}
.y177{bottom:188.099925px;}
.y58{bottom:192.239923px;}
.y11f{bottom:195.299922px;}
.y8c{bottom:195.659922px;}
.y2e{bottom:202.319919px;}
.y153{bottom:203.039919px;}
.ybe{bottom:203.219919px;}
.y176{bottom:203.939918px;}
.y57{bottom:209.879916px;}
.y8b{bottom:213.299915px;}
.y175{bottom:219.779912px;}
.y2d{bottom:219.959912px;}
.y152{bottom:220.679912px;}
.ybd{bottom:220.859912px;}
.y56{bottom:227.519909px;}
.y8a{bottom:230.939908px;}
.y174{bottom:235.619906px;}
.y2c{bottom:237.599905px;}
.y151{bottom:238.319905px;}
.ybc{bottom:238.499905px;}
.y55{bottom:245.159902px;}
.y89{bottom:248.579901px;}
.y173{bottom:251.459899px;}
.y11e{bottom:252.179899px;}
.y2b{bottom:255.239898px;}
.y150{bottom:255.959898px;}
.ybb{bottom:256.139898px;}
.y54{bottom:262.799895px;}
.y88{bottom:266.219894px;}
.y172{bottom:267.299893px;}
.y11d{bottom:269.819892px;}
.y2a{bottom:272.879891px;}
.yba{bottom:273.779890px;}
.y14f{bottom:273.959890px;}
.y53{bottom:280.439888px;}
.y171{bottom:283.139887px;}
.y87{bottom:283.859886px;}
.y11c{bottom:287.459885px;}
.y29{bottom:290.879884px;}
.yb9{bottom:291.419883px;}
.y52{bottom:298.079881px;}
.y170{bottom:298.979880px;}
.y86{bottom:301.499879px;}
.y11b{bottom:305.099878px;}
.yb8{bottom:309.059876px;}
.y14e{bottom:312.839875px;}
.y16f{bottom:314.819874px;}
.y51{bottom:315.719874px;}
.y85{bottom:319.139872px;}
.y11a{bottom:322.739871px;}
.yb7{bottom:326.699869px;}
.y28{bottom:329.759868px;}
.y14d{bottom:330.479868px;}
.y16e{bottom:330.659868px;}
.y50{bottom:333.359867px;}
.y84{bottom:336.779865px;}
.y119{bottom:340.379864px;}
.yb6{bottom:344.339862px;}
.y16d{bottom:346.499861px;}
.y27{bottom:347.399861px;}
.y14c{bottom:348.119861px;}
.y4f{bottom:350.999860px;}
.y83{bottom:354.419858px;}
.y118{bottom:358.019857px;}
.yb5{bottom:361.979855px;}
.y16c{bottom:362.339855px;}
.y26{bottom:365.039854px;}
.y14b{bottom:365.759854px;}
.y4e{bottom:368.639853px;}
.y82{bottom:372.059851px;}
.y117{bottom:375.659850px;}
.y16b{bottom:378.179849px;}
.yb4{bottom:379.619848px;}
.y25{bottom:382.679847px;}
.y14a{bottom:383.399847px;}
.y4d{bottom:386.279845px;}
.y81{bottom:389.699844px;}
.y116{bottom:393.299843px;}
.y16a{bottom:394.019842px;}
.yb3{bottom:397.259841px;}
.y24{bottom:400.319840px;}
.y149{bottom:401.039840px;}
.y4c{bottom:403.919838px;}
.y80{bottom:407.339837px;}
.y169{bottom:409.859836px;}
.y115{bottom:410.939836px;}
.yb2{bottom:414.899834px;}
.y23{bottom:417.959833px;}
.yd6{bottom:418.500000px;}
.y148{bottom:418.679833px;}
.y4b{bottom:421.559831px;}
.y7f{bottom:424.979830px;}
.y168{bottom:425.699830px;}
.yd5{bottom:428.579829px;}
.yb1{bottom:432.539827px;}
.yc7{bottom:432.900000px;}
.y22{bottom:435.599826px;}
.y147{bottom:436.319825px;}
.y4a{bottom:439.199824px;}
.y167{bottom:441.539823px;}
.y7e{bottom:442.619823px;}
.yd4{bottom:442.979823px;}
.yc6{bottom:443.159823px;}
.y114{bottom:446.219822px;}
.yb0{bottom:450.179820px;}
.y21{bottom:453.239819px;}
.y146{bottom:453.959818px;}
.yc4{bottom:455.760000px;}
.y49{bottom:456.839817px;}
.y166{bottom:457.379817px;}
.yc3{bottom:458.999816px;}
.y7d{bottom:460.259816px;}
.y113{bottom:463.859814px;}
.yf5{bottom:465.660000px;}
.yaf{bottom:467.819813px;}
.y20{bottom:470.879812px;}
.y145{bottom:471.599811px;}
.y165{bottom:473.219811px;}
.y48{bottom:474.479810px;}
.yf4{bottom:476.099810px;}
.y7c{bottom:477.899809px;}
.y112{bottom:481.499807px;}
.yae{bottom:485.459806px;}
.y1f{bottom:488.519805px;}
.y164{bottom:489.059804px;}
.y144{bottom:489.239804px;}
.yf3{bottom:491.939803px;}
.y47{bottom:492.119803px;}
.y7b{bottom:495.539802px;}
.y111{bottom:499.139800px;}
.yad{bottom:503.099799px;}
.y163{bottom:504.899798px;}
.y1e{bottom:506.159798px;}
.y143{bottom:506.879797px;}
.yf2{bottom:507.779797px;}
.y46{bottom:509.759796px;}
.y7a{bottom:513.179795px;}
.y110{bottom:516.779793px;}
.yac{bottom:520.739792px;}
.y162{bottom:521.099792px;}
.y1d{bottom:523.799790px;}
.y142{bottom:524.519790px;}
.y45{bottom:527.399789px;}
.y79{bottom:530.819788px;}
.y10f{bottom:534.419786px;}
.y161{bottom:536.939785px;}
.yab{bottom:538.379785px;}
.y1c{bottom:541.439783px;}
.y141{bottom:542.159783px;}
.y44{bottom:545.039782px;}
.y78{bottom:548.459781px;}
.y10e{bottom:552.059779px;}
.y160{bottom:552.779779px;}
.yaa{bottom:556.019778px;}
.y1b{bottom:559.079776px;}
.y140{bottom:559.799776px;}
.y43{bottom:562.679775px;}
.y77{bottom:566.099774px;}
.y15f{bottom:568.619773px;}
.y10d{bottom:569.699772px;}
.ya9{bottom:573.659771px;}
.ycd{bottom:575.279770px;}
.y1a{bottom:576.719769px;}
.y13f{bottom:577.439769px;}
.y42{bottom:580.319768px;}
.y76{bottom:583.739767px;}
.y15e{bottom:584.459766px;}
.ycb{bottom:584.460000px;}
.y10c{bottom:587.339765px;}
.ya8{bottom:591.299763px;}
.y19{bottom:594.359762px;}
.yca{bottom:594.719762px;}
.y180{bottom:597.779761px;}
.y41{bottom:597.959761px;}
.y15d{bottom:600.299760px;}
.y75{bottom:601.379759px;}
.y10b{bottom:604.979758px;}
.yf8{bottom:605.699758px;}
.ya7{bottom:608.939756px;}
.yc9{bottom:610.559756px;}
.y18{bottom:611.999755px;}
.y17f{bottom:613.079755px;}
.yd3{bottom:614.699754px;}
.yd2{bottom:614.879754px;}
.y40{bottom:615.599754px;}
.y15c{bottom:616.139754px;}
.y74{bottom:619.019752px;}
.yf7{bottom:621.539751px;}
.y10a{bottom:622.619751px;}
.ya6{bottom:626.579749px;}
.y17e{bottom:628.919748px;}
.yd1{bottom:629.099748px;}
.y17{bottom:629.639748px;}
.y15b{bottom:631.979747px;}
.y3f{bottom:633.239747px;}
.y73{bottom:636.659745px;}
.y109{bottom:640.259744px;}
.ya5{bottom:644.219742px;}
.y17d{bottom:646.919741px;}
.y16{bottom:647.279741px;}
.y15a{bottom:647.819741px;}
.y3e{bottom:650.879740px;}
.y72{bottom:654.299738px;}
.y108{bottom:657.899737px;}
.yd0{bottom:660.599736px;}
.ya4{bottom:661.859735px;}
.y159{bottom:663.659735px;}
.y15{bottom:664.919734px;}
.y17c{bottom:666.899733px;}
.y3d{bottom:668.519733px;}
.y71{bottom:671.939731px;}
.y107{bottom:675.539730px;}
.ya3{bottom:679.499728px;}
.y137{bottom:682.199727px;}
.y14{bottom:682.559727px;}
.y3c{bottom:686.159726px;}
.y17b{bottom:686.879725px;}
.ycf{bottom:689.219724px;}
.y70{bottom:689.579724px;}
.y106{bottom:693.179723px;}
.y158{bottom:696.959721px;}
.ya2{bottom:697.139721px;}
.y136{bottom:697.499721px;}
.y13{bottom:700.199720px;}
.yce{bottom:703.439719px;}
.y3b{bottom:703.799718px;}
.y6f{bottom:707.219717px;}
.y17a{bottom:707.399717px;}
.y105{bottom:710.819716px;}
.y135{bottom:712.799715px;}
.ya1{bottom:714.779714px;}
.y12{bottom:717.839713px;}
.y3a{bottom:721.439711px;}
.y6e{bottom:724.859710px;}
.y182{bottom:727.560000px;}
.y104{bottom:728.459709px;}
.y134{bottom:729.899708px;}
.y13e{bottom:730.619708px;}
.y181{bottom:730.799708px;}
.ya0{bottom:732.419707px;}
.y11{bottom:735.479706px;}
.y39{bottom:739.079704px;}
.y6d{bottom:742.499703px;}
.y103{bottom:746.099702px;}
.y133{bottom:746.819701px;}
.y13d{bottom:748.259701px;}
.y9f{bottom:750.059700px;}
.y10{bottom:753.119699px;}
.y38{bottom:756.719697px;}
.y6c{bottom:760.139696px;}
.y132{bottom:762.119695px;}
.y102{bottom:763.739695px;}
.y13c{bottom:765.899694px;}
.y9e{bottom:767.699693px;}
.yf{bottom:770.759692px;}
.y37{bottom:774.359690px;}
.y131{bottom:777.419689px;}
.y6b{bottom:777.779689px;}
.y101{bottom:781.379687px;}
.y13b{bottom:783.539687px;}
.y9d{bottom:785.339686px;}
.ye{bottom:788.399685px;}
.y36{bottom:791.999683px;}
.y6a{bottom:795.419682px;}
.y130{bottom:796.859681px;}
.y100{bottom:799.019680px;}
.y13a{bottom:801.179680px;}
.y9c{bottom:802.979679px;}
.yd{bottom:806.039678px;}
.y35{bottom:809.639676px;}
.y69{bottom:813.059675px;}
.y138{bottom:816.479673px;}
.yff{bottom:816.659673px;}
.y139{bottom:818.819672px;}
.y9b{bottom:820.619672px;}
.y12f{bottom:821.519671px;}
.yc{bottom:823.679671px;}
.ydc{bottom:824.399670px;}
.y34{bottom:827.279669px;}
.y68{bottom:830.699668px;}
.yfe{bottom:834.299666px;}
.y12e{bottom:836.459665px;}
.y9a{bottom:838.259665px;}
.yda{bottom:838.620000px;}
.yb{bottom:841.679663px;}
.y33{bottom:844.919662px;}
.y67{bottom:848.339661px;}
.yfd{bottom:851.939659px;}
.y12d{bottom:854.099658px;}
.y99{bottom:855.899658px;}
.yd8{bottom:856.080000px;}
.ya{bottom:863.999654px;}
.y66{bottom:865.979654px;}
.yfc{bottom:869.579652px;}
.y12c{bottom:871.739651px;}
.y98{bottom:873.539651px;}
.yeb{bottom:882.539647px;}
.ye9{bottom:883.440000px;}
.y65{bottom:883.619647px;}
.y9{bottom:887.219645px;}
.yfb{bottom:887.579645px;}
.y12b{bottom:889.379644px;}
.ye8{bottom:889.919644px;}
.y97{bottom:891.179644px;}
.y64{bottom:901.259639px;}
.ye7{bottom:904.139638px;}
.y8{bottom:904.859638px;}
.y12a{bottom:907.019637px;}
.y96{bottom:908.819636px;}
.y63{bottom:918.899632px;}
.y7{bottom:922.499631px;}
.y129{bottom:924.659630px;}
.y95{bottom:926.459629px;}
.ye6{bottom:927.719629px;}
.y62{bottom:936.539625px;}
.y6{bottom:940.139624px;}
.ye5{bottom:941.939623px;}
.y128{bottom:942.299623px;}
.y94{bottom:944.099622px;}
.yee{bottom:946.080000px;}
.y61{bottom:954.179618px;}
.ye3{bottom:956.520000px;}
.y5{bottom:957.779617px;}
.y127{bottom:959.939616px;}
.y93{bottom:961.739615px;}
.ye2{bottom:965.699614px;}
.y60{bottom:971.819611px;}
.yec{bottom:972.900000px;}
.y4{bottom:975.419610px;}
.y126{bottom:977.579609px;}
.y92{bottom:979.379608px;}
.ye1{bottom:979.919608px;}
.y5f{bottom:989.819604px;}
.yf9{bottom:990.180000px;}
.y3{bottom:994.139602px;}
.y125{bottom:995.219602px;}
.ydf{bottom:995.220000px;}
.y91{bottom:997.019601px;}
.yf0{bottom:1000.980000px;}
.yde{bottom:1003.139599px;}
.y5e{bottom:1011.059596px;}
.y124{bottom:1012.859595px;}
.y90{bottom:1014.659594px;}
.ydd{bottom:1017.359593px;}
.y2{bottom:1018.979592px;}
.y8f{bottom:1032.299587px;}
.y123{bottom:1047.599581px;}
.y5d{bottom:1049.939580px;}
.y5c{bottom:1067.579573px;}
.hf{height:3.060000px;}
.hd{height:4.500000px;}
.he{height:5.760000px;}
.hb{height:6.120000px;}
.h9{height:6.480000px;}
.h13{height:6.660000px;}
.h11{height:7.380000px;}
.h12{height:7.560000px;}
.h8{height:15.300000px;}
.hc{height:16.740000px;}
.h14{height:26.749429px;}
.ha{height:33.189107px;}
.h16{height:33.478547px;}
.h10{height:33.909106px;}
.h7{height:37.151985px;}
.h17{height:37.475985px;}
.h4{height:41.055104px;}
.h3{height:41.114864px;}
.h1{height:41.473423px;}
.h15{height:45.970542px;}
.h6{height:49.967980px;}
.h5{height:57.957097px;}
.h2{height:58.462537px;}
.h0{height:1188.000000px;}
.w5{width:0.180000px;}
.w1{width:0.720000px;}
.w2{width:6.120000px;}
.w3{width:6.660000px;}
.w4{width:358.560000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:90.539964px;}
.x30{left:95.579962px;}
.x2d{left:99.719960px;}
.x11{left:108.539985px;}
.x2f{left:109.979956px;}
.x2e{left:113.039955px;}
.x2{left:122.399951px;}
.x17{left:146.159942px;}
.x7{left:148.679784px;}
.x9{left:157.140013px;}
.x5{left:172.439373px;}
.x6{left:173.699323px;}
.x8{left:176.399791px;}
.x18{left:210.959916px;}
.x19{left:212.759915px;}
.x10{left:232.919907px;}
.x3{left:353.159052px;}
.x31{left:431.820000px;}
.x1d{left:459.000000px;}
.x4{left:467.999813px;}
.x1e{left:469.260000px;}
.x12{left:476.096171px;}
.xe{left:480.780229px;}
.x1a{left:485.099806px;}
.x28{left:486.899805px;}
.x29{left:491.759803px;}
.x2b{left:493.019803px;}
.x13{left:494.091177px;}
.x1c{left:498.959800px;}
.x1f{left:501.659799px;}
.x20{left:503.099764px;}
.x2c{left:506.159798px;}
.xc{left:515.520592px;}
.xb{left:525.060310px;}
.x16{left:534.599786px;}
.x14{left:541.619783px;}
.xd{left:543.240568px;}
.xa{left:545.940242px;}
.x22{left:588.240000px;}
.x23{left:598.140000px;}
.x2a{left:604.799758px;}
.x15{left:628.560000px;}
.x21{left:637.559745px;}
.x24{left:647.460000px;}
.x26{left:743.579703px;}
.x25{left:749.699700px;}
.x1b{left:766.079513px;}
.x27{left:794.340000px;}
.x1{left:827.639669px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.183573pt;}
.ls1{letter-spacing:0.185973pt;}
.ls3{letter-spacing:0.361973pt;}
.ls5{letter-spacing:0.367093pt;}
.ls0{letter-spacing:16.858073pt;}
.ws0{word-spacing:-13.279995pt;}
.ws3{word-spacing:-12.367088pt;}
.ws2{word-spacing:-11.999995pt;}
.ws1{word-spacing:0.000000pt;}
._39{margin-left:-2.316799pt;}
._1{margin-left:-1.393813pt;}
._0{width:1.244426pt;}
._6{width:2.743572pt;}
._1a{width:3.650559pt;}
._7{width:4.545865pt;}
._8{width:5.483144pt;}
._5{width:7.091784pt;}
._4{width:8.200370pt;}
._13{width:9.153223pt;}
._f{width:10.635569pt;}
._e{width:11.717382pt;}
._3{width:15.042981pt;}
._2{width:16.319460pt;}
._c{width:17.424206pt;}
._d{width:18.321593pt;}
._a{width:20.034499pt;}
._19{width:21.268471pt;}
._18{width:22.481431pt;}
._12{width:23.396364pt;}
._11{width:24.348310pt;}
._1b{width:25.782870pt;}
._3a{width:26.762923pt;}
._1c{width:27.876949pt;}
._15{width:29.414228pt;}
._14{width:30.757534pt;}
._b{width:32.108040pt;}
._1f{width:33.094173pt;}
._1d{width:33.997426pt;}
._1e{width:34.939773pt;}
._9{width:37.089372pt;}
._10{width:39.062758pt;}
._3b{width:40.391451pt;}
._17{width:48.768567pt;}
._16{width:50.058753pt;}
._2f{width:57.610857pt;}
._35{width:58.696777pt;}
._27{width:59.677416pt;}
._26{width:69.295332pt;}
._2b{width:71.177732pt;}
._29{width:77.310742pt;}
._31{width:78.804982pt;}
._28{width:79.875701pt;}
._30{width:86.308179pt;}
._2d{width:88.013405pt;}
._2c{width:89.773457pt;}
._37{width:90.957137pt;}
._2e{width:98.075374pt;}
._32{width:99.210254pt;}
._36{width:100.197187pt;}
._24{width:105.901238pt;}
._23{width:107.192277pt;}
._38{width:108.343583pt;}
._34{width:109.469823pt;}
._33{width:110.883262pt;}
._45{width:116.161340pt;}
._47{width:125.683896pt;}
._40{width:126.667629pt;}
._42{width:127.606509pt;}
._22{width:128.709069pt;}
._25{width:134.198880pt;}
._44{width:135.350933pt;}
._48{width:136.585225pt;}
._21{width:138.783518pt;}
._2a{width:145.100209pt;}
._41{width:146.089702pt;}
._3c{width:147.119514pt;}
._49{width:156.921697pt;}
._43{width:160.210443pt;}
._46{width:171.111238pt;}
._3f{width:177.161529pt;}
._3e{width:182.849634pt;}
._3d{width:190.552777pt;}
._20{width:427.097536pt;}
.fs5{font-size:34.559986pt;}
.fs4{font-size:42.879983pt;}
.fs3{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs6{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.yea{bottom:-8.000311pt;}
.ye0{bottom:-6.720351pt;}
.yd7{bottom:-6.400146pt;}
.ye4{bottom:-5.600338pt;}
.yed{bottom:-5.280344pt;}
.yf1{bottom:-5.120354pt;}
.yfa{bottom:-5.120350pt;}
.yef{bottom:-5.120334pt;}
.ycc{bottom:-4.960206pt;}
.yc8{bottom:-4.960152pt;}
.yf6{bottom:-4.800164pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:2.879694pt;}
.ydb{bottom:2.879701pt;}
.y183{bottom:2.879740pt;}
.yc5{bottom:2.879837pt;}
.y1{bottom:50.079980pt;}
.y32{bottom:117.119953pt;}
.y157{bottom:117.759953pt;}
.yc2{bottom:117.919953pt;}
.y5b{bottom:123.839950pt;}
.y122{bottom:126.559949pt;}
.y31{bottom:132.799947pt;}
.y156{bottom:133.439947pt;}
.yc1{bottom:133.599947pt;}
.y179{bottom:137.599945pt;}
.y5a{bottom:139.519944pt;}
.y121{bottom:142.239943pt;}
.y8e{bottom:142.559943pt;}
.y30{bottom:148.479941pt;}
.y155{bottom:149.119940pt;}
.yc0{bottom:149.279940pt;}
.y178{bottom:153.119939pt;}
.y59{bottom:155.199938pt;}
.y120{bottom:157.919937pt;}
.y8d{bottom:158.239937pt;}
.y2f{bottom:164.159934pt;}
.y154{bottom:164.799934pt;}
.ybf{bottom:164.959934pt;}
.y177{bottom:167.199933pt;}
.y58{bottom:170.879932pt;}
.y11f{bottom:173.599931pt;}
.y8c{bottom:173.919930pt;}
.y2e{bottom:179.839928pt;}
.y153{bottom:180.479928pt;}
.ybe{bottom:180.639928pt;}
.y176{bottom:181.279927pt;}
.y57{bottom:186.559925pt;}
.y8b{bottom:189.599924pt;}
.y175{bottom:195.359922pt;}
.y2d{bottom:195.519922pt;}
.y152{bottom:196.159922pt;}
.ybd{bottom:196.319921pt;}
.y56{bottom:202.239919pt;}
.y8a{bottom:205.279918pt;}
.y174{bottom:209.439916pt;}
.y2c{bottom:211.199916pt;}
.y151{bottom:211.839915pt;}
.ybc{bottom:211.999915pt;}
.y55{bottom:217.919913pt;}
.y89{bottom:220.959912pt;}
.y173{bottom:223.519911pt;}
.y11e{bottom:224.159910pt;}
.y2b{bottom:226.879909pt;}
.y150{bottom:227.519909pt;}
.ybb{bottom:227.679909pt;}
.y54{bottom:233.599907pt;}
.y88{bottom:236.639905pt;}
.y172{bottom:237.599905pt;}
.y11d{bottom:239.839904pt;}
.y2a{bottom:242.559903pt;}
.yba{bottom:243.359903pt;}
.y14f{bottom:243.519903pt;}
.y53{bottom:249.279900pt;}
.y171{bottom:251.679899pt;}
.y87{bottom:252.319899pt;}
.y11c{bottom:255.519898pt;}
.y29{bottom:258.559897pt;}
.yb9{bottom:259.039896pt;}
.y52{bottom:264.959894pt;}
.y170{bottom:265.759894pt;}
.y86{bottom:267.999893pt;}
.y11b{bottom:271.199892pt;}
.yb8{bottom:274.719890pt;}
.y14e{bottom:278.079889pt;}
.y16f{bottom:279.839888pt;}
.y51{bottom:280.639888pt;}
.y85{bottom:283.679887pt;}
.y11a{bottom:286.879885pt;}
.yb7{bottom:290.399884pt;}
.y28{bottom:293.119883pt;}
.y14d{bottom:293.759882pt;}
.y16e{bottom:293.919882pt;}
.y50{bottom:296.319881pt;}
.y84{bottom:299.359880pt;}
.y119{bottom:302.559879pt;}
.yb6{bottom:306.079878pt;}
.y16d{bottom:307.999877pt;}
.y27{bottom:308.799876pt;}
.y14c{bottom:309.439876pt;}
.y4f{bottom:311.999875pt;}
.y83{bottom:315.039874pt;}
.y118{bottom:318.239873pt;}
.yb5{bottom:321.759871pt;}
.y16c{bottom:322.079871pt;}
.y26{bottom:324.479870pt;}
.y14b{bottom:325.119870pt;}
.y4e{bottom:327.679869pt;}
.y82{bottom:330.719868pt;}
.y117{bottom:333.919866pt;}
.y16b{bottom:336.159866pt;}
.yb4{bottom:337.439865pt;}
.y25{bottom:340.159864pt;}
.y14a{bottom:340.799864pt;}
.y4d{bottom:343.359863pt;}
.y81{bottom:346.399861pt;}
.y116{bottom:349.599860pt;}
.y16a{bottom:350.239860pt;}
.yb3{bottom:353.119859pt;}
.y24{bottom:355.839858pt;}
.y149{bottom:356.479857pt;}
.y4c{bottom:359.039856pt;}
.y80{bottom:362.079855pt;}
.y169{bottom:364.319854pt;}
.y115{bottom:365.279854pt;}
.yb2{bottom:368.799852pt;}
.y23{bottom:371.519851pt;}
.yd6{bottom:372.000000pt;}
.y148{bottom:372.159851pt;}
.y4b{bottom:374.719850pt;}
.y7f{bottom:377.759849pt;}
.y168{bottom:378.399849pt;}
.yd5{bottom:380.959848pt;}
.yb1{bottom:384.479846pt;}
.yc7{bottom:384.800000pt;}
.y22{bottom:387.199845pt;}
.y147{bottom:387.839845pt;}
.y4a{bottom:390.399844pt;}
.y167{bottom:392.479843pt;}
.y7e{bottom:393.439843pt;}
.yd4{bottom:393.759842pt;}
.yc6{bottom:393.919842pt;}
.y114{bottom:396.639841pt;}
.yb0{bottom:400.159840pt;}
.y21{bottom:402.879839pt;}
.y146{bottom:403.519839pt;}
.yc4{bottom:405.120000pt;}
.y49{bottom:406.079838pt;}
.y166{bottom:406.559837pt;}
.yc3{bottom:407.999837pt;}
.y7d{bottom:409.119836pt;}
.y113{bottom:412.319835pt;}
.yf5{bottom:413.920000pt;}
.yaf{bottom:415.839834pt;}
.y20{bottom:418.559833pt;}
.y145{bottom:419.199832pt;}
.y165{bottom:420.639832pt;}
.y48{bottom:421.759831pt;}
.yf4{bottom:423.199831pt;}
.y7c{bottom:424.799830pt;}
.y112{bottom:427.999829pt;}
.yae{bottom:431.519827pt;}
.y1f{bottom:434.239826pt;}
.y164{bottom:434.719826pt;}
.y144{bottom:434.879826pt;}
.yf3{bottom:437.279825pt;}
.y47{bottom:437.439825pt;}
.y7b{bottom:440.479824pt;}
.y111{bottom:443.679823pt;}
.yad{bottom:447.199821pt;}
.y163{bottom:448.799820pt;}
.y1e{bottom:449.919820pt;}
.y143{bottom:450.559820pt;}
.yf2{bottom:451.359819pt;}
.y46{bottom:453.119819pt;}
.y7a{bottom:456.159818pt;}
.y110{bottom:459.359816pt;}
.yac{bottom:462.879815pt;}
.y162{bottom:463.199815pt;}
.y1d{bottom:465.599814pt;}
.y142{bottom:466.239814pt;}
.y45{bottom:468.799812pt;}
.y79{bottom:471.839811pt;}
.y10f{bottom:475.039810pt;}
.y161{bottom:477.279809pt;}
.yab{bottom:478.559809pt;}
.y1c{bottom:481.279807pt;}
.y141{bottom:481.919807pt;}
.y44{bottom:484.479806pt;}
.y78{bottom:487.519805pt;}
.y10e{bottom:490.719804pt;}
.y160{bottom:491.359803pt;}
.yaa{bottom:494.239802pt;}
.y1b{bottom:496.959801pt;}
.y140{bottom:497.599801pt;}
.y43{bottom:500.159800pt;}
.y77{bottom:503.199799pt;}
.y15f{bottom:505.439798pt;}
.y10d{bottom:506.399797pt;}
.ya9{bottom:509.919796pt;}
.ycd{bottom:511.359795pt;}
.y1a{bottom:512.639795pt;}
.y13f{bottom:513.279795pt;}
.y42{bottom:515.839794pt;}
.y76{bottom:518.879792pt;}
.y15e{bottom:519.519792pt;}
.ycb{bottom:519.520000pt;}
.y10c{bottom:522.079791pt;}
.ya8{bottom:525.599790pt;}
.y19{bottom:528.319789pt;}
.yca{bottom:528.639789pt;}
.y180{bottom:531.359787pt;}
.y41{bottom:531.519787pt;}
.y15d{bottom:533.599787pt;}
.y75{bottom:534.559786pt;}
.y10b{bottom:537.759785pt;}
.yf8{bottom:538.399785pt;}
.ya7{bottom:541.279783pt;}
.yc9{bottom:542.719783pt;}
.y18{bottom:543.999782pt;}
.y17f{bottom:544.959782pt;}
.yd3{bottom:546.399781pt;}
.yd2{bottom:546.559781pt;}
.y40{bottom:547.199781pt;}
.y15c{bottom:547.679781pt;}
.y74{bottom:550.239780pt;}
.yf7{bottom:552.479779pt;}
.y10a{bottom:553.439779pt;}
.ya6{bottom:556.959777pt;}
.y17e{bottom:559.039776pt;}
.yd1{bottom:559.199776pt;}
.y17{bottom:559.679776pt;}
.y15b{bottom:561.759775pt;}
.y3f{bottom:562.879775pt;}
.y73{bottom:565.919774pt;}
.y109{bottom:569.119772pt;}
.ya5{bottom:572.639771pt;}
.y17d{bottom:575.039770pt;}
.y16{bottom:575.359770pt;}
.y15a{bottom:575.839770pt;}
.y3e{bottom:578.559769pt;}
.y72{bottom:581.599767pt;}
.y108{bottom:584.799766pt;}
.yd0{bottom:587.199765pt;}
.ya4{bottom:588.319765pt;}
.y159{bottom:589.919764pt;}
.y15{bottom:591.039764pt;}
.y17c{bottom:592.799763pt;}
.y3d{bottom:594.239762pt;}
.y71{bottom:597.279761pt;}
.y107{bottom:600.479760pt;}
.ya3{bottom:603.999758pt;}
.y137{bottom:606.399757pt;}
.y14{bottom:606.719757pt;}
.y3c{bottom:609.919756pt;}
.y17b{bottom:610.559756pt;}
.ycf{bottom:612.639755pt;}
.y70{bottom:612.959755pt;}
.y106{bottom:616.159754pt;}
.y158{bottom:619.519752pt;}
.ya2{bottom:619.679752pt;}
.y136{bottom:619.999752pt;}
.y13{bottom:622.399751pt;}
.yce{bottom:625.279750pt;}
.y3b{bottom:625.599750pt;}
.y6f{bottom:628.639749pt;}
.y17a{bottom:628.799748pt;}
.y105{bottom:631.839747pt;}
.y135{bottom:633.599747pt;}
.ya1{bottom:635.359746pt;}
.y12{bottom:638.079745pt;}
.y3a{bottom:641.279743pt;}
.y6e{bottom:644.319742pt;}
.y182{bottom:646.720000pt;}
.y104{bottom:647.519741pt;}
.y134{bottom:648.799740pt;}
.y13e{bottom:649.439740pt;}
.y181{bottom:649.599740pt;}
.ya0{bottom:651.039740pt;}
.y11{bottom:653.759738pt;}
.y39{bottom:656.959737pt;}
.y6d{bottom:659.999736pt;}
.y103{bottom:663.199735pt;}
.y133{bottom:663.839734pt;}
.y13d{bottom:665.119734pt;}
.y9f{bottom:666.719733pt;}
.y10{bottom:669.439732pt;}
.y38{bottom:672.639731pt;}
.y6c{bottom:675.679730pt;}
.y132{bottom:677.439729pt;}
.y102{bottom:678.879728pt;}
.y13c{bottom:680.799728pt;}
.y9e{bottom:682.399727pt;}
.yf{bottom:685.119726pt;}
.y37{bottom:688.319725pt;}
.y131{bottom:691.039724pt;}
.y6b{bottom:691.359723pt;}
.y101{bottom:694.559722pt;}
.y13b{bottom:696.479721pt;}
.y9d{bottom:698.079721pt;}
.ye{bottom:700.799720pt;}
.y36{bottom:703.999718pt;}
.y6a{bottom:707.039717pt;}
.y130{bottom:708.319717pt;}
.y100{bottom:710.239716pt;}
.y13a{bottom:712.159715pt;}
.y9c{bottom:713.759714pt;}
.yd{bottom:716.479713pt;}
.y35{bottom:719.679712pt;}
.y69{bottom:722.719711pt;}
.y138{bottom:725.759710pt;}
.yff{bottom:725.919710pt;}
.y139{bottom:727.839709pt;}
.y9b{bottom:729.439708pt;}
.y12f{bottom:730.239708pt;}
.yc{bottom:732.159707pt;}
.ydc{bottom:732.799707pt;}
.y34{bottom:735.359706pt;}
.y68{bottom:738.399705pt;}
.yfe{bottom:741.599703pt;}
.y12e{bottom:743.519703pt;}
.y9a{bottom:745.119702pt;}
.yda{bottom:745.440000pt;}
.yb{bottom:748.159701pt;}
.y33{bottom:751.039700pt;}
.y67{bottom:754.079698pt;}
.yfd{bottom:757.279697pt;}
.y12d{bottom:759.199696pt;}
.y99{bottom:760.799696pt;}
.yd8{bottom:760.960000pt;}
.ya{bottom:767.999693pt;}
.y66{bottom:769.759692pt;}
.yfc{bottom:772.959691pt;}
.y12c{bottom:774.879690pt;}
.y98{bottom:776.479689pt;}
.yeb{bottom:784.479686pt;}
.ye9{bottom:785.280000pt;}
.y65{bottom:785.439686pt;}
.y9{bottom:788.639685pt;}
.yfb{bottom:788.959684pt;}
.y12b{bottom:790.559684pt;}
.ye8{bottom:791.039684pt;}
.y97{bottom:792.159683pt;}
.y64{bottom:801.119680pt;}
.ye7{bottom:803.679679pt;}
.y8{bottom:804.319678pt;}
.y12a{bottom:806.239678pt;}
.y96{bottom:807.839677pt;}
.y63{bottom:816.799673pt;}
.y7{bottom:819.999672pt;}
.y129{bottom:821.919671pt;}
.y95{bottom:823.519671pt;}
.ye6{bottom:824.639670pt;}
.y62{bottom:832.479667pt;}
.y6{bottom:835.679666pt;}
.ye5{bottom:837.279665pt;}
.y128{bottom:837.599665pt;}
.y94{bottom:839.199664pt;}
.yee{bottom:840.960000pt;}
.y61{bottom:848.159661pt;}
.ye3{bottom:850.240000pt;}
.y5{bottom:851.359659pt;}
.y127{bottom:853.279659pt;}
.y93{bottom:854.879658pt;}
.ye2{bottom:858.399657pt;}
.y60{bottom:863.839654pt;}
.yec{bottom:864.800000pt;}
.y4{bottom:867.039653pt;}
.y126{bottom:868.959652pt;}
.y92{bottom:870.559652pt;}
.ye1{bottom:871.039652pt;}
.y5f{bottom:879.839648pt;}
.yf9{bottom:880.160000pt;}
.y3{bottom:883.679647pt;}
.y125{bottom:884.639646pt;}
.ydf{bottom:884.640000pt;}
.y91{bottom:886.239646pt;}
.yf0{bottom:889.760000pt;}
.yde{bottom:891.679643pt;}
.y5e{bottom:898.719641pt;}
.y124{bottom:900.319640pt;}
.y90{bottom:901.919639pt;}
.ydd{bottom:904.319638pt;}
.y2{bottom:905.759638pt;}
.y8f{bottom:917.599633pt;}
.y123{bottom:931.199628pt;}
.y5d{bottom:933.279627pt;}
.y5c{bottom:948.959620pt;}
.hf{height:2.720000pt;}
.hd{height:4.000000pt;}
.he{height:5.120000pt;}
.hb{height:5.440000pt;}
.h9{height:5.760000pt;}
.h13{height:5.920000pt;}
.h11{height:6.560000pt;}
.h12{height:6.720000pt;}
.h8{height:13.600000pt;}
.hc{height:14.880000pt;}
.h14{height:23.777270pt;}
.ha{height:29.501428pt;}
.h16{height:29.758708pt;}
.h10{height:30.141428pt;}
.h7{height:33.023987pt;}
.h17{height:33.311987pt;}
.h4{height:36.493425pt;}
.h3{height:36.546545pt;}
.h1{height:36.865265pt;}
.h15{height:40.862704pt;}
.h6{height:44.415982pt;}
.h5{height:51.517419pt;}
.h2{height:51.966699pt;}
.h0{height:1056.000000pt;}
.w5{width:0.160000pt;}
.w1{width:0.640000pt;}
.w2{width:5.440000pt;}
.w3{width:5.920000pt;}
.w4{width:318.720000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:80.479968pt;}
.x30{left:84.959966pt;}
.x2d{left:88.639965pt;}
.x11{left:96.479987pt;}
.x2f{left:97.759961pt;}
.x2e{left:100.479960pt;}
.x2{left:108.799956pt;}
.x17{left:129.919948pt;}
.x7{left:132.159808pt;}
.x9{left:139.680011pt;}
.x5{left:153.279442pt;}
.x6{left:154.399398pt;}
.x8{left:156.799814pt;}
.x18{left:187.519925pt;}
.x19{left:189.119924pt;}
.x10{left:207.039917pt;}
.x3{left:313.919157pt;}
.x31{left:383.840000pt;}
.x1d{left:408.000000pt;}
.x4{left:415.999834pt;}
.x1e{left:417.120000pt;}
.x12{left:423.196596pt;}
.xe{left:427.360204pt;}
.x1a{left:431.199828pt;}
.x28{left:432.799827pt;}
.x29{left:437.119825pt;}
.x2b{left:438.239825pt;}
.x13{left:439.192158pt;}
.x1c{left:443.519823pt;}
.x1f{left:445.919822pt;}
.x20{left:447.199790pt;}
.x2c{left:449.919820pt;}
.xc{left:458.240526pt;}
.xb{left:466.720275pt;}
.x16{left:475.199810pt;}
.x14{left:481.439807pt;}
.xd{left:482.880505pt;}
.xa{left:485.280215pt;}
.x22{left:522.880000pt;}
.x23{left:531.680000pt;}
.x2a{left:537.599785pt;}
.x15{left:558.720000pt;}
.x21{left:566.719773pt;}
.x24{left:575.520000pt;}
.x26{left:660.959736pt;}
.x25{left:666.399733pt;}
.x1b{left:680.959567pt;}
.x27{left:706.080000pt;}
.x1{left:735.679706pt;}
}




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