
    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_8ba39313cafbf010138ef17d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5f53d47dc369c2016723e436.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4ee45efb0d2b59a4c7c9fbfd.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_a5b46ce23c4e7664b461bac5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d3d9697cc2b9b5400444bef6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a35badc9b2f49fbf05dd1df1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.882324;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_c6bdf8dd55a08a432b6bcb84.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-84.959966px;}
.v2{vertical-align:-83.519967px;}
.v4{vertical-align:-61.919975px;}
.v5{vertical-align:-60.479976px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.439999px;}
.v1{vertical-align:48.239981px;}
.v7{vertical-align:61.919975px;}
.ls5{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.010553px;}
.ls6{letter-spacing:0.019800px;}
.ls1{letter-spacing:0.019814px;}
.ls13{letter-spacing:0.021238px;}
.ls8{letter-spacing:0.021240px;}
.ls7{letter-spacing:0.021282px;}
.ls16{letter-spacing:0.088560px;}
.lsa{letter-spacing:0.155880px;}
.ls17{letter-spacing:0.155901px;}
.ls0{letter-spacing:0.187140px;}
.ls3{letter-spacing:0.187843px;}
.ls4{letter-spacing:0.189289px;}
.ls21{letter-spacing:0.244500px;}
.ls10{letter-spacing:0.375684px;}
.ls2{letter-spacing:0.375686px;}
.ls14{letter-spacing:0.382528px;}
.ls18{letter-spacing:0.539400px;}
.ls12{letter-spacing:0.741660px;}
.ls15{letter-spacing:2.171879px;}
.ls11{letter-spacing:21.729051px;}
.lse{letter-spacing:49.104580px;}
.lsf{letter-spacing:93.049763px;}
.lsd{letter-spacing:94.561762px;}
.lsb{letter-spacing:194.525322px;}
.ls9{letter-spacing:237.750505px;}
.ls20{letter-spacing:273.944890px;}
.ls1b{letter-spacing:310.685634px;}
.ls1e{letter-spacing:310.685876px;}
.ls1d{letter-spacing:330.136668px;}
.ls1a{letter-spacing:330.136772px;}
.ls1c{letter-spacing:338.781722px;}
.ls1f{letter-spacing:338.782064px;}
.ls19{letter-spacing:553.464979px;}
.lsc{letter-spacing:1223.291511px;}
.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;}
}
.ws8{word-spacing:-55.943978px;}
.ws1{word-spacing:-26.999989px;}
.ws5{word-spacing:-17.999993px;}
.ws4{word-spacing:-16.559993px;}
.ws2{word-spacing:-14.939994px;}
.ws7{word-spacing:-13.875678px;}
.ws6{word-spacing:-13.499995px;}
.ws0{word-spacing:-12.059995px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-2.062238px;}
._0{margin-left:-1.030413px;}
._1{width:1.126876px;}
._5{width:2.233282px;}
._7{width:3.330922px;}
._6{width:4.931269px;}
._3{width:6.762800px;}
._4{width:7.825541px;}
._d{width:8.863056px;}
._b{width:9.898378px;}
._c{width:11.214597px;}
._e{width:12.337577px;}
._8{width:14.085974px;}
._a{width:15.182773px;}
._11{width:16.311161px;}
._12{width:19.369976px;}
._13{width:20.392995px;}
._46{width:22.422794px;}
._f{width:23.462245px;}
._10{width:25.431983px;}
._40{width:26.695452px;}
._4a{width:28.384758px;}
._15{width:44.411982px;}
._47{width:46.031090px;}
._20{width:50.219753px;}
._42{width:51.675811px;}
._43{width:53.045779px;}
._49{width:54.889388px;}
._3f{width:57.954335px;}
._45{width:59.115353px;}
._44{width:67.006682px;}
._48{width:71.411883px;}
._22{width:72.781095px;}
._1f{width:74.221694px;}
._1e{width:82.146491px;}
._4b{width:92.935312px;}
._4c{width:94.645317px;}
._41{width:100.057680px;}
._2e{width:102.101524px;}
._2b{width:104.764361px;}
._24{width:111.217590px;}
._28{width:112.347783px;}
._39{width:123.388151px;}
._27{width:129.419764px;}
._25{width:130.668725px;}
._19{width:134.626888px;}
._18{width:138.019414px;}
._33{width:152.517539px;}
._32{width:155.903392px;}
._3a{width:157.752442px;}
._2d{width:165.785116px;}
._17{width:169.577862px;}
._29{width:173.753767px;}
._34{width:179.285011px;}
._1c{width:187.098525px;}
._1b{width:191.793781px;}
._14{width:194.525202px;}
._3b{width:195.593657px;}
._36{width:196.919810px;}
._3e{width:198.360715px;}
._37{width:200.415520px;}
._3d{width:206.285212px;}
._38{width:218.206790px;}
._23{width:221.421682px;}
._2c{width:227.469680px;}
._31{width:231.706614px;}
._16{width:237.751105px;}
._35{width:240.180387px;}
._30{width:242.843123px;}
._26{width:254.807734px;}
._2a{width:269.481663px;}
._1a{width:278.141148px;}
._2f{width:290.433484px;}
._3c{width:293.511483px;}
._21{width:360.394236px;}
._1d{width:559.947376px;}
._2{width:1910.081236px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(84,84,84);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.879984px;}
.fs0{font-size:48.239981px;}
.fs6{font-size:53.999978px;}
.fs1{font-size:59.759976px;}
.fsa{font-size:63.359975px;}
.fs9{font-size:66.239974px;}
.fs5{font-size:69.119972px;}
.fs2{font-size:71.999971px;}
.fs7{font-size:84.239966px;}
.fs4{font-size:107.999957px;}
.fs3{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.y2e{bottom:5.038962px;}
.y34{bottom:57.180277px;}
.y3{bottom:58.620277px;}
.y33{bottom:70.860272px;}
.y2{bottom:77.880269px;}
.y32{bottom:84.720266px;}
.y59{bottom:86.160266px;}
.y1{bottom:93.180263px;}
.y31{bottom:98.580261px;}
.y151{bottom:114.419954px;}
.yd6{bottom:115.679954px;}
.y14d{bottom:116.039954px;}
.y2c{bottom:120.720252px;}
.y17b{bottom:122.159951px;}
.y57{bottom:122.880251px;}
.yb6{bottom:125.939950px;}
.yc6{bottom:126.119950px;}
.y11e{bottom:131.699947px;}
.yf6{bottom:134.939946px;}
.y79{bottom:136.560245px;}
.y2a{bottom:137.820245px;}
.y2b{bottom:144.660242px;}
.y150{bottom:145.559942px;}
.yb5{bottom:146.639941px;}
.yd5{bottom:146.819941px;}
.y14c{bottom:147.179941px;}
.y56{bottom:149.340240px;}
.y1b6{bottom:149.519940px;}
.y195{bottom:152.219939px;}
.y17a{bottom:153.119939px;}
.y29{bottom:155.099938px;}
.yc5{bottom:157.079937px;}
.y11d{bottom:162.839935px;}
.y78{bottom:165.359934px;}
.yf5{bottom:166.079934px;}
.yb4{bottom:167.339933px;}
.y9a{bottom:167.519933px;}
.y28{bottom:172.379931px;}
.yd4{bottom:177.779929px;}
.y14b{bottom:178.139929px;}
.y1b5{bottom:180.659928px;}
.y194{bottom:183.179927px;}
.y15c{bottom:183.899926px;}
.y179{bottom:184.259926px;}
.y55{bottom:184.439926px;}
.yb3{bottom:188.039925px;}
.yc4{bottom:188.219925px;}
.y27{bottom:189.659924px;}
.y11c{bottom:193.799922px;}
.y77{bottom:196.499921px;}
.y99{bottom:198.479921px;}
.y26{bottom:206.939917px;}
.yb2{bottom:208.739917px;}
.yd3{bottom:208.919916px;}
.y14a{bottom:209.279916px;}
.y1b4{bottom:211.619915px;}
.y54{bottom:212.879915px;}
.y193{bottom:214.319914px;}
.y178{bottom:215.219914px;}
.yc3{bottom:219.179912px;}
.y25{bottom:224.219910px;}
.y11b{bottom:224.939910px;}
.y76{bottom:227.099909px;}
.yb1{bottom:229.439908px;}
.y98{bottom:229.619908px;}
.y15b{bottom:236.099906px;}
.yd2{bottom:239.879904px;}
.y149{bottom:240.239904px;}
.y24{bottom:241.319903px;}
.y1b3{bottom:242.759903px;}
.y192{bottom:245.279902px;}
.y177{bottom:246.359901px;}
.yc2{bottom:250.319900px;}
.yf4{bottom:251.759899px;}
.y11a{bottom:255.899898px;}
.y23{bottom:258.599897px;}
.y97{bottom:260.579896px;}
.y53{bottom:269.759892px;}
.yd1{bottom:271.019892px;}
.y148{bottom:271.379891px;}
.y1b2{bottom:273.719891px;}
.y22{bottom:275.879890px;}
.y191{bottom:276.419889px;}
.y176{bottom:277.319889px;}
.yc1{bottom:281.279887px;}
.yf3{bottom:282.539887px;}
.y118{bottom:287.039885px;}
.y15a{bottom:288.479885px;}
.y75{bottom:289.559884px;}
.y108{bottom:291.539883px;}
.y96{bottom:291.719883px;}
.y21{bottom:293.159883px;}
.y119{bottom:295.319882px;}
.y52{bottom:298.199881px;}
.yf2{bottom:298.379881px;}
.yd0{bottom:301.979879px;}
.y147{bottom:302.339879px;}
.y1b1{bottom:304.859878px;}
.y190{bottom:307.379877px;}
.y175{bottom:308.459877px;}
.y20{bottom:310.439876px;}
.yc0{bottom:312.419875px;}
.y117{bottom:317.999873px;}
.y74{bottom:320.699872px;}
.y95{bottom:322.679871px;}
.y51{bottom:326.639869px;}
.y1f{bottom:327.719869px;}
.yf1{bottom:329.519868px;}
.ycf{bottom:333.119867px;}
.y146{bottom:333.479867px;}
.y1b0{bottom:335.819866px;}
.y18f{bottom:338.519865px;}
.y174{bottom:339.419864px;}
.y159{bottom:340.679864px;}
.ybf{bottom:343.379863px;}
.y1e{bottom:344.819862px;}
.yf0{bottom:344.999862px;}
.y116{bottom:349.139860px;}
.y73{bottom:351.659859px;}
.y107{bottom:353.639859px;}
.y94{bottom:353.819858px;}
.y50{bottom:355.259858px;}
.y1d{bottom:362.099855px;}
.yce{bottom:364.079854px;}
.y145{bottom:364.439854px;}
.y1af{bottom:366.959853px;}
.y18e{bottom:369.479852px;}
.y173{bottom:370.559852px;}
.ybe{bottom:374.519850px;}
.ydb{bottom:374.699850px;}
.yef{bottom:376.139850px;}
.y1c{bottom:379.379848px;}
.y115{bottom:380.099848px;}
.y72{bottom:382.799847px;}
.y4f{bottom:383.699847px;}
.y93{bottom:384.779846px;}
.y144{bottom:385.319846px;}
.yee{bottom:391.619843px;}
.y158{bottom:393.059843px;}
.ycd{bottom:395.219842px;}
.yda{bottom:395.399842px;}
.y1b{bottom:396.659841px;}
.y1ae{bottom:397.919841px;}
.y18d{bottom:400.439840px;}
.y172{bottom:401.519839px;}
.ybd{bottom:405.479838px;}
.y143{bottom:406.019838px;}
.y114{bottom:411.239836px;}
.y4e{bottom:412.139835px;}
.y71{bottom:413.759834px;}
.y1a{bottom:413.939834px;}
.y106{bottom:415.739834px;}
.y92{bottom:415.919834px;}
.yd9{bottom:416.099834px;}
.yed{bottom:422.219831px;}
.ycc{bottom:426.179830px;}
.y142{bottom:426.719829px;}
.y1ad{bottom:429.059828px;}
.y19{bottom:431.039828px;}
.y18c{bottom:431.579827px;}
.y171{bottom:432.659827px;}
.ybc{bottom:436.439825px;}
.yd8{bottom:436.619825px;}
.yec{bottom:438.059825px;}
.y4d{bottom:440.579824px;}
.y112{bottom:442.199823px;}
.y70{bottom:444.899822px;}
.y157{bottom:445.259822px;}
.y91{bottom:446.879821px;}
.y18{bottom:448.319821px;}
.y113{bottom:450.479820px;}
.ycb{bottom:457.139817px;}
.yd7{bottom:457.319817px;}
.y1ac{bottom:460.019816px;}
.y141{bottom:462.539815px;}
.y170{bottom:463.619815px;}
.ybb{bottom:467.579813px;}
.yb0{bottom:467.759813px;}
.y4c{bottom:469.019812px;}
.yeb{bottom:469.199812px;}
.y111{bottom:473.159811px;}
.y17{bottom:473.519811px;}
.y6f{bottom:475.859810px;}
.y90{bottom:477.839809px;}
.y140{bottom:478.739809px;}
.yca{bottom:488.279805px;}
.y1ab{bottom:491.159804px;}
.y18b{bottom:493.679803px;}
.y13f{bottom:493.859802px;}
.y110{bottom:494.039802px;}
.y16f{bottom:494.759802px;}
.y164{bottom:496.559801px;}
.y4b{bottom:497.459801px;}
.yaf{bottom:498.539801px;}
.yea{bottom:500.339800px;}
.y6e{bottom:506.999797px;}
.y8f{bottom:508.979796px;}
.y16{bottom:509.159796px;}
.y13e{bottom:510.599796px;}
.ye9{bottom:515.819794px;}
.yc9{bottom:519.239792px;}
.y1aa{bottom:522.119791px;}
.y18a{bottom:524.639790px;}
.y10f{bottom:524.999790px;}
.y13d{bottom:525.719790px;}
.y4a{bottom:525.899790px;}
.y163{bottom:527.519789px;}
.yae{bottom:529.679788px;}
.y15{bottom:533.279787px;}
.y6d{bottom:537.959785px;}
.y8e{bottom:539.939784px;}
.y13c{bottom:542.279783px;}
.y10e{bottom:545.879782px;}
.ye8{bottom:546.959781px;}
.y156{bottom:549.839780px;}
.yc8{bottom:550.379780px;}
.y1a9{bottom:553.259779px;}
.y49{bottom:554.339778px;}
.y189{bottom:555.779778px;}
.y16e{bottom:556.499777px;}
.y13b{bottom:557.939777px;}
.yad{bottom:560.639776px;}
.y8d{bottom:560.819776px;}
.ye7{bottom:562.439775px;}
.y6c{bottom:568.919772px;}
.y14{bottom:570.719772px;}
.y105{bottom:570.899772px;}
.y10d{bottom:572.519771px;}
.y13a{bottom:573.419771px;}
.ye6{bottom:577.919769px;}
.yc7{bottom:581.339767px;}
.y8c{bottom:581.519767px;}
.y48{bottom:582.779767px;}
.y1a8{bottom:584.219766px;}
.y188{bottom:586.739765px;}
.y16d{bottom:587.459765px;}
.y139{bottom:589.619764px;}
.yac{bottom:591.779763px;}
.ye5{bottom:593.399763px;}
.y13{bottom:594.839762px;}
.y6b{bottom:600.059760px;}
.y104{bottom:602.039759px;}
.y12{bottom:604.559758px;}
.y138{bottom:604.919758px;}
.ye4{bottom:608.519757px;}
.y47{bottom:611.399755px;}
.y8b{bottom:612.479755px;}
.y11{bottom:614.099754px;}
.y1a7{bottom:615.359754px;}
.y187{bottom:617.879753px;}
.y16c{bottom:618.959752px;}
.y162{bottom:620.759752px;}
.y137{bottom:621.479751px;}
.yab{bottom:622.739751px;}
.ye3{bottom:624.539750px;}
.y6a{bottom:631.019748px;}
.y103{bottom:633.179747px;}
.y136{bottom:636.599745px;}
.y46{bottom:639.839744px;}
.y10{bottom:641.279743px;}
.y8a{bottom:643.439743px;}
.y1a6{bottom:646.319741px;}
.y186{bottom:648.839740px;}
.y161{bottom:651.719739px;}
.y135{bottom:653.339739px;}
.yaa{bottom:653.879738px;}
.y155{bottom:654.419738px;}
.ye2{bottom:655.679738px;}
.y69{bottom:662.159735px;}
.y102{bottom:664.139734px;}
.y16b{bottom:665.939734px;}
.y45{bottom:668.279733px;}
.y134{bottom:668.459733px;}
.ye1{bottom:671.159732px;}
.yf{bottom:672.239731px;}
.y89{bottom:674.579730px;}
.y1a5{bottom:677.459729px;}
.y185{bottom:679.979728px;}
.y160{bottom:682.859727px;}
.ya9{bottom:684.839726px;}
.y133{bottom:685.019726px;}
.y16a{bottom:686.639725px;}
.y68{bottom:693.119723px;}
.y101{bottom:695.279722px;}
.y44{bottom:696.719721px;}
.y132{bottom:700.679720px;}
.ye0{bottom:702.119719px;}
.y88{bottom:705.539718px;}
.y154{bottom:706.619717px;}
.y1a4{bottom:708.419717px;}
.ye{bottom:708.779716px;}
.y184{bottom:710.939716px;}
.y169{bottom:712.019715px;}
.y15f{bottom:713.819714px;}
.ya8{bottom:715.979714px;}
.y131{bottom:716.159714px;}
.y153{bottom:722.099711px;}
.y67{bottom:724.259710px;}
.y43{bottom:725.159710px;}
.y100{bottom:726.239710px;}
.y130{bottom:732.359707px;}
.ydf{bottom:736.139706px;}
.y87{bottom:736.679705px;}
.yd{bottom:737.039705px;}
.y152{bottom:737.759705px;}
.y1a3{bottom:739.559704px;}
.y183{bottom:742.079703px;}
.y168{bottom:743.159703px;}
.ya7{bottom:746.939701px;}
.y12f{bottom:747.479701px;}
.y42{bottom:753.599699px;}
.yc{bottom:754.319698px;}
.y66{bottom:755.219698px;}
.yff{bottom:757.379697px;}
.y12d{bottom:764.219694px;}
.y86{bottom:767.639693px;}
.y1a2{bottom:770.519692px;}
.yb{bottom:771.599691px;}
.y182{bottom:773.039691px;}
.y167{bottom:774.119690px;}
.ya6{bottom:778.079689px;}
.y12c{bottom:779.699688px;}
.y41{bottom:782.039687px;}
.y65{bottom:786.359685px;}
.yfe{bottom:788.339685px;}
.yde{bottom:789.959684px;}
.y14f{bottom:791.219684px;}
.y12b{bottom:794.819682px;}
.y12e{bottom:795.179682px;}
.ya{bottom:796.979681px;}
.y85{bottom:798.779680px;}
.y1a1{bottom:801.659679px;}
.y181{bottom:804.179678px;}
.y166{bottom:805.259678px;}
.ya5{bottom:809.039676px;}
.y40{bottom:810.119676px;}
.y129{bottom:811.559675px;}
.y14e{bottom:811.919675px;}
.y64{bottom:817.319673px;}
.yfd{bottom:819.479672px;}
.y128{bottom:827.039669px;}
.y84{bottom:829.739668px;}
.y9{bottom:829.919668px;}
.y165{bottom:831.899667px;}
.y1a0{bottom:832.619667px;}
.y180{bottom:835.139666px;}
.y3f{bottom:838.919664px;}
.ya4{bottom:840.179664px;}
.y127{bottom:842.159663px;}
.y12a{bottom:842.519663px;}
.y63{bottom:848.459661px;}
.yfc{bottom:850.439660px;}
.y126{bottom:858.899656px;}
.y83{bottom:860.879656px;}
.y19f{bottom:863.759654px;}
.y17f{bottom:866.279653px;}
.y3e{bottom:867.539653px;}
.ya3{bottom:871.139652px;}
.y8{bottom:871.319651px;}
.y125{bottom:874.379650px;}
.y62{bottom:879.419648px;}
.yfb{bottom:881.579647px;}
.y124{bottom:889.859644px;}
.y82{bottom:891.839643px;}
.y19e{bottom:894.719642px;}
.y3d{bottom:895.979642px;}
.y17e{bottom:897.239641px;}
.ya2{bottom:902.279639px;}
.y123{bottom:906.239638px;}
.y61{bottom:910.559636px;}
.yfa{bottom:912.539635px;}
.y7{bottom:912.719635px;}
.y122{bottom:921.719631px;}
.y81{bottom:922.979631px;}
.yba{bottom:923.159631px;}
.y3c{bottom:924.419630px;}
.y19d{bottom:925.859630px;}
.y17d{bottom:928.379629px;}
.y15e{bottom:931.259627px;}
.ya1{bottom:933.239627px;}
.y60{bottom:941.519623px;}
.yf9{bottom:943.679623px;}
.y121{bottom:949.259620px;}
.y3b{bottom:952.859619px;}
.y80{bottom:953.939618px;}
.y6{bottom:954.119618px;}
.y19c{bottom:956.819617px;}
.y15d{bottom:962.219615px;}
.ya0{bottom:964.379614px;}
.y17c{bottom:967.259613px;}
.y5f{bottom:972.659611px;}
.yf8{bottom:974.639610px;}
.y120{bottom:977.699609px;}
.y1b7{bottom:980.039608px;}
.y3a{bottom:981.299607px;}
.y7f{bottom:985.079606px;}
.y19b{bottom:987.959605px;}
.y9f{bottom:995.339602px;}
.y5{bottom:995.519602px;}
.y5e{bottom:1003.619599px;}
.ydd{bottom:1005.959598px;}
.y39{bottom:1009.739596px;}
.y7e{bottom:1016.039594px;}
.yf7{bottom:1016.219594px;}
.y19a{bottom:1018.919592px;}
.y9e{bottom:1026.479589px;}
.ydc{bottom:1026.659589px;}
.y5d{bottom:1034.759586px;}
.y4{bottom:1036.919585px;}
.y38{bottom:1038.179585px;}
.y7d{bottom:1047.179581px;}
.y10c{bottom:1047.359581px;}
.y199{bottom:1050.059580px;}
.y5c{bottom:1065.719574px;}
.y37{bottom:1066.619573px;}
.yb9{bottom:1067.879573px;}
.y10b{bottom:1068.059573px;}
.y198{bottom:1070.939572px;}
.y7c{bottom:1078.139569px;}
.y9d{bottom:1078.319569px;}
.y11f{bottom:1086.419565px;}
.y10a{bottom:1088.759564px;}
.y2d{bottom:1089.120600px;}
.y197{bottom:1091.639563px;}
.y36{bottom:1095.059562px;}
.y5b{bottom:1095.779562px;}
.y7b{bottom:1108.919556px;}
.y9c{bottom:1109.279556px;}
.y109{bottom:1109.459556px;}
.y196{bottom:1111.979555px;}
.yb8{bottom:1119.719552px;}
.y35{bottom:1131.599547px;}
.y7a{bottom:1139.879544px;}
.y9b{bottom:1140.239544px;}
.yb7{bottom:1140.419544px;}
.y5a{bottom:1141.679543px;}
.y58{bottom:1177.319529px;}
.y30{bottom:1181.279527px;}
.y2f{bottom:1196.759521px;}
.hd{height:23.760000px;}
.hc{height:38.158578px;}
.h16{height:47.321348px;}
.h1{height:47.344903px;}
.h5{height:47.988262px;}
.h1c{height:48.616856px;}
.h17{height:52.971658px;}
.h7{height:52.998026px;}
.h14{height:54.421853px;}
.h18{height:54.438025px;}
.h15{height:56.320290px;}
.hb{height:58.621969px;}
.h2{height:58.651148px;}
.h1d{height:60.226851px;}
.h11{height:62.153413px;}
.h10{height:65.010911px;}
.hf{height:66.757473px;}
.h12{height:70.628878px;}
.h3{height:70.664034px;}
.h9{height:71.982393px;}
.ha{height:72.562471px;}
.h13{height:75.093720px;}
.h8{height:82.676920px;}
.he{height:108.843706px;}
.h19{height:114.918001px;}
.h1b{height:115.611633px;}
.h1a{height:115.638001px;}
.h6{height:116.077454px;}
.h4{height:141.328068px;}
.h0{height:1263.000000px;}
.w1{width:8.280000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x53{left:95.756933px;}
.x1{left:106.379957px;}
.x26{left:111.960210px;}
.x13{left:115.019954px;}
.xb{left:125.639950px;}
.xe{left:128.519949px;}
.x1f{left:130.500109px;}
.xa{left:136.980281px;}
.x9{left:145.980275px;}
.xf{left:159.119936px;}
.x19{left:163.259935px;}
.x1e{left:170.279448px;}
.x35{left:171.899935px;}
.x27{left:176.219930px;}
.x28{left:182.339927px;}
.x45{left:206.279917px;}
.x1b{left:210.959916px;}
.x46{left:212.399915px;}
.x1c{left:214.919914px;}
.x36{left:216.000732px;}
.x37{left:231.299981px;}
.x3d{left:242.639903px;}
.x3e{left:248.759900px;}
.x2b{left:251.639899px;}
.x31{left:255.599898px;}
.x21{left:258.659897px;}
.x32{left:268.559902px;}
.x33{left:278.459907px;}
.x23{left:285.661880px;}
.x38{left:304.200006px;}
.x30{left:306.899877px;}
.x22{left:312.660790px;}
.x6{left:318.599559px;}
.x2a{left:319.679872px;}
.x16{left:345.599862px;}
.x49{left:373.859850px;}
.x39{left:375.119967px;}
.x4a{left:379.979848px;}
.x44{left:382.679847px;}
.x43{left:384.479846px;}
.x2d{left:389.519844px;}
.x20{left:390.779844px;}
.x34{left:391.859946px;}
.x1a{left:393.299843px;}
.x2e{left:395.099842px;}
.x17{left:396.179842px;}
.xc{left:397.259699px;}
.x24{left:418.499833px;}
.x10{left:424.439830px;}
.x8{left:446.399821px;}
.x29{left:458.639817px;}
.x3a{left:461.159954px;}
.x2{left:464.039814px;}
.x3{left:467.639813px;}
.x4f{left:473.039343px;}
.x50{left:478.438477px;}
.x2f{left:483.119807px;}
.x3f{left:504.359798px;}
.x40{left:510.479796px;}
.x4d{left:527.579789px;}
.x4e{left:533.699787px;}
.x47{left:553.319779px;}
.x3b{left:554.579906px;}
.x48{left:559.439776px;}
.x7{left:574.199770px;}
.x2c{left:580.860316px;}
.x14{left:620.819752px;}
.x4b{left:622.259751px;}
.x15{left:624.779750px;}
.x4c{left:628.379749px;}
.x3c{left:695.699941px;}
.x11{left:707.219717px;}
.x51{left:708.659717px;}
.x4{left:714.599714px;}
.x25{left:717.119713px;}
.x52{left:719.099712px;}
.x5{left:725.039710px;}
.x18{left:734.039706px;}
.x1d{left:744.119702px;}
.x41{left:761.039696px;}
.x42{left:767.159693px;}
.xd{left:786.599685px;}
.x12{left:823.140000px;}
@media print{
.v3{vertical-align:-75.519970pt;}
.v2{vertical-align:-74.239970pt;}
.v4{vertical-align:-55.039978pt;}
.v5{vertical-align:-53.759978pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.279999pt;}
.v1{vertical-align:42.879983pt;}
.v7{vertical-align:55.039978pt;}
.ls5{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.009381pt;}
.ls6{letter-spacing:0.017600pt;}
.ls1{letter-spacing:0.017613pt;}
.ls13{letter-spacing:0.018878pt;}
.ls8{letter-spacing:0.018880pt;}
.ls7{letter-spacing:0.018917pt;}
.ls16{letter-spacing:0.078720pt;}
.lsa{letter-spacing:0.138560pt;}
.ls17{letter-spacing:0.138579pt;}
.ls0{letter-spacing:0.166347pt;}
.ls3{letter-spacing:0.166972pt;}
.ls4{letter-spacing:0.168257pt;}
.ls21{letter-spacing:0.217333pt;}
.ls10{letter-spacing:0.333941pt;}
.ls2{letter-spacing:0.333943pt;}
.ls14{letter-spacing:0.340024pt;}
.ls18{letter-spacing:0.479466pt;}
.ls12{letter-spacing:0.659253pt;}
.ls15{letter-spacing:1.930559pt;}
.ls11{letter-spacing:19.314712pt;}
.lse{letter-spacing:43.648516pt;}
.lsf{letter-spacing:82.710900pt;}
.lsd{letter-spacing:84.054900pt;}
.lsb{letter-spacing:172.911398pt;}
.ls9{letter-spacing:211.333782pt;}
.ls20{letter-spacing:243.506569pt;}
.ls1b{letter-spacing:276.165008pt;}
.ls1e{letter-spacing:276.165223pt;}
.ls1d{letter-spacing:293.454816pt;}
.ls1a{letter-spacing:293.454908pt;}
.ls1c{letter-spacing:301.139308pt;}
.ls1f{letter-spacing:301.139613pt;}
.ls19{letter-spacing:491.968870pt;}
.lsc{letter-spacing:1087.370232pt;}
.ws8{word-spacing:-49.727980pt;}
.ws1{word-spacing:-23.999990pt;}
.ws5{word-spacing:-15.999994pt;}
.ws4{word-spacing:-14.719994pt;}
.ws2{word-spacing:-13.279995pt;}
.ws7{word-spacing:-12.333936pt;}
.ws6{word-spacing:-11.999995pt;}
.ws0{word-spacing:-10.719996pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-1.833101pt;}
._0{margin-left:-0.915923pt;}
._1{width:1.001667pt;}
._5{width:1.985139pt;}
._7{width:2.960819pt;}
._6{width:4.383350pt;}
._3{width:6.011377pt;}
._4{width:6.956037pt;}
._d{width:7.878272pt;}
._b{width:8.798558pt;}
._c{width:9.968531pt;}
._e{width:10.966735pt;}
._8{width:12.520866pt;}
._a{width:13.495799pt;}
._11{width:14.498810pt;}
._12{width:17.217757pt;}
._13{width:18.127106pt;}
._46{width:19.931372pt;}
._f{width:20.855328pt;}
._10{width:22.606207pt;}
._40{width:23.729291pt;}
._4a{width:25.230896pt;}
._15{width:39.477318pt;}
._47{width:40.916524pt;}
._20{width:44.639780pt;}
._42{width:45.934054pt;}
._43{width:47.151804pt;}
._49{width:48.790567pt;}
._3f{width:51.514964pt;}
._45{width:52.546980pt;}
._44{width:59.561496pt;}
._48{width:63.477229pt;}
._22{width:64.694306pt;}
._1f{width:65.974839pt;}
._1e{width:73.019103pt;}
._4b{width:82.609166pt;}
._4c{width:84.129171pt;}
._41{width:88.940160pt;}
._2e{width:90.756911pt;}
._2b{width:93.123876pt;}
._24{width:98.860080pt;}
._28{width:99.864696pt;}
._39{width:109.678356pt;}
._27{width:115.039791pt;}
._25{width:116.149978pt;}
._19{width:119.668345pt;}
._18{width:122.683923pt;}
._33{width:135.571146pt;}
._32{width:138.580793pt;}
._3a{width:140.224393pt;}
._2d{width:147.364548pt;}
._17{width:150.735878pt;}
._29{width:154.447792pt;}
._34{width:159.364454pt;}
._1c{width:166.309800pt;}
._1b{width:170.483361pt;}
._14{width:172.911291pt;}
._3b{width:173.861028pt;}
._36{width:175.039831pt;}
._3e{width:176.320635pt;}
._37{width:178.147129pt;}
._3d{width:183.364633pt;}
._38{width:193.961591pt;}
._23{width:196.819273pt;}
._2c{width:202.195271pt;}
._31{width:205.961435pt;}
._16{width:211.334315pt;}
._35{width:213.493677pt;}
._30{width:215.860554pt;}
._26{width:226.495764pt;}
._2a{width:239.539256pt;}
._1a{width:247.236576pt;}
._2f{width:258.163097pt;}
._3c{width:260.899096pt;}
._21{width:320.350432pt;}
._1d{width:497.731001pt;}
._2{width:1697.849988pt;}
.fs8{font-size:34.559986pt;}
.fs0{font-size:42.879983pt;}
.fs6{font-size:47.999981pt;}
.fs1{font-size:53.119979pt;}
.fsa{font-size:56.319977pt;}
.fs9{font-size:58.879976pt;}
.fs5{font-size:61.439975pt;}
.fs2{font-size:63.999974pt;}
.fs7{font-size:74.879970pt;}
.fs4{font-size:95.999962pt;}
.fs3{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:4.479078pt;}
.y34{bottom:50.826913pt;}
.y3{bottom:52.106912pt;}
.y33{bottom:62.986908pt;}
.y2{bottom:69.226906pt;}
.y32{bottom:75.306903pt;}
.y59{bottom:76.586903pt;}
.y1{bottom:82.826900pt;}
.y31{bottom:87.626898pt;}
.y151{bottom:101.706626pt;}
.yd6{bottom:102.826626pt;}
.y14d{bottom:103.146625pt;}
.y2c{bottom:107.306890pt;}
.y17b{bottom:108.586623pt;}
.y57{bottom:109.226890pt;}
.yb6{bottom:111.946622pt;}
.yc6{bottom:112.106622pt;}
.y11e{bottom:117.066620pt;}
.yf6{bottom:119.946619pt;}
.y79{bottom:121.386885pt;}
.y2a{bottom:122.506884pt;}
.y2b{bottom:128.586882pt;}
.y150{bottom:129.386615pt;}
.yb5{bottom:130.346615pt;}
.yd5{bottom:130.506614pt;}
.y14c{bottom:130.826614pt;}
.y56{bottom:132.746880pt;}
.y1b6{bottom:132.906614pt;}
.y195{bottom:135.306613pt;}
.y17a{bottom:136.106612pt;}
.y29{bottom:137.866612pt;}
.yc5{bottom:139.626611pt;}
.y11d{bottom:144.746609pt;}
.y78{bottom:146.986608pt;}
.yf5{bottom:147.626608pt;}
.yb4{bottom:148.746607pt;}
.y9a{bottom:148.906607pt;}
.y28{bottom:153.226605pt;}
.yd4{bottom:158.026603pt;}
.y14b{bottom:158.346603pt;}
.y1b5{bottom:160.586602pt;}
.y194{bottom:162.826602pt;}
.y15c{bottom:163.466601pt;}
.y179{bottom:163.786601pt;}
.y55{bottom:163.946601pt;}
.yb3{bottom:167.146600pt;}
.yc4{bottom:167.306600pt;}
.y27{bottom:168.586599pt;}
.y11c{bottom:172.266598pt;}
.y77{bottom:174.666597pt;}
.y99{bottom:176.426596pt;}
.y26{bottom:183.946593pt;}
.yb2{bottom:185.546592pt;}
.yd3{bottom:185.706592pt;}
.y14a{bottom:186.026592pt;}
.y1b4{bottom:188.106591pt;}
.y54{bottom:189.226591pt;}
.y193{bottom:190.506590pt;}
.y178{bottom:191.306590pt;}
.yc3{bottom:194.826589pt;}
.y25{bottom:199.306587pt;}
.y11b{bottom:199.946587pt;}
.y76{bottom:201.866586pt;}
.yb1{bottom:203.946585pt;}
.y98{bottom:204.106585pt;}
.y15b{bottom:209.866583pt;}
.yd2{bottom:213.226581pt;}
.y149{bottom:213.546581pt;}
.y24{bottom:214.506581pt;}
.y1b3{bottom:215.786580pt;}
.y192{bottom:218.026579pt;}
.y177{bottom:218.986579pt;}
.yc2{bottom:222.506578pt;}
.yf4{bottom:223.786577pt;}
.y11a{bottom:227.466576pt;}
.y23{bottom:229.866575pt;}
.y97{bottom:231.626574pt;}
.y53{bottom:239.786571pt;}
.yd1{bottom:240.906570pt;}
.y148{bottom:241.226570pt;}
.y1b2{bottom:243.306569pt;}
.y22{bottom:245.226569pt;}
.y191{bottom:245.706568pt;}
.y176{bottom:246.506568pt;}
.yc1{bottom:250.026567pt;}
.yf3{bottom:251.146566pt;}
.y118{bottom:255.146565pt;}
.y15a{bottom:256.426564pt;}
.y75{bottom:257.386564pt;}
.y108{bottom:259.146563pt;}
.y96{bottom:259.306563pt;}
.y21{bottom:260.586562pt;}
.y119{bottom:262.506562pt;}
.y52{bottom:265.066561pt;}
.yf2{bottom:265.226561pt;}
.yd0{bottom:268.426559pt;}
.y147{bottom:268.746559pt;}
.y1b1{bottom:270.986558pt;}
.y190{bottom:273.226557pt;}
.y175{bottom:274.186557pt;}
.y20{bottom:275.946556pt;}
.yc0{bottom:277.706556pt;}
.y117{bottom:282.666554pt;}
.y74{bottom:285.066553pt;}
.y95{bottom:286.826552pt;}
.y51{bottom:290.346551pt;}
.y1f{bottom:291.306550pt;}
.yf1{bottom:292.906550pt;}
.ycf{bottom:296.106548pt;}
.y146{bottom:296.426548pt;}
.y1b0{bottom:298.506547pt;}
.y18f{bottom:300.906546pt;}
.y174{bottom:301.706546pt;}
.y159{bottom:302.826546pt;}
.ybf{bottom:305.226545pt;}
.y1e{bottom:306.506544pt;}
.yf0{bottom:306.666544pt;}
.y116{bottom:310.346543pt;}
.y73{bottom:312.586542pt;}
.y107{bottom:314.346541pt;}
.y94{bottom:314.506541pt;}
.y50{bottom:315.786540pt;}
.y1d{bottom:321.866538pt;}
.yce{bottom:323.626537pt;}
.y145{bottom:323.946537pt;}
.y1af{bottom:326.186536pt;}
.y18e{bottom:328.426535pt;}
.y173{bottom:329.386535pt;}
.ybe{bottom:332.906534pt;}
.ydb{bottom:333.066533pt;}
.yef{bottom:334.346533pt;}
.y1c{bottom:337.226532pt;}
.y115{bottom:337.866532pt;}
.y72{bottom:340.266531pt;}
.y4f{bottom:341.066530pt;}
.y93{bottom:342.026530pt;}
.y144{bottom:342.506530pt;}
.yee{bottom:348.106527pt;}
.y158{bottom:349.386527pt;}
.ycd{bottom:351.306526pt;}
.yda{bottom:351.466526pt;}
.y1b{bottom:352.586526pt;}
.y1ae{bottom:353.706525pt;}
.y18d{bottom:355.946524pt;}
.y172{bottom:356.906524pt;}
.ybd{bottom:360.426522pt;}
.y143{bottom:360.906522pt;}
.y114{bottom:365.546520pt;}
.y4e{bottom:366.346520pt;}
.y71{bottom:367.786520pt;}
.y1a{bottom:367.946519pt;}
.y106{bottom:369.546519pt;}
.y92{bottom:369.706519pt;}
.yd9{bottom:369.866519pt;}
.yed{bottom:375.306517pt;}
.ycc{bottom:378.826515pt;}
.y142{bottom:379.306515pt;}
.y1ad{bottom:381.386514pt;}
.y19{bottom:383.146513pt;}
.y18c{bottom:383.626513pt;}
.y171{bottom:384.586513pt;}
.ybc{bottom:387.946511pt;}
.yd8{bottom:388.106511pt;}
.yec{bottom:389.386511pt;}
.y4d{bottom:391.626510pt;}
.y112{bottom:393.066509pt;}
.y70{bottom:395.466508pt;}
.y157{bottom:395.786508pt;}
.y91{bottom:397.226508pt;}
.y18{bottom:398.506507pt;}
.y113{bottom:400.426506pt;}
.ycb{bottom:406.346504pt;}
.yd7{bottom:406.506504pt;}
.y1ac{bottom:408.906503pt;}
.y141{bottom:411.146502pt;}
.y170{bottom:412.106502pt;}
.ybb{bottom:415.626500pt;}
.yb0{bottom:415.786500pt;}
.y4c{bottom:416.906500pt;}
.yeb{bottom:417.066500pt;}
.y111{bottom:420.586498pt;}
.y17{bottom:420.906498pt;}
.y6f{bottom:422.986497pt;}
.y90{bottom:424.746497pt;}
.y140{bottom:425.546496pt;}
.yca{bottom:434.026493pt;}
.y1ab{bottom:436.586492pt;}
.y18b{bottom:438.826491pt;}
.y13f{bottom:438.986491pt;}
.y110{bottom:439.146491pt;}
.y16f{bottom:439.786491pt;}
.y164{bottom:441.386490pt;}
.y4b{bottom:442.186490pt;}
.yaf{bottom:443.146489pt;}
.yea{bottom:444.746489pt;}
.y6e{bottom:450.666486pt;}
.y8f{bottom:452.426486pt;}
.y16{bottom:452.586486pt;}
.y13e{bottom:453.866485pt;}
.ye9{bottom:458.506483pt;}
.yc9{bottom:461.546482pt;}
.y1aa{bottom:464.106481pt;}
.y18a{bottom:466.346480pt;}
.y10f{bottom:466.666480pt;}
.y13d{bottom:467.306480pt;}
.y4a{bottom:467.466480pt;}
.y163{bottom:468.906479pt;}
.yae{bottom:470.826478pt;}
.y15{bottom:474.026477pt;}
.y6d{bottom:478.186475pt;}
.y8e{bottom:479.946475pt;}
.y13c{bottom:482.026474pt;}
.y10e{bottom:485.226473pt;}
.ye8{bottom:486.186472pt;}
.y156{bottom:488.746471pt;}
.yc8{bottom:489.226471pt;}
.y1a9{bottom:491.786470pt;}
.y49{bottom:492.746470pt;}
.y189{bottom:494.026469pt;}
.y16e{bottom:494.666469pt;}
.y13b{bottom:495.946468pt;}
.yad{bottom:498.346467pt;}
.y8d{bottom:498.506467pt;}
.ye7{bottom:499.946467pt;}
.y6c{bottom:505.706464pt;}
.y14{bottom:507.306464pt;}
.y105{bottom:507.466464pt;}
.y10d{bottom:508.906463pt;}
.y13a{bottom:509.706463pt;}
.ye6{bottom:513.706461pt;}
.yc7{bottom:516.746460pt;}
.y8c{bottom:516.906460pt;}
.y48{bottom:518.026459pt;}
.y1a8{bottom:519.306459pt;}
.y188{bottom:521.546458pt;}
.y16d{bottom:522.186458pt;}
.y139{bottom:524.106457pt;}
.yac{bottom:526.026456pt;}
.ye5{bottom:527.466456pt;}
.y13{bottom:528.746455pt;}
.y6b{bottom:533.386453pt;}
.y104{bottom:535.146453pt;}
.y12{bottom:537.386452pt;}
.y138{bottom:537.706452pt;}
.ye4{bottom:540.906450pt;}
.y47{bottom:543.466449pt;}
.y8b{bottom:544.426449pt;}
.y11{bottom:545.866448pt;}
.y1a7{bottom:546.986448pt;}
.y187{bottom:549.226447pt;}
.y16c{bottom:550.186447pt;}
.y162{bottom:551.786446pt;}
.y137{bottom:552.426446pt;}
.yab{bottom:553.546445pt;}
.ye3{bottom:555.146445pt;}
.y6a{bottom:560.906442pt;}
.y103{bottom:562.826442pt;}
.y136{bottom:565.866440pt;}
.y46{bottom:568.746439pt;}
.y10{bottom:570.026439pt;}
.y8a{bottom:571.946438pt;}
.y1a6{bottom:574.506437pt;}
.y186{bottom:576.746436pt;}
.y161{bottom:579.306435pt;}
.y135{bottom:580.746434pt;}
.yaa{bottom:581.226434pt;}
.y155{bottom:581.706434pt;}
.ye2{bottom:582.826434pt;}
.y69{bottom:588.586431pt;}
.y102{bottom:590.346431pt;}
.y16b{bottom:591.946430pt;}
.y45{bottom:594.026429pt;}
.y134{bottom:594.186429pt;}
.ye1{bottom:596.586428pt;}
.yf{bottom:597.546428pt;}
.y89{bottom:599.626427pt;}
.y1a5{bottom:602.186426pt;}
.y185{bottom:604.426425pt;}
.y160{bottom:606.986424pt;}
.ya9{bottom:608.746423pt;}
.y133{bottom:608.906423pt;}
.y16a{bottom:610.346423pt;}
.y68{bottom:616.106420pt;}
.y101{bottom:618.026419pt;}
.y44{bottom:619.306419pt;}
.y132{bottom:622.826418pt;}
.ye0{bottom:624.106417pt;}
.y88{bottom:627.146416pt;}
.y154{bottom:628.106415pt;}
.y1a4{bottom:629.706415pt;}
.ye{bottom:630.026415pt;}
.y184{bottom:631.946414pt;}
.y169{bottom:632.906414pt;}
.y15f{bottom:634.506413pt;}
.ya8{bottom:636.426412pt;}
.y131{bottom:636.586412pt;}
.y153{bottom:641.866410pt;}
.y67{bottom:643.786409pt;}
.y43{bottom:644.586409pt;}
.y100{bottom:645.546408pt;}
.y130{bottom:650.986406pt;}
.ydf{bottom:654.346405pt;}
.y87{bottom:654.826405pt;}
.yd{bottom:655.146405pt;}
.y152{bottom:655.786404pt;}
.y1a3{bottom:657.386404pt;}
.y183{bottom:659.626403pt;}
.y168{bottom:660.586402pt;}
.ya7{bottom:663.946401pt;}
.y12f{bottom:664.426401pt;}
.y42{bottom:669.866399pt;}
.yc{bottom:670.506398pt;}
.y66{bottom:671.306398pt;}
.yff{bottom:673.226397pt;}
.y12d{bottom:679.306395pt;}
.y86{bottom:682.346394pt;}
.y1a2{bottom:684.906393pt;}
.yb{bottom:685.866392pt;}
.y182{bottom:687.146392pt;}
.y167{bottom:688.106391pt;}
.ya6{bottom:691.626390pt;}
.y12c{bottom:693.066389pt;}
.y41{bottom:695.146389pt;}
.y65{bottom:698.986387pt;}
.yfe{bottom:700.746386pt;}
.yde{bottom:702.186386pt;}
.y14f{bottom:703.306385pt;}
.y12b{bottom:706.506384pt;}
.y12e{bottom:706.826384pt;}
.ya{bottom:708.426383pt;}
.y85{bottom:710.026383pt;}
.y1a1{bottom:712.586382pt;}
.y181{bottom:714.826381pt;}
.y166{bottom:715.786380pt;}
.ya5{bottom:719.146379pt;}
.y40{bottom:720.106379pt;}
.y129{bottom:721.386378pt;}
.y14e{bottom:721.706378pt;}
.y64{bottom:726.506376pt;}
.yfd{bottom:728.426375pt;}
.y128{bottom:735.146373pt;}
.y84{bottom:737.546372pt;}
.y9{bottom:737.706372pt;}
.y165{bottom:739.466371pt;}
.y1a0{bottom:740.106371pt;}
.y180{bottom:742.346370pt;}
.y3f{bottom:745.706368pt;}
.ya4{bottom:746.826368pt;}
.y127{bottom:748.586367pt;}
.y12a{bottom:748.906367pt;}
.y63{bottom:754.186365pt;}
.yfc{bottom:755.946364pt;}
.y126{bottom:763.466361pt;}
.y83{bottom:765.226361pt;}
.y19f{bottom:767.786360pt;}
.y17f{bottom:770.026359pt;}
.y3e{bottom:771.146358pt;}
.ya3{bottom:774.346357pt;}
.y8{bottom:774.506357pt;}
.y125{bottom:777.226356pt;}
.y62{bottom:781.706354pt;}
.yfb{bottom:783.626353pt;}
.y124{bottom:790.986350pt;}
.y82{bottom:792.746350pt;}
.y19e{bottom:795.306349pt;}
.y3d{bottom:796.426348pt;}
.y17e{bottom:797.546348pt;}
.ya2{bottom:802.026346pt;}
.y123{bottom:805.546344pt;}
.y61{bottom:809.386343pt;}
.yfa{bottom:811.146342pt;}
.y7{bottom:811.306342pt;}
.y122{bottom:819.306339pt;}
.y81{bottom:820.426338pt;}
.yba{bottom:820.586338pt;}
.y3c{bottom:821.706338pt;}
.y19d{bottom:822.986337pt;}
.y17d{bottom:825.226337pt;}
.y15e{bottom:827.786336pt;}
.ya1{bottom:829.546335pt;}
.y60{bottom:836.906332pt;}
.yf9{bottom:838.826331pt;}
.y121{bottom:843.786329pt;}
.y3b{bottom:846.986328pt;}
.y80{bottom:847.946327pt;}
.y6{bottom:848.106327pt;}
.y19c{bottom:850.506326pt;}
.y15d{bottom:855.306325pt;}
.ya0{bottom:857.226324pt;}
.y17c{bottom:859.786323pt;}
.y5f{bottom:864.586321pt;}
.yf8{bottom:866.346320pt;}
.y120{bottom:869.066319pt;}
.y1b7{bottom:871.146318pt;}
.y3a{bottom:872.266318pt;}
.y7f{bottom:875.626316pt;}
.y19b{bottom:878.186315pt;}
.y9f{bottom:884.746313pt;}
.y5{bottom:884.906313pt;}
.y5e{bottom:892.106310pt;}
.ydd{bottom:894.186309pt;}
.y39{bottom:897.546308pt;}
.y7e{bottom:903.146305pt;}
.yf7{bottom:903.306305pt;}
.y19a{bottom:905.706304pt;}
.y9e{bottom:912.426302pt;}
.ydc{bottom:912.586302pt;}
.y5d{bottom:919.786299pt;}
.y4{bottom:921.706298pt;}
.y38{bottom:922.826298pt;}
.y7d{bottom:930.826294pt;}
.y10c{bottom:930.986294pt;}
.y199{bottom:933.386293pt;}
.y5c{bottom:947.306288pt;}
.y37{bottom:948.106287pt;}
.yb9{bottom:949.226287pt;}
.y10b{bottom:949.386287pt;}
.y198{bottom:951.946286pt;}
.y7c{bottom:958.346283pt;}
.y9d{bottom:958.506283pt;}
.y11f{bottom:965.706280pt;}
.y10a{bottom:967.786280pt;}
.y2d{bottom:968.107200pt;}
.y197{bottom:970.346279pt;}
.y36{bottom:973.386277pt;}
.y5b{bottom:974.026277pt;}
.y7b{bottom:985.706272pt;}
.y9c{bottom:986.026272pt;}
.y109{bottom:986.186272pt;}
.y196{bottom:988.426271pt;}
.yb8{bottom:995.306269pt;}
.y35{bottom:1005.866264pt;}
.y7a{bottom:1013.226261pt;}
.y9b{bottom:1013.546261pt;}
.yb7{bottom:1013.706261pt;}
.y5a{bottom:1014.826261pt;}
.y58{bottom:1046.506248pt;}
.y30{bottom:1050.026247pt;}
.y2f{bottom:1063.786241pt;}
.hd{height:21.120000pt;}
.hc{height:33.918736pt;}
.h16{height:42.063421pt;}
.h1{height:42.084358pt;}
.h5{height:42.656233pt;}
.h1c{height:43.214983pt;}
.h17{height:47.085919pt;}
.h7{height:47.109356pt;}
.h14{height:48.374981pt;}
.h18{height:48.389356pt;}
.h15{height:50.062480pt;}
.hb{height:52.108417pt;}
.h2{height:52.134354pt;}
.h1d{height:53.534979pt;}
.h11{height:55.247478pt;}
.h10{height:57.787477pt;}
.hf{height:59.339976pt;}
.h12{height:62.781225pt;}
.h3{height:62.812475pt;}
.h9{height:63.984349pt;}
.ha{height:64.499974pt;}
.h13{height:66.749973pt;}
.h8{height:73.490596pt;}
.he{height:96.749961pt;}
.h19{height:102.149334pt;}
.h1b{height:102.765896pt;}
.h1a{height:102.789334pt;}
.h6{height:103.179959pt;}
.h4{height:125.624950pt;}
.h0{height:1122.666667pt;}
.w1{width:7.360000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x53{left:85.117274pt;}
.x1{left:94.559962pt;}
.x26{left:99.520187pt;}
.x13{left:102.239959pt;}
.xb{left:111.679955pt;}
.xe{left:114.239954pt;}
.x1f{left:116.000096pt;}
.xa{left:121.760250pt;}
.x9{left:129.760244pt;}
.xf{left:141.439943pt;}
.x19{left:145.119942pt;}
.x1e{left:151.359509pt;}
.x35{left:152.799942pt;}
.x27{left:156.639937pt;}
.x28{left:162.079935pt;}
.x45{left:183.359927pt;}
.x1b{left:187.519925pt;}
.x46{left:188.799924pt;}
.x1c{left:191.039924pt;}
.x36{left:192.000651pt;}
.x37{left:205.599983pt;}
.x3d{left:215.679914pt;}
.x3e{left:221.119912pt;}
.x2b{left:223.679911pt;}
.x31{left:227.199909pt;}
.x21{left:229.919908pt;}
.x32{left:238.719913pt;}
.x33{left:247.519918pt;}
.x23{left:253.921671pt;}
.x38{left:270.400005pt;}
.x30{left:272.799891pt;}
.x22{left:277.920702pt;}
.x6{left:283.199608pt;}
.x2a{left:284.159886pt;}
.x16{left:307.199877pt;}
.x49{left:332.319867pt;}
.x39{left:333.439971pt;}
.x4a{left:337.759865pt;}
.x44{left:340.159864pt;}
.x43{left:341.759863pt;}
.x2d{left:346.239862pt;}
.x20{left:347.359861pt;}
.x34{left:348.319952pt;}
.x1a{left:349.599860pt;}
.x2e{left:351.199860pt;}
.x17{left:352.159859pt;}
.xc{left:353.119732pt;}
.x24{left:371.999851pt;}
.x10{left:377.279849pt;}
.x8{left:396.799841pt;}
.x29{left:407.679837pt;}
.x3a{left:409.919959pt;}
.x2{left:412.479835pt;}
.x3{left:415.679834pt;}
.x4f{left:420.479416pt;}
.x50{left:425.278647pt;}
.x2f{left:429.439828pt;}
.x3f{left:448.319821pt;}
.x40{left:453.759818pt;}
.x4d{left:468.959812pt;}
.x4e{left:474.399810pt;}
.x47{left:491.839803pt;}
.x3b{left:492.959916pt;}
.x48{left:497.279801pt;}
.x7{left:510.399796pt;}
.x2c{left:516.320281pt;}
.x14{left:551.839779pt;}
.x4b{left:553.119779pt;}
.x15{left:555.359778pt;}
.x4c{left:558.559777pt;}
.x3c{left:618.399948pt;}
.x11{left:628.639749pt;}
.x51{left:629.919748pt;}
.x4{left:635.199746pt;}
.x25{left:637.439745pt;}
.x52{left:639.199744pt;}
.x5{left:644.479742pt;}
.x18{left:652.479739pt;}
.x1d{left:661.439735pt;}
.x41{left:676.479729pt;}
.x42{left:681.919727pt;}
.xd{left:699.199720pt;}
.x12{left:731.680000pt;}
}




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