
    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_499db155e4451276d39c63f0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_48366aea2490ce99f6ffe65e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a3e539e91e9cdd462a952051.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f1042e9db14da75e239178ed.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fd98598a8fd90ab41e498c02.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_0300db0b99baed92c5f078dc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e06b6c8d4dbb0ec4b1b9fb3b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_446573ec617e33f1cd952766.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1{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:-69.120000px;}
.v2{vertical-align:-66.960000px;}
.v4{vertical-align:-65.520000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-1.494000px;}
.ls22{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.259800px;}
.lsc{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.106800px;}
.ls1c{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls20{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.540000px;}
.ls21{letter-spacing:0.612000px;}
.ls3{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.900000px;}
.ls7{letter-spacing:10.026720px;}
.ls1b{letter-spacing:11.520000px;}
.lsd{letter-spacing:27.540000px;}
.ls1f{letter-spacing:38.106720px;}
.ls1e{letter-spacing:38.250720px;}
.ls14{letter-spacing:40.986720px;}
.ls1a{letter-spacing:68.346720px;}
.ls1d{letter-spacing:68.490720px;}
.ls16{letter-spacing:123.300000px;}
.ls5{letter-spacing:145.386720px;}
.ls6{letter-spacing:165.060000px;}
.ls4{letter-spacing:197.460000px;}
.ls15{letter-spacing:211.116000px;}
.ls18{letter-spacing:240.660000px;}
.ls19{letter-spacing:401.940000px;}
.ls10{letter-spacing:909.840000px;}
.ls12{letter-spacing:955.920000px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.wsd{word-spacing:-15.552000px;}
.ws1{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.093600px;}
.ws9{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.833200px;}
.ws4{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.680200px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._6{margin-left:-1.197360px;}
._0{width:1.015920px;}
._4{width:2.090640px;}
._13{width:3.302400px;}
._8{width:4.840560px;}
._a{width:5.976000px;}
._14{width:7.051680px;}
._2a{width:8.251200px;}
._1d{width:9.262800px;}
._12{width:10.278720px;}
._15{width:11.414160px;}
._16{width:12.788640px;}
._19{width:13.804560px;}
._c{width:16.194960px;}
._29{width:17.218080px;}
._1a{width:18.346320px;}
._9{width:19.970640px;}
._11{width:21.872160px;}
._20{width:22.888080px;}
._b{width:24.083280px;}
._d{width:25.637040px;}
._e{width:27.190800px;}
._1f{width:28.223760px;}
._27{width:29.342160px;}
._26{width:30.417840px;}
._2b{width:31.553280px;}
._24{width:32.808240px;}
._28{width:34.364160px;}
._32{width:35.371440px;}
._23{width:36.632880px;}
._22{width:37.947600px;}
._25{width:40.094640px;}
._1b{width:41.473440px;}
._1c{width:42.847920px;}
._21{width:44.102880px;}
._1e{width:45.835920px;}
._2c{width:47.150640px;}
._f{width:48.226320px;}
._10{width:50.078880px;}
._2d{width:51.393600px;}
._33{width:54.033600px;}
._31{width:55.098720px;}
._1{width:62.081040px;}
._2e{width:66.034800px;}
._2f{width:69.919200px;}
._30{width:71.293680px;}
._2{width:110.520000px;}
._18{width:119.041920px;}
._17{width:120.296880px;}
._7{width:121.985040px;}
._5{width:173.264160px;}
._3{width:201.060000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(32,32,32);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yad{bottom:3.240000px;}
.yae{bottom:3.600000px;}
.yba{bottom:11.700000px;}
.yab{bottom:12.240000px;}
.yb8{bottom:20.340000px;}
.yce{bottom:20.700000px;}
.ydb{bottom:20.880000px;}
.yb6{bottom:28.980000px;}
.yd3{bottom:29.340000px;}
.yf5{bottom:29.520000px;}
.yb7{bottom:37.620000px;}
.ycb{bottom:37.980000px;}
.yd9{bottom:38.160000px;}
.yb9{bottom:46.260000px;}
.yd2{bottom:46.620000px;}
.yf4{bottom:46.800000px;}
.ybb{bottom:54.900000px;}
.yd8{bottom:55.254000px;}
.yca{bottom:55.260000px;}
.yf2{bottom:55.440000px;}
.yd5{bottom:63.894000px;}
.yc3{bottom:63.900000px;}
.y4{bottom:67.140000px;}
.yd7{bottom:72.534000px;}
.yc9{bottom:72.540000px;}
.yc2{bottom:81.180000px;}
.y3{bottom:84.456000px;}
.yd6{bottom:89.814000px;}
.yc8{bottom:89.820000px;}
.yed{bottom:98.460000px;}
.ybf{bottom:98.505000px;}
.yd4{bottom:105.516000px;}
.y14d{bottom:105.876000px;}
.yda{bottom:107.094000px;}
.ye6{bottom:107.100000px;}
.yf8{bottom:107.130000px;}
.ybd{bottom:107.145000px;}
.y7c{bottom:107.316000px;}
.y3f{bottom:109.296000px;}
.y115{bottom:110.556000px;}
.y109{bottom:113.976000px;}
.ye1{bottom:115.560000px;}
.yef{bottom:115.740000px;}
.yf3{bottom:115.770000px;}
.ybe{bottom:115.785000px;}
.y72{bottom:117.396000px;}
.y14c{bottom:122.976000px;}
.ydf{bottom:124.200000px;}
.yc7{bottom:124.245000px;}
.ydc{bottom:124.374000px;}
.yf7{bottom:124.410000px;}
.y7b{bottom:124.596000px;}
.y3e{bottom:126.576000px;}
.y114{bottom:127.836000px;}
.y108{bottom:131.256000px;}
.ye0{bottom:132.840000px;}
.yc1{bottom:132.885000px;}
.yf9{bottom:133.050000px;}
.y71{bottom:134.676000px;}
.y17e{bottom:137.016000px;}
.y7a{bottom:138.276000px;}
.y14b{bottom:140.256000px;}
.ye5{bottom:141.480000px;}
.yc6{bottom:141.525000px;}
.yf6{bottom:141.690000px;}
.y3d{bottom:143.676000px;}
.y113{bottom:145.116000px;}
.y107{bottom:147.816000px;}
.yec{bottom:150.120000px;}
.yc0{bottom:150.165000px;}
.y70{bottom:151.950000px;}
.y17d{bottom:154.290000px;}
.y14a{bottom:157.530000px;}
.ye4{bottom:158.760000px;}
.yc5{bottom:158.805000px;}
.y3c{bottom:160.950000px;}
.y106{bottom:162.390000px;}
.yeb{bottom:167.400000px;}
.yd1{bottom:167.445000px;}
.y6f{bottom:169.230000px;}
.y17c{bottom:171.570000px;}
.y149{bottom:174.810000px;}
.ye3{bottom:176.040000px;}
.yc4{bottom:176.085000px;}
.y3b{bottom:178.230000px;}
.y105{bottom:179.490000px;}
.yea{bottom:184.680000px;}
.yd0{bottom:184.725000px;}
.y6e{bottom:186.510000px;}
.y17b{bottom:188.850000px;}
.y148{bottom:192.090000px;}
.ye2{bottom:193.320000px;}
.ycd{bottom:193.365000px;}
.y3a{bottom:195.510000px;}
.y112{bottom:196.050000px;}
.y104{bottom:196.770000px;}
.ycf{bottom:202.005000px;}
.y6d{bottom:204.690000px;}
.y17a{bottom:206.130000px;}
.y147{bottom:209.370000px;}
.ye9{bottom:210.420000px;}
.yf0{bottom:210.600000px;}
.y111{bottom:210.630000px;}
.ycc{bottom:210.645000px;}
.y39{bottom:212.790000px;}
.y103{bottom:214.050000px;}
.y6c{bottom:221.970000px;}
.y179{bottom:223.230000px;}
.y146{bottom:226.470000px;}
.ye8{bottom:227.700000px;}
.y110{bottom:227.910000px;}
.y38{bottom:230.070000px;}
.y102{bottom:231.330000px;}
.y6b{bottom:239.250000px;}
.y178{bottom:240.510000px;}
.y145{bottom:243.030000px;}
.ybc{bottom:244.290000px;}
.ye7{bottom:244.980000px;}
.y10f{bottom:245.190000px;}
.y37{bottom:247.170000px;}
.y101{bottom:248.610000px;}
.y6a{bottom:256.530000px;}
.y144{bottom:257.610000px;}
.y177{bottom:257.790000px;}
.y10e{bottom:262.290000px;}
.y36{bottom:263.550000px;}
.y19a{bottom:264.450000px;}
.y100{bottom:265.890000px;}
.y69{bottom:273.810000px;}
.y143{bottom:274.890000px;}
.y176{bottom:275.070000px;}
.y10d{bottom:279.570000px;}
.y199{bottom:281.730000px;}
.yff{bottom:282.990000px;}
.y68{bottom:291.090000px;}
.y142{bottom:292.170000px;}
.y175{bottom:292.350000px;}
.y35{bottom:294.690000px;}
.y10c{bottom:296.850000px;}
.y198{bottom:299.010000px;}
.y67{bottom:308.370000px;}
.y34{bottom:309.270000px;}
.y174{bottom:309.630000px;}
.y10b{bottom:314.130000px;}
.y197{bottom:316.290000px;}
.yfe{bottom:316.650000px;}
.y33{bottom:326.550000px;}
.y173{bottom:326.730000px;}
.y10a{bottom:331.410000px;}
.y196{bottom:333.390000px;}
.y66{bottom:339.555000px;}
.y32{bottom:342.975000px;}
.y141{bottom:343.875000px;}
.y172{bottom:344.055000px;}
.yfd{bottom:347.835000px;}
.y195{bottom:350.715000px;}
.y65{bottom:354.135000px;}
.y31{bottom:357.375000px;}
.y140{bottom:361.155000px;}
.y171{bottom:361.335000px;}
.yfc{bottom:362.415000px;}
.y194{bottom:367.995000px;}
.y64{bottom:371.415000px;}
.y30{bottom:374.475000px;}
.y13f{bottom:378.435000px;}
.y170{bottom:378.615000px;}
.yfb{bottom:380.775000px;}
.y193{bottom:385.275000px;}
.y63{bottom:388.695000px;}
.y2f{bottom:391.755000px;}
.yfa{bottom:395.175000px;}
.y13e{bottom:395.535000px;}
.y16f{bottom:395.895000px;}
.y192{bottom:402.555000px;}
.y62{bottom:405.975000px;}
.y2e{bottom:409.035000px;}
.y13d{bottom:412.815000px;}
.y16e{bottom:413.175000px;}
.y191{bottom:419.835000px;}
.y61{bottom:423.255000px;}
.y2d{bottom:426.315000px;}
.y16d{bottom:429.375000px;}
.y13c{bottom:430.095000px;}
.y190{bottom:436.935000px;}
.y60{bottom:440.535000px;}
.y2c{bottom:443.055000px;}
.y16c{bottom:443.775000px;}
.y13b{bottom:447.375000px;}
.y18f{bottom:454.215000px;}
.y2b{bottom:457.275000px;}
.y5f{bottom:457.635000px;}
.y16b{bottom:460.515000px;}
.y13a{bottom:463.935000px;}
.yb5{bottom:469.335000px;}
.y18e{bottom:471.495000px;}
.y2a{bottom:474.555000px;}
.y5e{bottom:474.915000px;}
.y16a{bottom:475.095000px;}
.y139{bottom:478.335000px;}
.y18d{bottom:488.775000px;}
.y29{bottom:491.835000px;}
.y5d{bottom:492.195000px;}
.y138{bottom:495.615000px;}
.yf1{bottom:499.395000px;}
.y18c{bottom:506.055000px;}
.y169{bottom:508.755000px;}
.y28{bottom:509.115000px;}
.y5c{bottom:509.475000px;}
.y137{bottom:512.895000px;}
.y18b{bottom:523.335000px;}
.y27{bottom:526.395000px;}
.y5b{bottom:526.755000px;}
.y136{bottom:530.175000px;}
.y168{bottom:539.895000px;}
.y18a{bottom:540.435000px;}
.y26{bottom:543.675000px;}
.y5a{bottom:544.035000px;}
.y135{bottom:547.455000px;}
.y167{bottom:554.475000px;}
.y189{bottom:557.715000px;}
.yb4{bottom:559.875000px;}
.y25{bottom:560.235000px;}
.y59{bottom:561.135000px;}
.y134{bottom:564.735000px;}
.y166{bottom:571.755000px;}
.yb3{bottom:574.275000px;}
.y24{bottom:574.635000px;}
.y188{bottom:574.995000px;}
.y58{bottom:577.695000px;}
.y133{bottom:581.835000px;}
.y165{bottom:589.215000px;}
.y23{bottom:591.915000px;}
.y57{bottom:592.275000px;}
.y132{bottom:599.115000px;}
.y164{bottom:604.005000px;}
.y22{bottom:609.225000px;}
.y56{bottom:609.585000px;}
.yb2{bottom:610.305000px;}
.y131{bottom:616.425000px;}
.y163{bottom:621.105000px;}
.y21{bottom:626.505000px;}
.y55{bottom:626.865000px;}
.yb1{bottom:628.305000px;}
.y130{bottom:633.705000px;}
.y162{bottom:638.565000px;}
.y20{bottom:643.605000px;}
.y54{bottom:643.965000px;}
.yb0{bottom:646.305000px;}
.y12f{bottom:650.985000px;}
.y161{bottom:653.325000px;}
.yee{bottom:655.485000px;}
.y1f{bottom:660.885000px;}
.y53{bottom:661.245000px;}
.yaf{bottom:664.305000px;}
.y12e{bottom:668.265000px;}
.y160{bottom:670.605000px;}
.y1e{bottom:678.165000px;}
.y52{bottom:678.525000px;}
.yaa{bottom:682.305000px;}
.y12d{bottom:684.645000px;}
.y15f{bottom:687.885000px;}
.y1d{bottom:695.445000px;}
.y51{bottom:695.805000px;}
.y12c{bottom:699.225000px;}
.yac{bottom:700.305000px;}
.y15e{bottom:705.345000px;}
.y1c{bottom:712.185000px;}
.y50{bottom:713.085000px;}
.y12b{bottom:716.505000px;}
.y15d{bottom:719.925000px;}
.y1b{bottom:726.405000px;}
.y4f{bottom:730.185000px;}
.y12a{bottom:733.785000px;}
.y15c{bottom:737.205000px;}
.ya9{bottom:738.825000px;}
.y1a{bottom:743.685000px;}
.y4e{bottom:746.745000px;}
.y187{bottom:747.465000px;}
.y129{bottom:750.885000px;}
.y15b{bottom:754.485000px;}
.y94{bottom:754.665000px;}
.y19{bottom:760.965000px;}
.y4d{bottom:761.325000px;}
.y186{bottom:764.745000px;}
.y128{bottom:768.165000px;}
.y15a{bottom:771.585000px;}
.y93{bottom:771.945000px;}
.y18{bottom:777.705000px;}
.y4c{bottom:778.605000px;}
.y185{bottom:782.025000px;}
.y127{bottom:785.445000px;}
.ya8{bottom:787.785000px;}
.y159{bottom:788.865000px;}
.y92{bottom:789.225000px;}
.y17{bottom:791.925000px;}
.y4b{bottom:795.885000px;}
.y184{bottom:799.305000px;}
.y126{bottom:802.725000px;}
.ya7{bottom:805.065000px;}
.y158{bottom:806.145000px;}
.y91{bottom:806.325000px;}
.y16{bottom:809.205000px;}
.y4a{bottom:812.985000px;}
.y183{bottom:816.585000px;}
.y125{bottom:820.005000px;}
.ya6{bottom:822.345000px;}
.y157{bottom:823.425000px;}
.y90{bottom:823.605000px;}
.y15{bottom:826.485000px;}
.y49{bottom:830.265000px;}
.y182{bottom:833.685000px;}
.y124{bottom:837.285000px;}
.ya5{bottom:839.625000px;}
.y156{bottom:840.705000px;}
.y8f{bottom:840.885000px;}
.y14{bottom:843.765000px;}
.y48{bottom:847.545000px;}
.y181{bottom:850.965000px;}
.y123{bottom:854.385000px;}
.ya4{bottom:856.905000px;}
.y155{bottom:857.985000px;}
.y8e{bottom:858.165000px;}
.y13{bottom:861.045000px;}
.y47{bottom:864.825000px;}
.y180{bottom:868.245000px;}
.y122{bottom:871.710000px;}
.ya3{bottom:874.050000px;}
.y154{bottom:875.130000px;}
.y8d{bottom:875.490000px;}
.y12{bottom:878.370000px;}
.yde{bottom:880.530000px;}
.y46{bottom:882.150000px;}
.y17f{bottom:885.570000px;}
.y121{bottom:888.270000px;}
.ya2{bottom:891.330000px;}
.y153{bottom:892.410000px;}
.y8c{bottom:892.590000px;}
.y11{bottom:895.470000px;}
.y45{bottom:899.430000px;}
.y120{bottom:902.850000px;}
.ya1{bottom:908.610000px;}
.y152{bottom:909.690000px;}
.y8b{bottom:909.870000px;}
.y10{bottom:912.750000px;}
.y44{bottom:916.530000px;}
.y11f{bottom:920.130000px;}
.ya0{bottom:925.890000px;}
.y151{bottom:926.970000px;}
.y8a{bottom:927.510000px;}
.yf{bottom:930.030000px;}
.y43{bottom:933.090000px;}
.y11e{bottom:937.230000px;}
.y89{bottom:942.090000px;}
.y9f{bottom:943.170000px;}
.y150{bottom:944.250000px;}
.ye{bottom:947.310000px;}
.y42{bottom:947.670000px;}
.y11d{bottom:954.510000px;}
.y88{bottom:959.370000px;}
.y9e{bottom:960.450000px;}
.y14f{bottom:960.630000px;}
.yd{bottom:964.590000px;}
.y41{bottom:964.950000px;}
.y11c{bottom:971.790000px;}
.y87{bottom:976.470000px;}
.y9d{bottom:977.550000px;}
.yc{bottom:981.870000px;}
.y40{bottom:982.230000px;}
.y11b{bottom:989.070000px;}
.y14e{bottom:991.770000px;}
.y86{bottom:993.750000px;}
.y9c{bottom:994.830000px;}
.yb{bottom:998.610000px;}
.y11a{bottom:1006.350000px;}
.y85{bottom:1011.030000px;}
.y9b{bottom:1012.110000px;}
.ya{bottom:1013.190000px;}
.y119{bottom:1023.630000px;}
.y84{bottom:1028.310000px;}
.y9a{bottom:1029.750000px;}
.y9{bottom:1030.470000px;}
.y79{bottom:1039.290000px;}
.y118{bottom:1040.730000px;}
.y99{bottom:1044.150000px;}
.y83{bottom:1045.590000px;}
.y8{bottom:1047.750000px;}
.y78{bottom:1056.930000px;}
.y117{bottom:1058.010000px;}
.y98{bottom:1061.430000px;}
.y82{bottom:1062.870000px;}
.y7{bottom:1064.130000px;}
.y77{bottom:1074.210000px;}
.y116{bottom:1075.290000px;}
.y97{bottom:1078.710000px;}
.y81{bottom:1080.330000px;}
.y6{bottom:1083.210000px;}
.y76{bottom:1092.570000px;}
.y80{bottom:1094.910000px;}
.y96{bottom:1095.990000px;}
.y75{bottom:1109.850000px;}
.y7f{bottom:1112.190000px;}
.y95{bottom:1113.270000px;}
.y5{bottom:1124.610000px;}
.y74{bottom:1126.950000px;}
.y7e{bottom:1129.650000px;}
.ydd{bottom:1139.940000px;}
.y7d{bottom:1143.900000px;}
.y73{bottom:1144.260000px;}
.y2{bottom:1170.180000px;}
.y1{bottom:1196.100000px;}
.h10{height:17.280000px;}
.h11{height:17.316000px;}
.hf{height:35.280000px;}
.h4{height:47.344922px;}
.h7{height:48.616875px;}
.he{height:52.998047px;}
.hb{height:53.573906px;}
.h18{height:54.293906px;}
.h8{height:58.621992px;}
.h2{height:58.651172px;}
.h5{height:59.038594px;}
.h6{height:60.226875px;}
.ha{height:61.423863px;}
.hc{height:62.211094px;}
.h12{height:68.940000px;}
.h9{height:70.628906px;}
.hd{height:70.664062px;}
.h17{height:103.500000px;}
.h14{height:138.060000px;}
.h3{height:141.328125px;}
.h16{height:155.370000px;}
.h13{height:224.130000px;}
.h15{height:258.690000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:33.120000px;}
.wa{width:33.156000px;}
.w9{width:33.300000px;}
.w8{width:33.336000px;}
.wc{width:33.840000px;}
.wb{width:44.100000px;}
.w3{width:48.816000px;}
.wd{width:79.056000px;}
.we{width:92.700000px;}
.w12{width:103.896000px;}
.wf{width:109.656000px;}
.w11{width:115.200000px;}
.w6{width:127.476000px;}
.w10{width:127.656000px;}
.w13{width:133.056000px;}
.w4{width:272.370000px;}
.w5{width:349.815000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:7.740000px;}
.x3d{left:9.180000px;}
.x30{left:11.160000px;}
.x1a{left:12.780000px;}
.x40{left:14.040000px;}
.x14{left:15.120000px;}
.x3b{left:16.920000px;}
.x27{left:18.180000px;}
.x3f{left:19.260000px;}
.x25{left:20.520000px;}
.x41{left:22.320000px;}
.x2e{left:23.616000px;}
.x43{left:25.380000px;}
.x19{left:26.820000px;}
.x35{left:27.900000px;}
.x42{left:29.160000px;}
.x47{left:31.365000px;}
.x34{left:32.760000px;}
.x31{left:34.560000px;}
.x3a{left:36.180000px;}
.x44{left:37.260000px;}
.x46{left:38.700000px;}
.x3c{left:41.265000px;}
.x39{left:43.200000px;}
.x3e{left:45.180000px;}
.x13{left:46.260000px;}
.x29{left:48.780000px;}
.x28{left:50.400000px;}
.x45{left:51.840000px;}
.x1{left:53.999987px;}
.x48{left:55.980000px;}
.x24{left:63.720000px;}
.xf{left:67.499987px;}
.x2a{left:75.054000px;}
.x26{left:79.194000px;}
.x2d{left:80.820000px;}
.x2b{left:82.254000px;}
.xa{left:87.839987px;}
.x3{left:91.655987px;}
.x9{left:94.535987px;}
.x15{left:95.796000px;}
.x16{left:112.854000px;}
.x7{left:118.655987px;}
.x4{left:135.035987px;}
.x11{left:144.215987px;}
.x2f{left:160.770000px;}
.x32{left:254.370000px;}
.x6{left:327.314987px;}
.x8{left:331.094987px;}
.x33{left:364.755000px;}
.x17{left:368.895000px;}
.x12{left:370.874987px;}
.x1b{left:402.915000px;}
.x1c{left:436.755000px;}
.x5{left:446.474987px;}
.x1d{left:470.805000px;}
.xb{left:473.504987px;}
.xe{left:487.004987px;}
.x36{left:493.305000px;}
.x1e{left:504.825000px;}
.xc{left:507.344987px;}
.xd{left:514.004987px;}
.x4a{left:515.984987px;}
.x1f{left:538.845000px;}
.x20{left:572.685000px;}
.x21{left:606.705000px;}
.x37{left:609.225000px;}
.x22{left:640.725000px;}
.x49{left:656.249987px;}
.x23{left:674.610000px;}
.x2{left:702.149987px;}
.x38{left:713.850000px;}
.x18{left:719.430000px;}
.x4b{left:736.349987px;}
.x10{left:841.649987px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v2{vertical-align:-59.520000pt;}
.v4{vertical-align:-58.240000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-1.328000pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.230933pt;}
.lsc{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls20{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls21{letter-spacing:0.544000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.800000pt;}
.ls7{letter-spacing:8.912640pt;}
.ls1b{letter-spacing:10.240000pt;}
.lsd{letter-spacing:24.480000pt;}
.ls1f{letter-spacing:33.872640pt;}
.ls1e{letter-spacing:34.000640pt;}
.ls14{letter-spacing:36.432640pt;}
.ls1a{letter-spacing:60.752640pt;}
.ls1d{letter-spacing:60.880640pt;}
.ls16{letter-spacing:109.600000pt;}
.ls5{letter-spacing:129.232640pt;}
.ls6{letter-spacing:146.720000pt;}
.ls4{letter-spacing:175.520000pt;}
.ls15{letter-spacing:187.658667pt;}
.ls18{letter-spacing:213.920000pt;}
.ls19{letter-spacing:357.280000pt;}
.ls10{letter-spacing:808.746667pt;}
.ls12{letter-spacing:849.706667pt;}
.ws5{word-spacing:-53.120000pt;}
.wsd{word-spacing:-13.824000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.416533pt;}
.ws9{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.185067pt;}
.ws4{word-spacing:-13.096533pt;}
.wsa{word-spacing:-13.049067pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._6{margin-left:-1.064320pt;}
._0{width:0.903040pt;}
._4{width:1.858347pt;}
._13{width:2.935467pt;}
._8{width:4.302720pt;}
._a{width:5.312000pt;}
._14{width:6.268160pt;}
._2a{width:7.334400pt;}
._1d{width:8.233600pt;}
._12{width:9.136640pt;}
._15{width:10.145920pt;}
._16{width:11.367680pt;}
._19{width:12.270720pt;}
._c{width:14.395520pt;}
._29{width:15.304960pt;}
._1a{width:16.307840pt;}
._9{width:17.751680pt;}
._11{width:19.441920pt;}
._20{width:20.344960pt;}
._b{width:21.407360pt;}
._d{width:22.788480pt;}
._e{width:24.169600pt;}
._1f{width:25.087787pt;}
._27{width:26.081920pt;}
._26{width:27.038080pt;}
._2b{width:28.047360pt;}
._24{width:29.162880pt;}
._28{width:30.545920pt;}
._32{width:31.441280pt;}
._23{width:32.562560pt;}
._22{width:33.731200pt;}
._25{width:35.639680pt;}
._1b{width:36.865280pt;}
._1c{width:38.087040pt;}
._21{width:39.202560pt;}
._1e{width:40.743040pt;}
._2c{width:41.911680pt;}
._f{width:42.867840pt;}
._10{width:44.514560pt;}
._2d{width:45.683200pt;}
._33{width:48.029867pt;}
._31{width:48.976640pt;}
._1{width:55.183147pt;}
._2e{width:58.697600pt;}
._2f{width:62.150400pt;}
._30{width:63.372160pt;}
._2{width:98.240000pt;}
._18{width:105.815040pt;}
._17{width:106.930560pt;}
._7{width:108.431147pt;}
._5{width:154.012587pt;}
._3{width:178.720000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:2.880000pt;}
.yae{bottom:3.200000pt;}
.yba{bottom:10.400000pt;}
.yab{bottom:10.880000pt;}
.yb8{bottom:18.080000pt;}
.yce{bottom:18.400000pt;}
.ydb{bottom:18.560000pt;}
.yb6{bottom:25.760000pt;}
.yd3{bottom:26.080000pt;}
.yf5{bottom:26.240000pt;}
.yb7{bottom:33.440000pt;}
.ycb{bottom:33.760000pt;}
.yd9{bottom:33.920000pt;}
.yb9{bottom:41.120000pt;}
.yd2{bottom:41.440000pt;}
.yf4{bottom:41.600000pt;}
.ybb{bottom:48.800000pt;}
.yd8{bottom:49.114667pt;}
.yca{bottom:49.120000pt;}
.yf2{bottom:49.280000pt;}
.yd5{bottom:56.794667pt;}
.yc3{bottom:56.800000pt;}
.y4{bottom:59.680000pt;}
.yd7{bottom:64.474667pt;}
.yc9{bottom:64.480000pt;}
.yc2{bottom:72.160000pt;}
.y3{bottom:75.072000pt;}
.yd6{bottom:79.834667pt;}
.yc8{bottom:79.840000pt;}
.yed{bottom:87.520000pt;}
.ybf{bottom:87.560000pt;}
.yd4{bottom:93.792000pt;}
.y14d{bottom:94.112000pt;}
.yda{bottom:95.194667pt;}
.ye6{bottom:95.200000pt;}
.yf8{bottom:95.226667pt;}
.ybd{bottom:95.240000pt;}
.y7c{bottom:95.392000pt;}
.y3f{bottom:97.152000pt;}
.y115{bottom:98.272000pt;}
.y109{bottom:101.312000pt;}
.ye1{bottom:102.720000pt;}
.yef{bottom:102.880000pt;}
.yf3{bottom:102.906667pt;}
.ybe{bottom:102.920000pt;}
.y72{bottom:104.352000pt;}
.y14c{bottom:109.312000pt;}
.ydf{bottom:110.400000pt;}
.yc7{bottom:110.440000pt;}
.ydc{bottom:110.554667pt;}
.yf7{bottom:110.586667pt;}
.y7b{bottom:110.752000pt;}
.y3e{bottom:112.512000pt;}
.y114{bottom:113.632000pt;}
.y108{bottom:116.672000pt;}
.ye0{bottom:118.080000pt;}
.yc1{bottom:118.120000pt;}
.yf9{bottom:118.266667pt;}
.y71{bottom:119.712000pt;}
.y17e{bottom:121.792000pt;}
.y7a{bottom:122.912000pt;}
.y14b{bottom:124.672000pt;}
.ye5{bottom:125.760000pt;}
.yc6{bottom:125.800000pt;}
.yf6{bottom:125.946667pt;}
.y3d{bottom:127.712000pt;}
.y113{bottom:128.992000pt;}
.y107{bottom:131.392000pt;}
.yec{bottom:133.440000pt;}
.yc0{bottom:133.480000pt;}
.y70{bottom:135.066667pt;}
.y17d{bottom:137.146667pt;}
.y14a{bottom:140.026667pt;}
.ye4{bottom:141.120000pt;}
.yc5{bottom:141.160000pt;}
.y3c{bottom:143.066667pt;}
.y106{bottom:144.346667pt;}
.yeb{bottom:148.800000pt;}
.yd1{bottom:148.840000pt;}
.y6f{bottom:150.426667pt;}
.y17c{bottom:152.506667pt;}
.y149{bottom:155.386667pt;}
.ye3{bottom:156.480000pt;}
.yc4{bottom:156.520000pt;}
.y3b{bottom:158.426667pt;}
.y105{bottom:159.546667pt;}
.yea{bottom:164.160000pt;}
.yd0{bottom:164.200000pt;}
.y6e{bottom:165.786667pt;}
.y17b{bottom:167.866667pt;}
.y148{bottom:170.746667pt;}
.ye2{bottom:171.840000pt;}
.ycd{bottom:171.880000pt;}
.y3a{bottom:173.786667pt;}
.y112{bottom:174.266667pt;}
.y104{bottom:174.906667pt;}
.ycf{bottom:179.560000pt;}
.y6d{bottom:181.946667pt;}
.y17a{bottom:183.226667pt;}
.y147{bottom:186.106667pt;}
.ye9{bottom:187.040000pt;}
.yf0{bottom:187.200000pt;}
.y111{bottom:187.226667pt;}
.ycc{bottom:187.240000pt;}
.y39{bottom:189.146667pt;}
.y103{bottom:190.266667pt;}
.y6c{bottom:197.306667pt;}
.y179{bottom:198.426667pt;}
.y146{bottom:201.306667pt;}
.ye8{bottom:202.400000pt;}
.y110{bottom:202.586667pt;}
.y38{bottom:204.506667pt;}
.y102{bottom:205.626667pt;}
.y6b{bottom:212.666667pt;}
.y178{bottom:213.786667pt;}
.y145{bottom:216.026667pt;}
.ybc{bottom:217.146667pt;}
.ye7{bottom:217.760000pt;}
.y10f{bottom:217.946667pt;}
.y37{bottom:219.706667pt;}
.y101{bottom:220.986667pt;}
.y6a{bottom:228.026667pt;}
.y144{bottom:228.986667pt;}
.y177{bottom:229.146667pt;}
.y10e{bottom:233.146667pt;}
.y36{bottom:234.266667pt;}
.y19a{bottom:235.066667pt;}
.y100{bottom:236.346667pt;}
.y69{bottom:243.386667pt;}
.y143{bottom:244.346667pt;}
.y176{bottom:244.506667pt;}
.y10d{bottom:248.506667pt;}
.y199{bottom:250.426667pt;}
.yff{bottom:251.546667pt;}
.y68{bottom:258.746667pt;}
.y142{bottom:259.706667pt;}
.y175{bottom:259.866667pt;}
.y35{bottom:261.946667pt;}
.y10c{bottom:263.866667pt;}
.y198{bottom:265.786667pt;}
.y67{bottom:274.106667pt;}
.y34{bottom:274.906667pt;}
.y174{bottom:275.226667pt;}
.y10b{bottom:279.226667pt;}
.y197{bottom:281.146667pt;}
.yfe{bottom:281.466667pt;}
.y33{bottom:290.266667pt;}
.y173{bottom:290.426667pt;}
.y10a{bottom:294.586667pt;}
.y196{bottom:296.346667pt;}
.y66{bottom:301.826667pt;}
.y32{bottom:304.866667pt;}
.y141{bottom:305.666667pt;}
.y172{bottom:305.826667pt;}
.yfd{bottom:309.186667pt;}
.y195{bottom:311.746667pt;}
.y65{bottom:314.786667pt;}
.y31{bottom:317.666667pt;}
.y140{bottom:321.026667pt;}
.y171{bottom:321.186667pt;}
.yfc{bottom:322.146667pt;}
.y194{bottom:327.106667pt;}
.y64{bottom:330.146667pt;}
.y30{bottom:332.866667pt;}
.y13f{bottom:336.386667pt;}
.y170{bottom:336.546667pt;}
.yfb{bottom:338.466667pt;}
.y193{bottom:342.466667pt;}
.y63{bottom:345.506667pt;}
.y2f{bottom:348.226667pt;}
.yfa{bottom:351.266667pt;}
.y13e{bottom:351.586667pt;}
.y16f{bottom:351.906667pt;}
.y192{bottom:357.826667pt;}
.y62{bottom:360.866667pt;}
.y2e{bottom:363.586667pt;}
.y13d{bottom:366.946667pt;}
.y16e{bottom:367.266667pt;}
.y191{bottom:373.186667pt;}
.y61{bottom:376.226667pt;}
.y2d{bottom:378.946667pt;}
.y16d{bottom:381.666667pt;}
.y13c{bottom:382.306667pt;}
.y190{bottom:388.386667pt;}
.y60{bottom:391.586667pt;}
.y2c{bottom:393.826667pt;}
.y16c{bottom:394.466667pt;}
.y13b{bottom:397.666667pt;}
.y18f{bottom:403.746667pt;}
.y2b{bottom:406.466667pt;}
.y5f{bottom:406.786667pt;}
.y16b{bottom:409.346667pt;}
.y13a{bottom:412.386667pt;}
.yb5{bottom:417.186667pt;}
.y18e{bottom:419.106667pt;}
.y2a{bottom:421.826667pt;}
.y5e{bottom:422.146667pt;}
.y16a{bottom:422.306667pt;}
.y139{bottom:425.186667pt;}
.y18d{bottom:434.466667pt;}
.y29{bottom:437.186667pt;}
.y5d{bottom:437.506667pt;}
.y138{bottom:440.546667pt;}
.yf1{bottom:443.906667pt;}
.y18c{bottom:449.826667pt;}
.y169{bottom:452.226667pt;}
.y28{bottom:452.546667pt;}
.y5c{bottom:452.866667pt;}
.y137{bottom:455.906667pt;}
.y18b{bottom:465.186667pt;}
.y27{bottom:467.906667pt;}
.y5b{bottom:468.226667pt;}
.y136{bottom:471.266667pt;}
.y168{bottom:479.906667pt;}
.y18a{bottom:480.386667pt;}
.y26{bottom:483.266667pt;}
.y5a{bottom:483.586667pt;}
.y135{bottom:486.626667pt;}
.y167{bottom:492.866667pt;}
.y189{bottom:495.746667pt;}
.yb4{bottom:497.666667pt;}
.y25{bottom:497.986667pt;}
.y59{bottom:498.786667pt;}
.y134{bottom:501.986667pt;}
.y166{bottom:508.226667pt;}
.yb3{bottom:510.466667pt;}
.y24{bottom:510.786667pt;}
.y188{bottom:511.106667pt;}
.y58{bottom:513.506667pt;}
.y133{bottom:517.186667pt;}
.y165{bottom:523.746667pt;}
.y23{bottom:526.146667pt;}
.y57{bottom:526.466667pt;}
.y132{bottom:532.546667pt;}
.y164{bottom:536.893333pt;}
.y22{bottom:541.533333pt;}
.y56{bottom:541.853333pt;}
.yb2{bottom:542.493333pt;}
.y131{bottom:547.933333pt;}
.y163{bottom:552.093333pt;}
.y21{bottom:556.893333pt;}
.y55{bottom:557.213333pt;}
.yb1{bottom:558.493333pt;}
.y130{bottom:563.293333pt;}
.y162{bottom:567.613333pt;}
.y20{bottom:572.093333pt;}
.y54{bottom:572.413333pt;}
.yb0{bottom:574.493333pt;}
.y12f{bottom:578.653333pt;}
.y161{bottom:580.733333pt;}
.yee{bottom:582.653333pt;}
.y1f{bottom:587.453333pt;}
.y53{bottom:587.773333pt;}
.yaf{bottom:590.493333pt;}
.y12e{bottom:594.013333pt;}
.y160{bottom:596.093333pt;}
.y1e{bottom:602.813333pt;}
.y52{bottom:603.133333pt;}
.yaa{bottom:606.493333pt;}
.y12d{bottom:608.573333pt;}
.y15f{bottom:611.453333pt;}
.y1d{bottom:618.173333pt;}
.y51{bottom:618.493333pt;}
.y12c{bottom:621.533333pt;}
.yac{bottom:622.493333pt;}
.y15e{bottom:626.973333pt;}
.y1c{bottom:633.053333pt;}
.y50{bottom:633.853333pt;}
.y12b{bottom:636.893333pt;}
.y15d{bottom:639.933333pt;}
.y1b{bottom:645.693333pt;}
.y4f{bottom:649.053333pt;}
.y12a{bottom:652.253333pt;}
.y15c{bottom:655.293333pt;}
.ya9{bottom:656.733333pt;}
.y1a{bottom:661.053333pt;}
.y4e{bottom:663.773333pt;}
.y187{bottom:664.413333pt;}
.y129{bottom:667.453333pt;}
.y15b{bottom:670.653333pt;}
.y94{bottom:670.813333pt;}
.y19{bottom:676.413333pt;}
.y4d{bottom:676.733333pt;}
.y186{bottom:679.773333pt;}
.y128{bottom:682.813333pt;}
.y15a{bottom:685.853333pt;}
.y93{bottom:686.173333pt;}
.y18{bottom:691.293333pt;}
.y4c{bottom:692.093333pt;}
.y185{bottom:695.133333pt;}
.y127{bottom:698.173333pt;}
.ya8{bottom:700.253333pt;}
.y159{bottom:701.213333pt;}
.y92{bottom:701.533333pt;}
.y17{bottom:703.933333pt;}
.y4b{bottom:707.453333pt;}
.y184{bottom:710.493333pt;}
.y126{bottom:713.533333pt;}
.ya7{bottom:715.613333pt;}
.y158{bottom:716.573333pt;}
.y91{bottom:716.733333pt;}
.y16{bottom:719.293333pt;}
.y4a{bottom:722.653333pt;}
.y183{bottom:725.853333pt;}
.y125{bottom:728.893333pt;}
.ya6{bottom:730.973333pt;}
.y157{bottom:731.933333pt;}
.y90{bottom:732.093333pt;}
.y15{bottom:734.653333pt;}
.y49{bottom:738.013333pt;}
.y182{bottom:741.053333pt;}
.y124{bottom:744.253333pt;}
.ya5{bottom:746.333333pt;}
.y156{bottom:747.293333pt;}
.y8f{bottom:747.453333pt;}
.y14{bottom:750.013333pt;}
.y48{bottom:753.373333pt;}
.y181{bottom:756.413333pt;}
.y123{bottom:759.453333pt;}
.ya4{bottom:761.693333pt;}
.y155{bottom:762.653333pt;}
.y8e{bottom:762.813333pt;}
.y13{bottom:765.373333pt;}
.y47{bottom:768.733333pt;}
.y180{bottom:771.773333pt;}
.y122{bottom:774.853333pt;}
.ya3{bottom:776.933333pt;}
.y154{bottom:777.893333pt;}
.y8d{bottom:778.213333pt;}
.y12{bottom:780.773333pt;}
.yde{bottom:782.693333pt;}
.y46{bottom:784.133333pt;}
.y17f{bottom:787.173333pt;}
.y121{bottom:789.573333pt;}
.ya2{bottom:792.293333pt;}
.y153{bottom:793.253333pt;}
.y8c{bottom:793.413333pt;}
.y11{bottom:795.973333pt;}
.y45{bottom:799.493333pt;}
.y120{bottom:802.533333pt;}
.ya1{bottom:807.653333pt;}
.y152{bottom:808.613333pt;}
.y8b{bottom:808.773333pt;}
.y10{bottom:811.333333pt;}
.y44{bottom:814.693333pt;}
.y11f{bottom:817.893333pt;}
.ya0{bottom:823.013333pt;}
.y151{bottom:823.973333pt;}
.y8a{bottom:824.453333pt;}
.yf{bottom:826.693333pt;}
.y43{bottom:829.413333pt;}
.y11e{bottom:833.093333pt;}
.y89{bottom:837.413333pt;}
.y9f{bottom:838.373333pt;}
.y150{bottom:839.333333pt;}
.ye{bottom:842.053333pt;}
.y42{bottom:842.373333pt;}
.y11d{bottom:848.453333pt;}
.y88{bottom:852.773333pt;}
.y9e{bottom:853.733333pt;}
.y14f{bottom:853.893333pt;}
.yd{bottom:857.413333pt;}
.y41{bottom:857.733333pt;}
.y11c{bottom:863.813333pt;}
.y87{bottom:867.973333pt;}
.y9d{bottom:868.933333pt;}
.yc{bottom:872.773333pt;}
.y40{bottom:873.093333pt;}
.y11b{bottom:879.173333pt;}
.y14e{bottom:881.573333pt;}
.y86{bottom:883.333333pt;}
.y9c{bottom:884.293333pt;}
.yb{bottom:887.653333pt;}
.y11a{bottom:894.533333pt;}
.y85{bottom:898.693333pt;}
.y9b{bottom:899.653333pt;}
.ya{bottom:900.613333pt;}
.y119{bottom:909.893333pt;}
.y84{bottom:914.053333pt;}
.y9a{bottom:915.333333pt;}
.y9{bottom:915.973333pt;}
.y79{bottom:923.813333pt;}
.y118{bottom:925.093333pt;}
.y99{bottom:928.133333pt;}
.y83{bottom:929.413333pt;}
.y8{bottom:931.333333pt;}
.y78{bottom:939.493333pt;}
.y117{bottom:940.453333pt;}
.y98{bottom:943.493333pt;}
.y82{bottom:944.773333pt;}
.y7{bottom:945.893333pt;}
.y77{bottom:954.853333pt;}
.y116{bottom:955.813333pt;}
.y97{bottom:958.853333pt;}
.y81{bottom:960.293333pt;}
.y6{bottom:962.853333pt;}
.y76{bottom:971.173333pt;}
.y80{bottom:973.253333pt;}
.y96{bottom:974.213333pt;}
.y75{bottom:986.533333pt;}
.y7f{bottom:988.613333pt;}
.y95{bottom:989.573333pt;}
.y5{bottom:999.653333pt;}
.y74{bottom:1001.733333pt;}
.y7e{bottom:1004.133333pt;}
.ydd{bottom:1013.280000pt;}
.y7d{bottom:1016.800000pt;}
.y73{bottom:1017.120000pt;}
.y2{bottom:1040.160000pt;}
.y1{bottom:1063.200000pt;}
.h10{height:15.360000pt;}
.h11{height:15.392000pt;}
.hf{height:31.360000pt;}
.h4{height:42.084375pt;}
.h7{height:43.215000pt;}
.he{height:47.109375pt;}
.hb{height:47.621250pt;}
.h18{height:48.261250pt;}
.h8{height:52.108438pt;}
.h2{height:52.134375pt;}
.h5{height:52.478750pt;}
.h6{height:53.535000pt;}
.ha{height:54.598989pt;}
.hc{height:55.298750pt;}
.h12{height:61.280000pt;}
.h9{height:62.781250pt;}
.hd{height:62.812500pt;}
.h17{height:92.000000pt;}
.h14{height:122.720000pt;}
.h3{height:125.625000pt;}
.h16{height:138.106667pt;}
.h13{height:199.226667pt;}
.h15{height:229.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:29.440000pt;}
.wa{width:29.472000pt;}
.w9{width:29.600000pt;}
.w8{width:29.632000pt;}
.wc{width:30.080000pt;}
.wb{width:39.200000pt;}
.w3{width:43.392000pt;}
.wd{width:70.272000pt;}
.we{width:82.400000pt;}
.w12{width:92.352000pt;}
.wf{width:97.472000pt;}
.w11{width:102.400000pt;}
.w6{width:113.312000pt;}
.w10{width:113.472000pt;}
.w13{width:118.272000pt;}
.w4{width:242.106667pt;}
.w5{width:310.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:6.880000pt;}
.x3d{left:8.160000pt;}
.x30{left:9.920000pt;}
.x1a{left:11.360000pt;}
.x40{left:12.480000pt;}
.x14{left:13.440000pt;}
.x3b{left:15.040000pt;}
.x27{left:16.160000pt;}
.x3f{left:17.120000pt;}
.x25{left:18.240000pt;}
.x41{left:19.840000pt;}
.x2e{left:20.992000pt;}
.x43{left:22.560000pt;}
.x19{left:23.840000pt;}
.x35{left:24.800000pt;}
.x42{left:25.920000pt;}
.x47{left:27.880000pt;}
.x34{left:29.120000pt;}
.x31{left:30.720000pt;}
.x3a{left:32.160000pt;}
.x44{left:33.120000pt;}
.x46{left:34.400000pt;}
.x3c{left:36.680000pt;}
.x39{left:38.400000pt;}
.x3e{left:40.160000pt;}
.x13{left:41.120000pt;}
.x29{left:43.360000pt;}
.x28{left:44.800000pt;}
.x45{left:46.080000pt;}
.x1{left:47.999988pt;}
.x48{left:49.760000pt;}
.x24{left:56.640000pt;}
.xf{left:59.999988pt;}
.x2a{left:66.714667pt;}
.x26{left:70.394667pt;}
.x2d{left:71.840000pt;}
.x2b{left:73.114667pt;}
.xa{left:78.079988pt;}
.x3{left:81.471988pt;}
.x9{left:84.031988pt;}
.x15{left:85.152000pt;}
.x16{left:100.314667pt;}
.x7{left:105.471988pt;}
.x4{left:120.031988pt;}
.x11{left:128.191988pt;}
.x2f{left:142.906667pt;}
.x32{left:226.106667pt;}
.x6{left:290.946655pt;}
.x8{left:294.306655pt;}
.x33{left:324.226667pt;}
.x17{left:327.906667pt;}
.x12{left:329.666655pt;}
.x1b{left:358.146667pt;}
.x1c{left:388.226667pt;}
.x5{left:396.866655pt;}
.x1d{left:418.493333pt;}
.xb{left:420.893322pt;}
.xe{left:432.893322pt;}
.x36{left:438.493333pt;}
.x1e{left:448.733333pt;}
.xc{left:450.973322pt;}
.xd{left:456.893322pt;}
.x4a{left:458.653322pt;}
.x1f{left:478.973333pt;}
.x20{left:509.053333pt;}
.x21{left:539.293333pt;}
.x37{left:541.533333pt;}
.x22{left:569.533333pt;}
.x49{left:583.333322pt;}
.x23{left:599.653333pt;}
.x2{left:624.133322pt;}
.x38{left:634.533333pt;}
.x18{left:639.493333pt;}
.x4b{left:654.533322pt;}
.x10{left:748.133322pt;}
}




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