
    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_258e5b49a3648478c194abdf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_f47b55a61d0efb7f92de4ce2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_31abceb604c0f33a0294fd26.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_ef91b827eca536e16e0ddf4e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_062acba77ca68658a1ce7909.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_33a930deec9c0693257927cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005000;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_8517c6ab0b0e83f1837e06db.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940000;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_4e22cf8907447128426ee788.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_a314dcd7a43c85a0db2a92e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_a8e6ed2f16615c4faf1aa51d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.857910;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:ffb;src:url('chunks/assets/font_63e40f9c02e6617367beb47a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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:ffc;src:url('chunks/assets/font_92182813b0fce692de50489d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_bdcfb16a57a0d3fc6a8a1683.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.700000;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:ffe;src:url('chunks/assets/font_1ac443050a07a60ab1475927.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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:fff;src:url('chunks/assets/font_3bb7b14ef0913e43e716b413.woff2')format("woff");}.fff{font-family:fff;line-height:0.740723;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:ff10;src:url('chunks/assets/font_7b83cc374e1b10d1285704ce.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_796887aec45d8de80c55c804.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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:ff12;src:url('chunks/assets/font_e7c18c7948d3cb046c9be121.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.740723;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:ff13;src:url('chunks/assets/font_2cc6f86b07ed43a6ac8930d7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.973633;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:ff14;src:url('chunks/assets/font_9d9e0f5425d97aacb22c894c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.935547;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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-22.768066px;}
.v2{vertical-align:-18.214450px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.044845px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:4.486976px;}
.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:-40.896000px;}
.ws9{word-spacing:-24.000001px;}
.ws2{word-spacing:-20.003906px;}
.ws5{word-spacing:-18.336914px;}
.ws3{word-spacing:-16.669921px;}
.wsa{word-spacing:-13.335938px;}
.ws4{word-spacing:-11.002149px;}
.ws8{word-spacing:-10.001953px;}
.ws6{word-spacing:-8.001563px;}
.ws7{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
._3e{margin-left:-9.164565px;}
._3f{margin-left:-8.086452px;}
._0{margin-left:-6.623608px;}
._22{margin-left:-4.924531px;}
._4{margin-left:-3.672891px;}
._2{margin-left:-2.610294px;}
._1{margin-left:-1.583653px;}
._3{width:1.006842px;}
._38{width:4.307231px;}
._39{width:5.317758px;}
._36{width:8.985649px;}
._35{width:13.415573px;}
._40{width:16.990210px;}
._7{width:18.000012px;}
._3c{width:21.488972px;}
._6{width:22.500002px;}
._b{width:27.000001px;}
._a{width:31.500004px;}
._3d{width:35.755158px;}
._5{width:37.880859px;}
._9{width:40.500001px;}
._8{width:45.000001px;}
._3b{width:49.798827px;}
._3a{width:87.996095px;}
._37{width:107.123020px;}
._41{width:110.496095px;}
._15{width:520.047644px;}
._26{width:645.357153px;}
._17{width:797.320442px;}
._33{width:1022.375657px;}
._13{width:1043.144664px;}
._1a{width:1123.898175px;}
._2f{width:1192.240990px;}
._2b{width:1542.540118px;}
._31{width:1550.016681px;}
._30{width:1649.081135px;}
._1e{width:1667.321370px;}
._29{width:1696.776448px;}
._27{width:1773.765708px;}
._1c{width:1806.894614px;}
._21{width:1813.312378px;}
._1d{width:1854.686606px;}
._14{width:1892.857902px;}
._2d{width:1909.263753px;}
._16{width:1914.771027px;}
._11{width:1969.847161px;}
._25{width:1974.675017px;}
._10{width:2013.900872px;}
._1f{width:2046.894616px;}
._2e{width:2065.263757px;}
._2c{width:2078.338956px;}
._28{width:2127.589931px;}
._1b{width:2159.098722px;}
._23{width:2160.259006px;}
._f{width:2171.585445px;}
._d{width:2305.334468px;}
._24{width:2314.334204px;}
._32{width:2347.794036px;}
._c{width:2349.645994px;}
._20{width:2386.521578px;}
._18{width:2461.495607px;}
._12{width:2470.463377px;}
._2a{width:2492.869236px;}
._e{width:2547.742677px;}
._34{width:2553.206149px;}
._19{width:2628.308147px;}
.fca{color:rgb(0,136,204);}
.fc7{color:rgb(0,112,192);}
.fc4{color:rgb(23,25,28);}
.fc9{color:rgb(26,115,232);}
.fc3{color:rgb(17,85,204);}
.fc1{color:rgb(204,171,49);}
.fc8{color:rgb(33,33,33);}
.fc6{color:rgb(153,153,153);}
.fc5{color:rgb(128,128,128);}
.fc2{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:28.800000px;}
.fse{font-size:36.000000px;}
.fsc{font-size:39.600001px;}
.fs8{font-size:48.000002px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:59.999999px;}
.fs6{font-size:66.000002px;}
.fs3{font-size:72.000000px;}
.fsa{font-size:78.000003px;}
.fs7{font-size:80.400563px;}
.fsb{font-size:83.999997px;}
.fs5{font-size:90.000000px;}
.fs4{font-size:96.000003px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y61{bottom:2.519165px;}
.y3c{bottom:2.519348px;}
.y19{bottom:2.519531px;}
.y136{bottom:2.520263px;}
.y17b{bottom:2.520997px;}
.y2{bottom:3.149407px;}
.y2b{bottom:7.360828px;}
.y24{bottom:7.360840px;}
.y33{bottom:7.360841px;}
.y22{bottom:9.689392px;}
.y1c{bottom:10.842590px;}
.y20{bottom:10.842593px;}
.ya5{bottom:11.053701px;}
.y9c{bottom:11.053705px;}
.y8f{bottom:11.053710px;}
.y94{bottom:11.053716px;}
.ya1{bottom:11.053720px;}
.y2a{bottom:22.884508px;}
.y32{bottom:27.384521px;}
.y9b{bottom:28.302235px;}
.y93{bottom:28.302246px;}
.ya0{bottom:28.302250px;}
.yb3{bottom:28.641357px;}
.y1f{bottom:32.661986px;}
.y18{bottom:34.083802px;}
.y3b{bottom:34.083985px;}
.y29{bottom:42.908203px;}
.y9a{bottom:45.550780px;}
.y8c{bottom:55.319087px;}
.y39{bottom:55.319462px;}
.y135{bottom:55.319822px;}
.y15{bottom:55.949338px;}
.y17{bottom:56.056460px;}
.y3a{bottom:56.056643px;}
.y1bc{bottom:70.467773px;}
.yde{bottom:75.020649px;}
.y1d8{bottom:75.021384px;}
.y108{bottom:75.469484px;}
.y134{bottom:76.795538px;}
.y17a{bottom:78.709720px;}
.yb5{bottom:79.983400px;}
.y158{bottom:84.032959px;}
.y1bb{bottom:84.266601px;}
.ydf{bottom:89.276509px;}
.y107{bottom:94.442879px;}
.y179{bottom:100.530031px;}
.y1ba{bottom:102.619044px;}
.y157{bottom:105.851812px;}
.y8b{bottom:111.832768px;}
.y106{bottom:113.416259px;}
.yb4{bottom:114.106931px;}
.y1bd{bottom:116.874902px;}
.y178{bottom:122.348879px;}
.y156{bottom:127.671389px;}
.y19c{bottom:129.561772px;}
.y105{bottom:132.389654px;}
.y8a{bottom:135.306148px;}
.ydd{bottom:142.226804px;}
.yb2{bottom:148.230464px;}
.y104{bottom:151.363034px;}
.y19b{bottom:151.382087px;}
.y89{bottom:158.779543px;}
.y177{bottom:159.322993px;}
.y155{bottom:162.597650px;}
.ydc{bottom:164.046389px;}
.yb1{bottom:165.818111px;}
.y133{bottom:169.029048px;}
.y103{bottom:170.336429px;}
.y19a{bottom:173.200930px;}
.y88{bottom:182.252923px;}
.y1d7{bottom:182.871833px;}
.ydb{bottom:185.865967px;}
.y102{bottom:189.309809px;}
.y132{bottom:190.849364px;}
.y199{bottom:195.021241px;}
.y176{bottom:199.141840px;}
.yb0{bottom:199.941656px;}
.y154{bottom:203.638909px;}
.y87{bottom:205.726318px;}
.yda{bottom:207.685544px;}
.y101{bottom:208.283204px;}
.y198{bottom:216.840089px;}
.y1d6{bottom:216.876704px;}
.y175{bottom:220.960683px;}
.y1b9{bottom:223.505125px;}
.y153{bottom:225.458491px;}
.y100{bottom:227.256599px;}
.y131{bottom:227.668949px;}
.y86{bottom:229.199713px;}
.yd9{bottom:229.505129px;}
.yaf{bottom:234.065186px;}
.y174{bottom:242.780999px;}
.y1b8{bottom:245.325436px;}
.yff{bottom:246.229979px;}
.y152{bottom:247.277339px;}
.y130{bottom:249.487799px;}
.y197{bottom:251.131352px;}
.yd8{bottom:251.323972px;}
.y85{bottom:252.673093px;}
.y1d5{bottom:253.697024px;}
.yfe{bottom:265.203374px;}
.y1b7{bottom:267.144284px;}
.yae{bottom:268.188715px;}
.y12f{bottom:271.307369px;}
.yd7{bottom:273.143549px;}
.y84{bottom:276.146488px;}
.y173{bottom:279.599860px;}
.yfd{bottom:284.176760px;}
.y151{bottom:284.569337px;}
.y1d4{bottom:287.988287px;}
.yd6{bottom:294.963136px;}
.y83{bottom:299.619868px;}
.y196{bottom:301.357180px;}
.y172{bottom:301.418703px;}
.yad{bottom:302.312255px;}
.yfc{bottom:303.150149px;}
.y1b6{bottom:304.116943px;}
.y12e{bottom:308.127695px;}
.yd5{bottom:316.781983px;}
.yac{bottom:319.560791px;}
.yfb{bottom:322.123529px;}
.y82{bottom:323.093263px;}
.y195{bottom:323.176023px;}
.y171{bottom:323.239019px;}
.y12d{bottom:329.946533px;}
.y150{bottom:334.795172px;}
.y1d3{bottom:338.214115px;}
.yd4{bottom:338.601565px;}
.yfa{bottom:340.461188px;}
.y1b5{bottom:343.937249px;}
.y194{bottom:344.996339px;}
.y81{bottom:346.566643px;}
.y12c{bottom:351.766111px;}
.yab{bottom:353.684321px;}
.y14f{bottom:356.614015px;}
.y170{bottom:357.530267px;}
.y1d2{bottom:360.032958px;}
.yd3{bottom:360.421147px;}
.y80{bottom:370.040038px;}
.yf9{bottom:371.938472px;}
.y12b{bottom:373.584958px;}
.y60{bottom:376.209963px;}
.y14e{bottom:378.434326px;}
.y1b4{bottom:380.756099px;}
.y193{bottom:381.815193px;}
.y1d1{bottom:381.853274px;}
.yd2{bottom:382.240724px;}
.yaa{bottom:387.807866px;}
.y7f{bottom:393.513433px;}
.y12a{bottom:395.404540px;}
.y14{bottom:398.387140px;}
.y5f{bottom:398.633058px;}
.y14d{bottom:400.253174px;}
.y1b3{bottom:402.574953px;}
.y192{bottom:403.635502px;}
.y16f{bottom:407.756099px;}
.y13{bottom:415.635685px;}
.yd1{bottom:416.531987px;}
.y7e{bottom:416.986813px;}
.y129{bottom:417.223383px;}
.y1d0{bottom:418.825933px;}
.y5e{bottom:421.056153px;}
.ya9{bottom:421.931395px;}
.yf8{bottom:422.165041px;}
.y1b2{bottom:424.395269px;}
.y191{bottom:425.454348px;}
.y16e{bottom:429.574949px;}
.y14c{bottom:437.544437px;}
.y128{bottom:439.043699px;}
.y7d{bottom:440.460208px;}
.y5d{bottom:443.479248px;}
.y12{bottom:443.895420px;}
.yf7{bottom:443.984627px;}
.y190{bottom:447.273195px;}
.y16d{bottom:451.394534px;}
.ya8{bottom:456.054926px;}
.y1cf{bottom:456.117182px;}
.y1b1{bottom:461.214100px;}
.y7c{bottom:463.933588px;}
.yf6{bottom:465.803470px;}
.y5c{bottom:465.902343px;}
.yd0{bottom:466.758560px;}
.y18f{bottom:469.093520px;}
.y16c{bottom:473.214119px;}
.y127{bottom:473.334960px;}
.y1b0{bottom:483.034420px;}
.y7b{bottom:487.406983px;}
.yf5{bottom:487.623052px;}
.y14b{bottom:487.771726px;}
.y5b{bottom:488.325438px;}
.ycf{bottom:488.577398px;}
.ya7{bottom:490.178471px;}
.y18e{bottom:490.912358px;}
.y16b{bottom:495.032954px;}
.y11{bottom:497.805511px;}
.y1af{bottom:504.853263px;}
.y1ce{bottom:506.344484px;}
.yf4{bottom:509.442629px;}
.y14a{bottom:509.590574px;}
.yce{bottom:510.396976px;}
.y5a{bottom:510.748533px;}
.y7a{bottom:510.880378px;}
.y18d{bottom:512.732666px;}
.y16a{bottom:516.853274px;}
.y126{bottom:520.714604px;}
.ya6{bottom:524.302001px;}
.y1ae{bottom:526.673579px;}
.ycd{bottom:532.216562px;}
.y59{bottom:533.171628px;}
.y79{bottom:534.353758px;}
.y18c{bottom:534.551522px;}
.y125{bottom:539.688719px;}
.y1cd{bottom:543.163330px;}
.yf3{bottom:544.369625px;}
.y149{bottom:546.881835px;}
.y169{bottom:553.827388px;}
.ycc{bottom:554.036134px;}
.y58{bottom:555.594723px;}
.y18b{bottom:556.371829px;}
.y78{bottom:557.827153px;}
.ya4{bottom:558.425540px;}
.y124{bottom:558.661379px;}
.y10{bottom:559.997046px;}
.y1ad{bottom:563.646238px;}
.y1cc{bottom:564.983641px;}
.ya3{bottom:575.674075px;}
.ycb{bottom:575.855716px;}
.y123{bottom:577.635494px;}
.y57{bottom:578.017818px;}
.y18a{bottom:578.189208px;}
.y77{bottom:581.300533px;}
.yf2{bottom:585.409433px;}
.y1cb{bottom:586.802489px;}
.y168{bottom:593.645512px;}
.y122{bottom:596.608154px;}
.y148{bottom:597.108406px;}
.yca{bottom:597.674564px;}
.y189{bottom:600.009524px;}
.y56{bottom:600.440913px;}
.y1ac{bottom:603.465086px;}
.y76{bottom:604.773928px;}
.yf1{bottom:607.229011px;}
.ya2{bottom:609.797605px;}
.y167{bottom:615.465089px;}
.y121{bottom:615.582269px;}
.y147{bottom:618.927254px;}
.y55{bottom:622.460446px;}
.y1ca{bottom:623.775148px;}
.y1ab{bottom:625.285400px;}
.y75{bottom:628.247308px;}
.yf0{bottom:629.048597px;}
.yc9{bottom:632.601560px;}
.y120{bottom:634.554929px;}
.yf{bottom:636.772306px;}
.y188{bottom:636.982183px;}
.y54{bottom:643.158691px;}
.y9f{bottom:643.921140px;}
.y1aa{bottom:647.104249px;}
.yef{bottom:650.867440px;}
.y74{bottom:651.720703px;}
.y166{bottom:652.439203px;}
.y11f{bottom:653.529059px;}
.y146{bottom:655.746824px;}
.yc8{bottom:658.641359px;}
.y1c9{bottom:663.595454px;}
.y53{bottom:663.856936px;}
.y1a9{bottom:668.924564px;}
.y11e{bottom:672.501713px;}
.yee{bottom:672.687022px;}
.y38{bottom:672.727660px;}
.y73{bottom:675.194098px;}
.y187{bottom:676.802489px;}
.y9e{bottom:678.418210px;}
.yc7{bottom:680.460931px;}
.y52{bottom:684.555181px;}
.y36{bottom:687.922487px;}
.y37{bottom:690.251038px;}
.y1a8{bottom:690.741944px;}
.y11d{bottom:691.475834px;}
.y165{bottom:692.258054px;}
.y145{bottom:692.566411px;}
.yed{bottom:694.506599px;}
.y72{bottom:698.667478px;}
.y1c8{bottom:700.568113px;}
.ye{bottom:701.452351px;}
.yc6{bottom:702.280517px;}
.y51{bottom:705.253421px;}
.y11c{bottom:710.448494px;}
.y9d{bottom:712.541756px;}
.y186{bottom:713.621328px;}
.y164{bottom:714.077639px;}
.y144{bottom:714.385259px;}
.y35{bottom:715.899717px;}
.y71{bottom:722.140873px;}
.yc5{bottom:724.100089px;}
.y50{bottom:725.951659px;}
.y1a7{bottom:727.562253px;}
.y11b{bottom:729.422609px;}
.yec{bottom:731.326174px;}
.y34{bottom:733.594846px;}
.y185{bottom:735.441644px;}
.y163{bottom:735.896489px;}
.y1c7{bottom:740.388424px;}
.y70{bottom:745.614253px;}
.yc4{bottom:745.919671px;}
.y4f{bottom:746.649721px;}
.y99{bottom:746.665290px;}
.y11a{bottom:748.395269px;}
.y1a6{bottom:749.382569px;}
.y143{bottom:751.204833px;}
.yeb{bottom:753.145756px;}
.y162{bottom:757.716059px;}
.yd{bottom:761.483916px;}
.y31{bottom:761.572077px;}
.y1c6{bottom:762.207271px;}
.y4e{bottom:767.347966px;}
.y119{bottom:767.369384px;}
.yc3{bottom:767.738519px;}
.y6f{bottom:769.087648px;}
.y184{bottom:772.414303px;}
.y142{bottom:773.025149px;}
.yea{bottom:774.964604px;}
.y30{bottom:779.267207px;}
.y98{bottom:781.162361px;}
.y1c5{bottom:784.026119px;}
.y118{bottom:786.342044px;}
.y1a5{bottom:786.355228px;}
.y4d{bottom:788.046211px;}
.y6e{bottom:792.561028px;}
.y161{bottom:794.690188px;}
.yc2{bottom:804.558113px;}
.y117{bottom:805.316161px;}
.y2e{bottom:807.244442px;}
.y4c{bottom:808.744441px;}
.ye9{bottom:809.255867px;}
.y2f{bottom:809.572993px;}
.y141{bottom:809.843272px;}
.y183{bottom:812.233150px;}
.y97{bottom:815.285891px;}
.y6d{bottom:816.034423px;}
.y1c4{bottom:821.000248px;}
.y1a4{bottom:823.646492px;}
.y116{bottom:824.288819px;}
.yc1{bottom:826.377691px;}
.yc{bottom:827.429175px;}
.y4b{bottom:829.442686px;}
.y140{bottom:831.662849px;}
.y182{bottom:834.053461px;}
.y160{bottom:834.509036px;}
.y2c{bottom:835.221676px;}
.y2d{bottom:837.550228px;}
.y6c{bottom:839.507818px;}
.y115{bottom:843.262934px;}
.yb{bottom:845.711208px;}
.yc0{bottom:848.197277px;}
.y96{bottom:849.409421px;}
.y4a{bottom:849.505180px;}
.y13f{bottom:853.481688px;}
.y181{bottom:855.872309px;}
.y15f{bottom:856.328612px;}
.y1c3{bottom:858.291510px;}
.ye8{bottom:859.483156px;}
.y114{bottom:862.235594px;}
.y6b{bottom:862.981198px;}
.y28{bottom:863.198920px;}
.ya{bottom:863.993190px;}
.y49{bottom:866.753725px;}
.ybf{bottom:870.016849px;}
.y1a3{bottom:873.872313px;}
.y13e{bottom:875.302004px;}
.y15e{bottom:878.147464px;}
.y113{bottom:881.209724px;}
.ye7{bottom:881.302004px;}
.y95{bottom:883.532966px;}
.y48{bottom:884.002255px;}
.y6a{bottom:886.454593px;}
.y9{bottom:887.730050px;}
.ybe{bottom:891.835702px;}
.y180{bottom:892.692629px;}
.y1a2{bottom:895.692629px;}
.y27{bottom:896.417731px;}
.y15d{bottom:899.967046px;}
.y112{bottom:900.182369px;}
.y47{bottom:901.250800px;}
.y1c2{bottom:906.625490px;}
.y69{bottom:909.927973px;}
.y13d{bottom:912.121589px;}
.ybd{bottom:913.655279px;}
.y92{bottom:917.656490px;}
.ye6{bottom:918.120850px;}
.y46{bottom:918.499330px;}
.y111{bottom:919.156499px;}
.y8{bottom:919.315745px;}
.y15c{bottom:921.785894px;}
.y25{bottom:924.394951px;}
.y26{bottom:926.723503px;}
.y17f{bottom:929.666743px;}
.y1a1{bottom:932.665288px;}
.y68{bottom:933.401368px;}
.y13c{bottom:933.940424px;}
.y91{bottom:934.905025px;}
.y45{bottom:935.747860px;}
.y110{bottom:938.129156px;}
.ye5{bottom:939.940432px;}
.y1c1{bottom:947.665276px;}
.ybc{bottom:950.474860px;}
.y7{bottom:950.901440px;}
.y21{bottom:952.372186px;}
.y44{bottom:952.996405px;}
.y23{bottom:954.700738px;}
.y67{bottom:956.874748px;}
.y10f{bottom:957.103276px;}
.y15b{bottom:958.760008px;}
.ye4{bottom:961.760009px;}
.y1c0{bottom:969.484124px;}
.y17e{bottom:969.484128px;}
.y43{bottom:970.244935px;}
.y13b{bottom:970.760013px;}
.ybb{bottom:972.294432px;}
.y1a0{bottom:972.484129px;}
.y90{bottom:974.280025px;}
.y10e{bottom:976.075934px;}
.y66{bottom:980.348143px;}
.y1e{bottom:980.349426px;}
.y6{bottom:980.617260px;}
.y42{bottom:987.493465px;}
.y1d{bottom:991.259032px;}
.y17d{bottom:991.304444px;}
.y13a{bottom:992.580329px;}
.yba{bottom:994.114014px;}
.y19f{bottom:994.304444px;}
.y10d{bottom:995.050049px;}
.ye3{bottom:996.051270px;}
.y65{bottom:1003.821533px;}
.y41{bottom:1004.742004px;}
.y5{bottom:1006.413162px;}
.y1bf{bottom:1006.458252px;}
.y8e{bottom:1008.403565px;}
.y10c{bottom:1014.022706px;}
.yb9{bottom:1015.932861px;}
.y40{bottom:1021.990539px;}
.y64{bottom:1027.294921px;}
.y17c{bottom:1028.278564px;}
.y139{bottom:1029.398442px;}
.y19e{bottom:1031.123287px;}
.y10b{bottom:1032.996827px;}
.y1b{bottom:1034.113220px;}
.y3f{bottom:1039.239075px;}
.y1be{bottom:1046.277102px;}
.ye2{bottom:1046.277831px;}
.y15a{bottom:1046.277833px;}
.y8d{bottom:1049.745117px;}
.y63{bottom:1050.768311px;}
.yb8{bottom:1050.859862px;}
.y138{bottom:1051.218018px;}
.y10a{bottom:1051.969482px;}
.y19d{bottom:1052.943603px;}
.y3e{bottom:1056.487609px;}
.y159{bottom:1068.096684px;}
.ye1{bottom:1068.097413px;}
.y109{bottom:1070.943603px;}
.y4{bottom:1080.259746px;}
.y62{bottom:1085.695677px;}
.y137{bottom:1088.509277px;}
.ye0{bottom:1089.916260px;}
.yb7{bottom:1091.323242px;}
.y1a{bottom:1091.323425px;}
.y3d{bottom:1091.323608px;}
.yb6{bottom:1105.393067px;}
.y16{bottom:1105.393433px;}
.y3{bottom:1157.035025px;}
.y1{bottom:1191.595024px;}
.h29{height:20.981250px;}
.h15{height:24.523682px;}
.h2b{height:26.226563px;}
.h13{height:26.852234px;}
.h11{height:30.819398px;}
.h1f{height:32.998534px;}
.h2e{height:34.945314px;}
.h2f{height:34.968748px;}
.hf{height:35.319397px;}
.hd{height:36.000001px;}
.h14{height:39.339844px;}
.h25{height:39.990233px;}
.h20{height:43.681640px;}
.ha{height:43.710936px;}
.h17{height:44.547363px;}
.h2{height:44.999999px;}
.h1e{height:46.200001px;}
.h5{height:47.988281px;}
.h10{height:48.049806px;}
.h1c{height:48.082032px;}
.he{height:48.937500px;}
.h8{height:49.170001px;}
.h21{height:50.247070px;}
.h23{height:50.586182px;}
.h1a{height:51.987307px;}
.h27{height:52.417969px;}
.h19{height:52.453125px;}
.h12{height:52.638794px;}
.h2d{height:53.874757px;}
.h26{height:53.894064px;}
.h28{height:53.894082px;}
.h2a{height:53.894093px;}
.h9{height:59.496416px;}
.h7{height:59.985352px;}
.h16{height:60.071044px;}
.h1b{height:61.154295px;}
.h6{height:63.984377px;}
.h1d{height:67.383540px;}
.h18{height:67.383915px;}
.h2c{height:67.384275px;}
.h22{height:67.495605px;}
.hb{height:71.029905px;}
.h1{height:71.404976px;}
.h4{height:81.000000px;}
.h3{height:104.835938px;}
.hc{height:157.606567px;}
.h24{height:157.606933px;}
.h0{height:1263.000000px;}
.w3{width:95.625012px;}
.w4{width:115.875000px;}
.w6{width:130.500012px;}
.w5{width:487.125000px;}
.w7{width:526.500000px;}
.w2{width:700.875000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x20{left:6.750000px;}
.x18{left:10.125000px;}
.x12{left:12.946006px;}
.x10{left:17.465953px;}
.x17{left:22.847168px;}
.x19{left:31.500000px;}
.x16{left:37.866578px;}
.x13{left:40.423791px;}
.x25{left:55.176561px;}
.x1{left:63.824998px;}
.x22{left:67.696100px;}
.x1c{left:85.199999px;}
.x23{left:86.676561px;}
.x1d{left:90.824999px;}
.xe{left:96.449993px;}
.x8{left:99.319939px;}
.x1e{left:117.824999px;}
.x1f{left:126.824993px;}
.x11{left:193.200005px;}
.x3{left:198.824999px;}
.x15{left:208.183815px;}
.x1b{left:221.324999px;}
.xb{left:238.199999px;}
.xf{left:256.432331px;}
.x21{left:258.450000px;}
.x7{left:269.354894px;}
.x14{left:310.200000px;}
.x5{left:317.288432px;}
.x9{left:373.503254px;}
.x6{left:376.752229px;}
.x2{left:446.456702px;}
.xa{left:518.285140px;}
.xc{left:546.449999px;}
.x4{left:687.206702px;}
.x24{left:813.845489px;}
.x1a{left:821.466902px;}
.xd{left:829.088395px;}
@media print{
.v3{vertical-align:-20.238281pt;}
.v2{vertical-align:-16.190622pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.262084pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:3.988423pt;}
.ws0{word-spacing:-36.352000pt;}
.ws9{word-spacing:-21.333334pt;}
.ws2{word-spacing:-17.781250pt;}
.ws5{word-spacing:-16.299479pt;}
.ws3{word-spacing:-14.817708pt;}
.wsa{word-spacing:-11.854167pt;}
.ws4{word-spacing:-9.779688pt;}
.ws8{word-spacing:-8.890625pt;}
.ws6{word-spacing:-7.112500pt;}
.ws7{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
._3e{margin-left:-8.146280pt;}
._3f{margin-left:-7.187958pt;}
._0{margin-left:-5.887652pt;}
._22{margin-left:-4.377361pt;}
._4{margin-left:-3.264792pt;}
._2{margin-left:-2.320261pt;}
._1{margin-left:-1.407691pt;}
._3{width:0.894971pt;}
._38{width:3.828650pt;}
._39{width:4.726896pt;}
._36{width:7.987243pt;}
._35{width:11.924954pt;}
._40{width:15.102409pt;}
._7{width:16.000010pt;}
._3c{width:19.101308pt;}
._6{width:20.000002pt;}
._b{width:24.000001pt;}
._a{width:28.000004pt;}
._3d{width:31.782363pt;}
._5{width:33.671875pt;}
._9{width:36.000001pt;}
._8{width:40.000001pt;}
._3b{width:44.265624pt;}
._3a{width:78.218751pt;}
._37{width:95.220462pt;}
._41{width:98.218751pt;}
._15{width:462.264572pt;}
._26{width:573.650802pt;}
._17{width:708.729281pt;}
._33{width:908.778362pt;}
._13{width:927.239701pt;}
._1a{width:999.020600pt;}
._2f{width:1059.769769pt;}
._2b{width:1371.146772pt;}
._31{width:1377.792605pt;}
._30{width:1465.849897pt;}
._1e{width:1482.063440pt;}
._29{width:1508.245731pt;}
._27{width:1576.680629pt;}
._1c{width:1606.128546pt;}
._21{width:1611.833225pt;}
._1d{width:1648.610317pt;}
._14{width:1682.540357pt;}
._2d{width:1697.123336pt;}
._16{width:1702.018691pt;}
._11{width:1750.975254pt;}
._25{width:1755.266682pt;}
._10{width:1790.134108pt;}
._1f{width:1819.461881pt;}
._2e{width:1835.790006pt;}
._2c{width:1847.412405pt;}
._28{width:1891.191050pt;}
._1b{width:1919.198864pt;}
._23{width:1920.230227pt;}
._f{width:1930.298174pt;}
._d{width:2049.186194pt;}
._24{width:2057.185959pt;}
._32{width:2086.928032pt;}
._c{width:2088.574217pt;}
._20{width:2121.352513pt;}
._18{width:2187.996095pt;}
._12{width:2195.967446pt;}
._2a{width:2215.883765pt;}
._e{width:2264.660158pt;}
._34{width:2269.516577pt;}
._19{width:2336.273908pt;}
.fsd{font-size:25.600000pt;}
.fse{font-size:32.000000pt;}
.fsc{font-size:35.200001pt;}
.fs8{font-size:42.666668pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:53.333332pt;}
.fs6{font-size:58.666668pt;}
.fs3{font-size:64.000000pt;}
.fsa{font-size:69.333336pt;}
.fs7{font-size:71.467167pt;}
.fsb{font-size:74.666664pt;}
.fs5{font-size:80.000000pt;}
.fs4{font-size:85.333336pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:2.239258pt;}
.y3c{bottom:2.239421pt;}
.y19{bottom:2.239583pt;}
.y136{bottom:2.240234pt;}
.y17b{bottom:2.240886pt;}
.y2{bottom:2.799473pt;}
.y2b{bottom:6.542958pt;}
.y24{bottom:6.542969pt;}
.y33{bottom:6.542970pt;}
.y22{bottom:8.612793pt;}
.y1c{bottom:9.637858pt;}
.y20{bottom:9.637860pt;}
.ya5{bottom:9.825512pt;}
.y9c{bottom:9.825516pt;}
.y8f{bottom:9.825520pt;}
.y94{bottom:9.825525pt;}
.ya1{bottom:9.825529pt;}
.y2a{bottom:20.341785pt;}
.y32{bottom:24.341797pt;}
.y9b{bottom:25.157543pt;}
.y93{bottom:25.157552pt;}
.ya0{bottom:25.157556pt;}
.yb3{bottom:25.458984pt;}
.y1f{bottom:29.032877pt;}
.y18{bottom:30.296713pt;}
.y3b{bottom:30.296875pt;}
.y29{bottom:38.140625pt;}
.y9a{bottom:40.489583pt;}
.y8c{bottom:49.172522pt;}
.y39{bottom:49.172855pt;}
.y135{bottom:49.173175pt;}
.y15{bottom:49.732745pt;}
.y17{bottom:49.827965pt;}
.y3a{bottom:49.828127pt;}
.y1bc{bottom:62.638020pt;}
.yde{bottom:66.685021pt;}
.y1d8{bottom:66.685675pt;}
.y108{bottom:67.083985pt;}
.y134{bottom:68.262700pt;}
.y17a{bottom:69.964196pt;}
.yb5{bottom:71.096356pt;}
.y158{bottom:74.695964pt;}
.y1bb{bottom:74.903645pt;}
.ydf{bottom:79.356897pt;}
.y107{bottom:83.949225pt;}
.y179{bottom:89.360028pt;}
.y1ba{bottom:91.216928pt;}
.y157{bottom:94.090500pt;}
.y8b{bottom:99.406905pt;}
.y106{bottom:100.814452pt;}
.yb4{bottom:101.428383pt;}
.y1bd{bottom:103.888802pt;}
.y178{bottom:108.754559pt;}
.y156{bottom:113.485679pt;}
.y19c{bottom:115.166019pt;}
.y105{bottom:117.679692pt;}
.y8a{bottom:120.272131pt;}
.ydd{bottom:126.423825pt;}
.yb2{bottom:131.760412pt;}
.y104{bottom:134.544919pt;}
.y19b{bottom:134.561855pt;}
.y89{bottom:141.137371pt;}
.y177{bottom:141.620438pt;}
.y155{bottom:144.531244pt;}
.ydc{bottom:145.819012pt;}
.yb1{bottom:147.393876pt;}
.y133{bottom:150.248043pt;}
.y103{bottom:151.410159pt;}
.y19a{bottom:153.956382pt;}
.y88{bottom:162.002598pt;}
.y1d7{bottom:162.552741pt;}
.ydb{bottom:165.214193pt;}
.y102{bottom:168.275385pt;}
.y132{bottom:169.643879pt;}
.y199{bottom:173.352214pt;}
.y176{bottom:177.014969pt;}
.yb0{bottom:177.725916pt;}
.y154{bottom:181.012364pt;}
.y87{bottom:182.867838pt;}
.yda{bottom:184.609372pt;}
.y101{bottom:185.140625pt;}
.y198{bottom:192.746745pt;}
.y1d6{bottom:192.779292pt;}
.y175{bottom:196.409496pt;}
.y1b9{bottom:198.671222pt;}
.y153{bottom:200.407548pt;}
.y100{bottom:202.005865pt;}
.y131{bottom:202.372399pt;}
.y86{bottom:203.733078pt;}
.yd9{bottom:204.004559pt;}
.yaf{bottom:208.057943pt;}
.y174{bottom:215.805332pt;}
.y1b8{bottom:218.067054pt;}
.yff{bottom:218.871092pt;}
.y152{bottom:219.802079pt;}
.y130{bottom:221.766932pt;}
.y197{bottom:223.227868pt;}
.yd8{bottom:223.399086pt;}
.y85{bottom:224.598305pt;}
.y1d5{bottom:225.508465pt;}
.yfe{bottom:235.736332pt;}
.y1b7{bottom:237.461585pt;}
.yae{bottom:238.389969pt;}
.y12f{bottom:241.162105pt;}
.yd7{bottom:242.794265pt;}
.y84{bottom:245.463545pt;}
.y173{bottom:248.533209pt;}
.yfd{bottom:252.601565pt;}
.y151{bottom:252.950522pt;}
.y1d4{bottom:255.989588pt;}
.yd6{bottom:262.189454pt;}
.y83{bottom:266.328771pt;}
.y196{bottom:267.873049pt;}
.y172{bottom:267.927736pt;}
.yad{bottom:268.722004pt;}
.yfc{bottom:269.466799pt;}
.y1b6{bottom:270.326172pt;}
.y12e{bottom:273.891284pt;}
.yd5{bottom:281.583985pt;}
.yac{bottom:284.054036pt;}
.yfb{bottom:286.332025pt;}
.y82{bottom:287.194011pt;}
.y195{bottom:287.267576pt;}
.y171{bottom:287.323572pt;}
.y12d{bottom:293.285807pt;}
.y150{bottom:297.595709pt;}
.y1d3{bottom:300.634769pt;}
.yd4{bottom:300.979169pt;}
.yfa{bottom:302.632167pt;}
.y1b5{bottom:305.721999pt;}
.y194{bottom:306.663412pt;}
.y81{bottom:308.059238pt;}
.y12c{bottom:312.680987pt;}
.yab{bottom:314.386063pt;}
.y14f{bottom:316.990236pt;}
.y170{bottom:317.804681pt;}
.y1d2{bottom:320.029296pt;}
.yd3{bottom:320.374353pt;}
.y80{bottom:328.924478pt;}
.yf9{bottom:330.611975pt;}
.y12b{bottom:332.075518pt;}
.y60{bottom:334.408856pt;}
.y14e{bottom:336.386068pt;}
.y1b4{bottom:338.449865pt;}
.y193{bottom:339.391283pt;}
.y1d1{bottom:339.425132pt;}
.yd2{bottom:339.769532pt;}
.yaa{bottom:344.718103pt;}
.y7f{bottom:349.789718pt;}
.y12a{bottom:351.470702pt;}
.y14{bottom:354.121903pt;}
.y5f{bottom:354.340496pt;}
.y14d{bottom:355.780599pt;}
.y1b3{bottom:357.844403pt;}
.y192{bottom:358.787113pt;}
.y16f{bottom:362.449865pt;}
.y13{bottom:369.453943pt;}
.yd1{bottom:370.250655pt;}
.y7e{bottom:370.654945pt;}
.y129{bottom:370.865229pt;}
.y1d0{bottom:372.289718pt;}
.y5e{bottom:374.272136pt;}
.ya9{bottom:375.050129pt;}
.yf8{bottom:375.257814pt;}
.y1b2{bottom:377.240239pt;}
.y191{bottom:378.181643pt;}
.y16e{bottom:381.844399pt;}
.y14c{bottom:388.928388pt;}
.y128{bottom:390.261065pt;}
.y7d{bottom:391.520185pt;}
.y5d{bottom:394.203776pt;}
.y12{bottom:394.573706pt;}
.yf7{bottom:394.653002pt;}
.y190{bottom:397.576174pt;}
.y16d{bottom:401.239585pt;}
.ya8{bottom:405.382156pt;}
.y1cf{bottom:405.437495pt;}
.y1b1{bottom:409.968089pt;}
.y7c{bottom:412.385411pt;}
.yf6{bottom:414.047529pt;}
.y5c{bottom:414.135416pt;}
.yd0{bottom:414.896498pt;}
.y18f{bottom:416.972018pt;}
.y16c{bottom:420.634772pt;}
.y127{bottom:420.742187pt;}
.y1b0{bottom:429.363929pt;}
.y7b{bottom:433.250651pt;}
.yf5{bottom:433.442713pt;}
.y14b{bottom:433.574868pt;}
.y5b{bottom:434.067056pt;}
.ycf{bottom:434.291021pt;}
.ya7{bottom:435.714196pt;}
.y18e{bottom:436.366541pt;}
.y16b{bottom:440.029292pt;}
.y11{bottom:442.493787pt;}
.y1af{bottom:448.758456pt;}
.y1ce{bottom:450.083985pt;}
.yf4{bottom:452.837892pt;}
.y14a{bottom:452.969399pt;}
.yce{bottom:453.686201pt;}
.y5a{bottom:453.998696pt;}
.y7a{bottom:454.115891pt;}
.y18d{bottom:455.762370pt;}
.y16a{bottom:459.425132pt;}
.y126{bottom:462.857425pt;}
.ya6{bottom:466.046223pt;}
.y1ae{bottom:468.154292pt;}
.ycd{bottom:473.081389pt;}
.y59{bottom:473.930336pt;}
.y79{bottom:474.981118pt;}
.y18c{bottom:475.156909pt;}
.y125{bottom:479.723305pt;}
.y1cd{bottom:482.811849pt;}
.yf3{bottom:483.884111pt;}
.y149{bottom:486.117187pt;}
.y169{bottom:492.291012pt;}
.ycc{bottom:492.476564pt;}
.y58{bottom:493.861976pt;}
.y18b{bottom:494.552737pt;}
.y78{bottom:495.846358pt;}
.ya4{bottom:496.378257pt;}
.y124{bottom:496.587892pt;}
.y10{bottom:497.775152pt;}
.y1ad{bottom:501.018878pt;}
.y1cc{bottom:502.207681pt;}
.ya3{bottom:511.710289pt;}
.ycb{bottom:511.871748pt;}
.y123{bottom:513.453772pt;}
.y57{bottom:513.793616pt;}
.y18a{bottom:513.945963pt;}
.y77{bottom:516.711585pt;}
.yf2{bottom:520.363941pt;}
.y1cb{bottom:521.602212pt;}
.y168{bottom:527.684900pt;}
.y122{bottom:530.318359pt;}
.y148{bottom:530.763028pt;}
.yca{bottom:531.266279pt;}
.y189{bottom:533.341799pt;}
.y56{bottom:533.725256pt;}
.y1ac{bottom:536.413410pt;}
.y76{bottom:537.576825pt;}
.yf1{bottom:539.759121pt;}
.ya2{bottom:542.042316pt;}
.y167{bottom:547.080079pt;}
.y121{bottom:547.184239pt;}
.y147{bottom:550.157559pt;}
.y55{bottom:553.298174pt;}
.y1ca{bottom:554.466798pt;}
.y1ab{bottom:555.809245pt;}
.y75{bottom:558.442051pt;}
.yf0{bottom:559.154309pt;}
.yc9{bottom:562.312498pt;}
.y120{bottom:564.048825pt;}
.yf{bottom:566.019827pt;}
.y188{bottom:566.206385pt;}
.y54{bottom:571.696614pt;}
.y9f{bottom:572.374347pt;}
.y1aa{bottom:575.203777pt;}
.yef{bottom:578.548836pt;}
.y74{bottom:579.307291pt;}
.y166{bottom:579.945958pt;}
.y11f{bottom:580.914719pt;}
.y146{bottom:582.886065pt;}
.yc8{bottom:585.458985pt;}
.y1c9{bottom:589.862625pt;}
.y53{bottom:590.095054pt;}
.y1a9{bottom:594.599613pt;}
.y11e{bottom:597.779300pt;}
.yee{bottom:597.944020pt;}
.y38{bottom:597.980143pt;}
.y73{bottom:600.172531pt;}
.y187{bottom:601.602212pt;}
.y9e{bottom:603.038409pt;}
.yc7{bottom:604.854161pt;}
.y52{bottom:608.493494pt;}
.y36{bottom:611.486655pt;}
.y37{bottom:613.556479pt;}
.y1a8{bottom:613.992839pt;}
.y11d{bottom:614.645185pt;}
.y165{bottom:615.340492pt;}
.y145{bottom:615.614588pt;}
.yed{bottom:617.339199pt;}
.y72{bottom:621.037758pt;}
.y1c8{bottom:622.727212pt;}
.ye{bottom:623.513201pt;}
.yc6{bottom:624.249349pt;}
.y51{bottom:626.891930pt;}
.y11c{bottom:631.509772pt;}
.y9d{bottom:633.370449pt;}
.y186{bottom:634.330069pt;}
.y164{bottom:634.735679pt;}
.y144{bottom:635.009119pt;}
.y35{bottom:636.355304pt;}
.y71{bottom:641.902998pt;}
.yc5{bottom:643.644524pt;}
.y50{bottom:645.290364pt;}
.y1a7{bottom:646.722003pt;}
.y11b{bottom:648.375652pt;}
.yec{bottom:650.067710pt;}
.y34{bottom:652.084308pt;}
.y185{bottom:653.725905pt;}
.y163{bottom:654.130212pt;}
.y1c7{bottom:658.123043pt;}
.y70{bottom:662.768225pt;}
.yc4{bottom:663.039708pt;}
.y4f{bottom:663.688641pt;}
.y99{bottom:663.702480pt;}
.y11a{bottom:665.240239pt;}
.y1a6{bottom:666.117839pt;}
.y143{bottom:667.737629pt;}
.yeb{bottom:669.462894pt;}
.y162{bottom:673.525385pt;}
.yd{bottom:676.874592pt;}
.y31{bottom:676.952957pt;}
.y1c6{bottom:677.517574pt;}
.y4e{bottom:682.087081pt;}
.y119{bottom:682.106119pt;}
.yc3{bottom:682.434239pt;}
.y6f{bottom:683.633465pt;}
.y184{bottom:686.590492pt;}
.y142{bottom:687.133465pt;}
.yea{bottom:688.857425pt;}
.y30{bottom:692.681961pt;}
.y98{bottom:694.366543pt;}
.y1c5{bottom:696.912105pt;}
.y118{bottom:698.970705pt;}
.y1a5{bottom:698.982425pt;}
.y4d{bottom:700.485521pt;}
.y6e{bottom:704.498691pt;}
.y161{bottom:706.391278pt;}
.yc2{bottom:715.162767pt;}
.y117{bottom:715.836588pt;}
.y2e{bottom:717.550615pt;}
.y4c{bottom:718.883947pt;}
.ye9{bottom:719.338548pt;}
.y2f{bottom:719.620439pt;}
.y141{bottom:719.860686pt;}
.y183{bottom:721.985022pt;}
.y97{bottom:724.698569pt;}
.y6d{bottom:725.363931pt;}
.y1c4{bottom:729.777998pt;}
.y1a4{bottom:732.130215pt;}
.y116{bottom:732.701172pt;}
.yc1{bottom:734.557947pt;}
.yc{bottom:735.492600pt;}
.y4b{bottom:737.282388pt;}
.y140{bottom:739.255865pt;}
.y182{bottom:741.380854pt;}
.y160{bottom:741.785810pt;}
.y2c{bottom:742.419268pt;}
.y2d{bottom:744.489092pt;}
.y6c{bottom:746.229171pt;}
.y115{bottom:749.567052pt;}
.yb{bottom:751.743296pt;}
.yc0{bottom:753.953135pt;}
.y96{bottom:755.030596pt;}
.y4a{bottom:755.115716pt;}
.y13f{bottom:758.650389pt;}
.y181{bottom:760.775385pt;}
.y15f{bottom:761.180989pt;}
.y1c3{bottom:762.925787pt;}
.ye8{bottom:763.985028pt;}
.y114{bottom:766.431639pt;}
.y6b{bottom:767.094398pt;}
.y28{bottom:767.287929pt;}
.ya{bottom:767.993947pt;}
.y49{bottom:770.447756pt;}
.ybf{bottom:773.348310pt;}
.y1a3{bottom:776.775389pt;}
.y13e{bottom:778.046225pt;}
.y15e{bottom:780.575524pt;}
.y113{bottom:783.297532pt;}
.ye7{bottom:783.379559pt;}
.y95{bottom:785.362636pt;}
.y48{bottom:785.779783pt;}
.y6a{bottom:787.959638pt;}
.y9{bottom:789.093377pt;}
.ybe{bottom:792.742846pt;}
.y180{bottom:793.504559pt;}
.y1a2{bottom:796.171225pt;}
.y27{bottom:796.815761pt;}
.y15d{bottom:799.970708pt;}
.y112{bottom:800.162105pt;}
.y47{bottom:801.111823pt;}
.y1c2{bottom:805.889324pt;}
.y69{bottom:808.824865pt;}
.y13d{bottom:810.774745pt;}
.ybd{bottom:812.138025pt;}
.y92{bottom:815.694657pt;}
.ye6{bottom:816.107422pt;}
.y46{bottom:816.443849pt;}
.y111{bottom:817.027999pt;}
.y8{bottom:817.169551pt;}
.y15c{bottom:819.365239pt;}
.y25{bottom:821.684401pt;}
.y26{bottom:823.754225pt;}
.y17f{bottom:826.370438pt;}
.y1a1{bottom:829.035812pt;}
.y68{bottom:829.690105pt;}
.y13c{bottom:830.169265pt;}
.y91{bottom:831.026689pt;}
.y45{bottom:831.775876pt;}
.y110{bottom:833.892583pt;}
.ye5{bottom:835.502606pt;}
.y1c1{bottom:842.369134pt;}
.ybc{bottom:844.866542pt;}
.y7{bottom:845.245724pt;}
.y21{bottom:846.553055pt;}
.y44{bottom:847.107916pt;}
.y23{bottom:848.622879pt;}
.y67{bottom:850.555331pt;}
.y10f{bottom:850.758468pt;}
.y15b{bottom:852.231118pt;}
.ye4{bottom:854.897785pt;}
.y1c0{bottom:861.763665pt;}
.y17e{bottom:861.763669pt;}
.y43{bottom:862.439943pt;}
.y13b{bottom:862.897789pt;}
.ybb{bottom:864.261717pt;}
.y1a0{bottom:864.430337pt;}
.y90{bottom:866.026689pt;}
.y10e{bottom:867.623052pt;}
.y66{bottom:871.420571pt;}
.y1e{bottom:871.421712pt;}
.y6{bottom:871.659787pt;}
.y42{bottom:877.771969pt;}
.y1d{bottom:881.119140pt;}
.y17d{bottom:881.159505pt;}
.y13a{bottom:882.293625pt;}
.yba{bottom:883.656901pt;}
.y19f{bottom:883.826172pt;}
.y10d{bottom:884.488932pt;}
.ye3{bottom:885.378907pt;}
.y65{bottom:892.285807pt;}
.y41{bottom:893.104004pt;}
.y5{bottom:894.589477pt;}
.y1bf{bottom:894.629557pt;}
.y8e{bottom:896.358724pt;}
.y10c{bottom:901.353516pt;}
.yb9{bottom:903.051432pt;}
.y40{bottom:908.436035pt;}
.y64{bottom:913.151041pt;}
.y17c{bottom:914.025390pt;}
.y139{bottom:915.020837pt;}
.y19e{bottom:916.554033pt;}
.y10b{bottom:918.219401pt;}
.y1b{bottom:919.211751pt;}
.y3f{bottom:923.768067pt;}
.y1be{bottom:930.024090pt;}
.ye2{bottom:930.024738pt;}
.y15a{bottom:930.024740pt;}
.y8d{bottom:933.106770pt;}
.y63{bottom:934.016276pt;}
.yb8{bottom:934.097655pt;}
.y138{bottom:934.416016pt;}
.y10a{bottom:935.083984pt;}
.y19d{bottom:935.949869pt;}
.y3e{bottom:939.100097pt;}
.y159{bottom:949.419274pt;}
.ye1{bottom:949.419922pt;}
.y109{bottom:951.949869pt;}
.y4{bottom:960.230885pt;}
.y62{bottom:965.062824pt;}
.y137{bottom:967.563802pt;}
.ye0{bottom:968.814453pt;}
.yb7{bottom:970.065104pt;}
.y1a{bottom:970.065267pt;}
.y3d{bottom:970.065429pt;}
.yb6{bottom:982.571615pt;}
.y16{bottom:982.571940pt;}
.y3{bottom:1028.475578pt;}
.y1{bottom:1059.195577pt;}
.h29{height:18.650000pt;}
.h15{height:21.798828pt;}
.h2b{height:23.312500pt;}
.h13{height:23.868652pt;}
.h11{height:27.395020pt;}
.h1f{height:29.332031pt;}
.h2e{height:31.062501pt;}
.h2f{height:31.083332pt;}
.hf{height:31.395020pt;}
.hd{height:32.000001pt;}
.h14{height:34.968750pt;}
.h25{height:35.546874pt;}
.h20{height:38.828124pt;}
.ha{height:38.854166pt;}
.h17{height:39.597656pt;}
.h2{height:39.999999pt;}
.h1e{height:41.066668pt;}
.h5{height:42.656250pt;}
.h10{height:42.710938pt;}
.h1c{height:42.739584pt;}
.he{height:43.500000pt;}
.h8{height:43.706668pt;}
.h21{height:44.664063pt;}
.h23{height:44.965495pt;}
.h1a{height:46.210939pt;}
.h27{height:46.593750pt;}
.h19{height:46.625000pt;}
.h12{height:46.790039pt;}
.h2d{height:47.888673pt;}
.h26{height:47.905835pt;}
.h28{height:47.905851pt;}
.h2a{height:47.905861pt;}
.h9{height:52.885704pt;}
.h7{height:53.320312pt;}
.h16{height:53.396484pt;}
.h1b{height:54.359373pt;}
.h6{height:56.875002pt;}
.h1d{height:59.896480pt;}
.h18{height:59.896813pt;}
.h2c{height:59.897133pt;}
.h22{height:59.996093pt;}
.hb{height:63.137693pt;}
.h1{height:63.471089pt;}
.h4{height:72.000000pt;}
.h3{height:93.187500pt;}
.hc{height:140.094727pt;}
.h24{height:140.095052pt;}
.h0{height:1122.666667pt;}
.w3{width:85.000011pt;}
.w4{width:103.000000pt;}
.w6{width:116.000011pt;}
.w5{width:433.000000pt;}
.w7{width:468.000000pt;}
.w2{width:623.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x20{left:6.000000pt;}
.x18{left:9.000000pt;}
.x12{left:11.507561pt;}
.x10{left:15.525291pt;}
.x17{left:20.308594pt;}
.x19{left:28.000000pt;}
.x16{left:33.659180pt;}
.x13{left:35.932259pt;}
.x25{left:49.045832pt;}
.x1{left:56.733332pt;}
.x22{left:60.174311pt;}
.x1c{left:75.733332pt;}
.x23{left:77.045832pt;}
.x1d{left:80.733332pt;}
.xe{left:85.733327pt;}
.x8{left:88.284390pt;}
.x1e{left:104.733332pt;}
.x1f{left:112.733327pt;}
.x11{left:171.733337pt;}
.x3{left:176.733332pt;}
.x15{left:185.052280pt;}
.x1b{left:196.733332pt;}
.xb{left:211.733332pt;}
.xf{left:227.939850pt;}
.x21{left:229.733333pt;}
.x7{left:239.426572pt;}
.x14{left:275.733333pt;}
.x5{left:282.034162pt;}
.x9{left:332.002892pt;}
.x6{left:334.890870pt;}
.x2{left:396.850402pt;}
.xa{left:460.697902pt;}
.xc{left:485.733332pt;}
.x4{left:610.850402pt;}
.x24{left:723.418212pt;}
.x1a{left:730.192802pt;}
.xd{left:736.967462pt;}
}




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