
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_80888a4664e9e31b4636f1e1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_3903bc11c3523c7bc7a771a7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.089844;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_ee80737c653336a7fc255a79.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_56a6672e6ff8e8335341a56a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.089844;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_813d2aa53c912e416553b8b6.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_eee22b32f776896125896387.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_f65e7ffe7bddd5b06de36eb8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_123bb90a4cdb53d2504ee4c8.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.186600px;}
.lse{letter-spacing:-0.162000px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.ls15{letter-spacing:-0.013320px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.199200px;}
.ls10{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:47.726640px;}
.ls13{letter-spacing:63.566640px;}
.ls16{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws4{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.213080px;}
.wsc{word-spacing:-13.162800px;}
.ws8{word-spacing:-13.064400px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws9{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._2c{margin-left:-4.197599px;}
._b{margin-left:-3.173760px;}
._6{margin-left:-2.121120px;}
._0{margin-left:-1.110000px;}
._3{width:1.264787px;}
._7{width:3.186600px;}
._5{width:4.328400px;}
._4{width:5.952000px;}
._8{width:6.972597px;}
._c{width:7.995960px;}
._f{width:9.078120px;}
._2{width:10.730388px;}
._1{width:11.980800px;}
._a{width:14.368800px;}
._9{width:15.390600px;}
._14{width:16.472880px;}
._2d{width:17.615280px;}
._26{width:18.687600px;}
._d{width:20.500920px;}
._e{width:21.522960px;}
._29{width:22.725360px;}
._2e{width:23.895480px;}
._2b{width:25.851600px;}
._1b{width:27.715320px;}
._2a{width:28.737360px;}
._10{width:29.939760px;}
._25{width:31.359720px;}
._28{width:33.667200px;}
._18{width:36.793440px;}
._23{width:39.017880px;}
._27{width:40.581000px;}
._12{width:48.456720px;}
._20{width:50.981760px;}
._17{width:63.486720px;}
._1c{width:64.989720px;}
._11{width:66.071880px;}
._13{width:67.875480px;}
._19{width:69.767040px;}
._1d{width:91.983600px;}
._1a{width:93.847320px;}
._1e{width:96.686640px;}
._15{width:99.979560px;}
._1f{width:141.161760px;}
._16{width:175.911120px;}
._21{width:182.824920px;}
._24{width:188.416080px;}
._22{width:252.323640px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y115{bottom:3.330000px;}
.y11a{bottom:3.420000px;}
.y113{bottom:4.500000px;}
.y117{bottom:6.750000px;}
.y41{bottom:7.830000px;}
.y47{bottom:7.920000px;}
.y112{bottom:11.250000px;}
.y44{bottom:25.380000px;}
.y46{bottom:25.470000px;}
.y4a{bottom:25.500000px;}
.y43{bottom:43.020000px;}
.y49{bottom:43.050000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y51{bottom:108.660000px;}
.y122{bottom:117.180000px;}
.y94{bottom:117.300000px;}
.yd1{bottom:118.470000px;}
.yfa{bottom:124.230000px;}
.y82{bottom:125.580000px;}
.y19b{bottom:133.680000px;}
.y93{bottom:134.850000px;}
.yd0{bottom:136.020000px;}
.y14f{bottom:140.610000px;}
.y27{bottom:140.790000px;}
.yf9{bottom:141.780000px;}
.y81{bottom:143.130000px;}
.y131{bottom:146.820000px;}
.y19a{bottom:151.320000px;}
.y179{bottom:152.310000px;}
.y92{bottom:152.490000px;}
.y50{bottom:153.570000px;}
.ycf{bottom:153.660000px;}
.y14e{bottom:158.160000px;}
.y26{bottom:158.340000px;}
.yf8{bottom:159.420000px;}
.y80{bottom:160.770000px;}
.y178{bottom:169.860000px;}
.yce{bottom:171.210000px;}
.y135{bottom:174.180000px;}
.y25{bottom:175.980000px;}
.y14d{bottom:176.610000px;}
.yf7{bottom:176.970000px;}
.y199{bottom:177.870000px;}
.y7f{bottom:187.320000px;}
.y91{bottom:188.040000px;}
.ycd{bottom:188.760000px;}
.y24{bottom:193.530000px;}
.y14c{bottom:194.160000px;}
.yf6{bottom:194.520000px;}
.y198{bottom:195.510000px;}
.y177{bottom:196.770000px;}
.y4f{bottom:198.570000px;}
.y134{bottom:201.450000px;}
.ycc{bottom:206.400000px;}
.y23{bottom:211.170000px;}
.y14b{bottom:212.610000px;}
.y90{bottom:220.260000px;}
.y197{bottom:222.060000px;}
.y7e{bottom:222.960000px;}
.y133{bottom:228.810000px;}
.yf5{bottom:230.070000px;}
.y14a{bottom:230.160000px;}
.y196{bottom:239.610000px;}
.y7d{bottom:240.510000px;}
.ycb{bottom:241.950000px;}
.y176{bottom:245.550000px;}
.y22{bottom:246.720000px;}
.y114{bottom:248.250000px;}
.yf4{bottom:248.520000px;}
.y149{bottom:248.610000px;}
.y132{bottom:256.170000px;}
.y7c{bottom:258.060000px;}
.yca{bottom:259.590000px;}
.y4e{bottom:261.030000px;}
.y21{bottom:264.270000px;}
.y111{bottom:265.800000px;}
.y148{bottom:266.160000px;}
.y195{bottom:266.250000px;}
.yf3{bottom:266.880000px;}
.y175{bottom:275.070000px;}
.y7b{bottom:275.610000px;}
.yc9{bottom:277.140000px;}
.y20{bottom:281.910000px;}
.y12c{bottom:283.530000px;}
.y194{bottom:283.800000px;}
.y147{bottom:284.610000px;}
.yf2{bottom:285.330000px;}
.y7a{bottom:294.060000px;}
.yc8{bottom:295.590000px;}
.y1f{bottom:299.460000px;}
.y146{bottom:302.160000px;}
.yf1{bottom:303.780000px;}
.y4d{bottom:305.940000px;}
.y193{bottom:310.440000px;}
.y130{bottom:310.800000px;}
.y79{bottom:311.700000px;}
.y174{bottom:312.420000px;}
.yc7{bottom:313.140000px;}
.y1e{bottom:317.100000px;}
.yf0{bottom:322.140000px;}
.y192{bottom:327.990000px;}
.y78{bottom:329.250000px;}
.y145{bottom:329.610000px;}
.yc6{bottom:330.690000px;}
.y12f{bottom:338.160000px;}
.y1d{bottom:344.010000px;}
.y77{bottom:347.700000px;}
.yc5{bottom:349.140000px;}
.y191{bottom:354.540000px;}
.yef{bottom:358.590000px;}
.y173{bottom:360.750000px;}
.y144{bottom:365.160000px;}
.y76{bottom:365.250000px;}
.y12e{bottom:365.520000px;}
.yc4{bottom:367.590000px;}
.y4c{bottom:368.490000px;}
.y190{bottom:372.180000px;}
.yee{bottom:376.230000px;}
.y172{bottom:378.300000px;}
.y75{bottom:382.800000px;}
.yc3{bottom:385.140000px;}
.y18f{bottom:389.730000px;}
.y1c{bottom:392.610000px;}
.y12d{bottom:392.880000px;}
.yed{bottom:393.780000px;}
.y171{bottom:395.850000px;}
.y143{bottom:400.350000px;}
.y74{bottom:401.250000px;}
.y4b{bottom:413.400000px;}
.y170{bottom:413.490000px;}
.y18e{bottom:416.370000px;}
.y142{bottom:417.990000px;}
.y73{bottom:418.800000px;}
.y127{bottom:420.150000px;}
.yec{bottom:420.330000px;}
.yc2{bottom:421.500000px;}
.yb2{bottom:422.040000px;}
.y1b{bottom:429.600000px;}
.y16f{bottom:431.040000px;}
.y18d{bottom:433.920000px;}
.y141{bottom:435.540000px;}
.y72{bottom:436.350000px;}
.yc1{bottom:439.140000px;}
.yb1{bottom:439.590000px;}
.y1a{bottom:447.150000px;}
.y12b{bottom:447.510000px;}
.y140{bottom:453.090000px;}
.y71{bottom:454.800000px;}
.yeb{bottom:455.880000px;}
.yc0{bottom:456.690000px;}
.yb0{bottom:457.230000px;}
.y48{bottom:458.310000px;}
.y18c{bottom:460.470000px;}
.y19{bottom:464.790000px;}
.y16e{bottom:466.590000px;}
.y13f{bottom:470.760000px;}
.y70{bottom:472.470000px;}
.ybf{bottom:474.360000px;}
.y12a{bottom:474.900000px;}
.y18b{bottom:478.140000px;}
.y18{bottom:482.370000px;}
.y16d{bottom:484.260000px;}
.y6f{bottom:490.020000px;}
.ybe{bottom:491.910000px;}
.yaf{bottom:492.810000px;}
.y17{bottom:499.920000px;}
.y16c{bottom:501.810000px;}
.y129{bottom:502.170000px;}
.y13e{bottom:503.700000px;}
.y18a{bottom:504.690000px;}
.y6e{bottom:508.470000px;}
.ybd{bottom:509.460000px;}
.yae{bottom:510.360000px;}
.yea{bottom:511.170000px;}
.y16{bottom:517.560000px;}
.y16b{bottom:519.450000px;}
.y45{bottom:520.800000px;}
.y189{bottom:522.330000px;}
.y6d{bottom:526.020000px;}
.y110{bottom:528.000000px;}
.yad{bottom:528.810000px;}
.y128{bottom:529.530000px;}
.ye9{bottom:529.620000px;}
.y13d{bottom:531.060000px;}
.y15{bottom:535.110000px;}
.ybc{bottom:536.100000px;}
.y16a{bottom:537.000000px;}
.y188{bottom:539.880000px;}
.y6c{bottom:543.570000px;}
.y10f{bottom:545.550000px;}
.yac{bottom:547.260000px;}
.y14{bottom:552.750000px;}
.y169{bottom:554.550000px;}
.y121{bottom:556.890000px;}
.y13c{bottom:558.420000px;}
.y10e{bottom:563.190000px;}
.yab{bottom:564.810000px;}
.y42{bottom:565.800000px;}
.ye8{bottom:566.070000px;}
.y187{bottom:566.430000px;}
.ybb{bottom:571.650000px;}
.y6b{bottom:580.020000px;}
.yaa{bottom:583.170000px;}
.ye7{bottom:583.620000px;}
.y186{bottom:584.070000px;}
.y126{bottom:584.250000px;}
.y13b{bottom:585.690000px;}
.y13{bottom:588.300000px;}
.yba{bottom:589.290000px;}
.y168{bottom:590.190000px;}
.y6a{bottom:597.660000px;}
.y10d{bottom:598.740000px;}
.ye6{bottom:601.260000px;}
.ya9{bottom:601.620000px;}
.y12{bottom:605.850000px;}
.yb9{bottom:606.840000px;}
.y167{bottom:607.740000px;}
.y185{bottom:610.620000px;}
.y125{bottom:611.520000px;}
.y13a{bottom:613.050000px;}
.y10c{bottom:616.290000px;}
.y11{bottom:623.490000px;}
.y69{bottom:624.210000px;}
.yb8{bottom:624.390000px;}
.y166{bottom:625.380000px;}
.ye5{bottom:627.810000px;}
.y40{bottom:628.260000px;}
.y10b{bottom:633.930000px;}
.ya8{bottom:638.070000px;}
.y124{bottom:638.880000px;}
.y139{bottom:640.410000px;}
.y10{bottom:641.040000px;}
.y165{bottom:642.930000px;}
.y10a{bottom:651.480000px;}
.y184{bottom:654.810000px;}
.ya7{bottom:655.620000px;}
.yf{bottom:658.680000px;}
.y68{bottom:659.760000px;}
.yb7{bottom:660.030000px;}
.y164{bottom:660.480000px;}
.ye4{bottom:663.360000px;}
.y123{bottom:666.240000px;}
.y109{bottom:669.120000px;}
.y183{bottom:672.360000px;}
.ya6{bottom:673.260000px;}
.ye{bottom:676.230000px;}
.y3f{bottom:676.950000px;}
.y67{bottom:677.400000px;}
.yb6{bottom:677.580000px;}
.y163{bottom:678.120000px;}
.ye3{bottom:681.000000px;}
.y108{bottom:686.670000px;}
.y138{bottom:689.100000px;}
.y182{bottom:690.000000px;}
.ya5{bottom:690.810000px;}
.y120{bottom:693.600000px;}
.y66{bottom:694.950000px;}
.yb5{bottom:695.220000px;}
.y8f{bottom:698.370000px;}
.ye2{bottom:698.550000px;}
.yd{bottom:703.140000px;}
.y162{bottom:705.030000px;}
.ya4{bottom:708.360000px;}
.y3e{bottom:712.590000px;}
.ye1{bottom:716.190000px;}
.y181{bottom:716.550000px;}
.y107{bottom:722.220000px;}
.y137{bottom:724.650000px;}
.ya3{bottom:726.000000px;}
.y3d{bottom:730.140000px;}
.yb4{bottom:730.770000px;}
.y8e{bottom:731.400000px;}
.y180{bottom:734.190000px;}
.y106{bottom:740.670000px;}
.y11f{bottom:742.290000px;}
.ye0{bottom:742.740000px;}
.ya2{bottom:743.550000px;}
.y3c{bottom:747.690000px;}
.y65{bottom:748.140000px;}
.yc{bottom:751.380000px;}
.y161{bottom:753.270000px;}
.y8d{bottom:758.670000px;}
.y105{bottom:759.030000px;}
.y17f{bottom:760.740000px;}
.ya1{bottom:761.190000px;}
.yb3{bottom:762.990000px;}
.y3b{bottom:765.330000px;}
.y64{bottom:765.690000px;}
.y160{bottom:770.820000px;}
.y104{bottom:777.480000px;}
.y11e{bottom:777.840000px;}
.ydf{bottom:778.290000px;}
.ya0{bottom:778.740000px;}
.y3a{bottom:782.880000px;}
.y63{bottom:783.330000px;}
.y8c{bottom:786.030000px;}
.yb{bottom:787.200000px;}
.y15f{bottom:789.270000px;}
.y11d{bottom:795.390000px;}
.yde{bottom:795.930000px;}
.y9f{bottom:796.290000px;}
.y39{bottom:800.520000px;}
.y62{bottom:800.880000px;}
.y15e{bottom:806.820000px;}
.y136{bottom:810.060000px;}
.y11c{bottom:813.030000px;}
.y8b{bottom:813.390000px;}
.ydd{bottom:813.480000px;}
.y103{bottom:813.930000px;}
.y61{bottom:818.520000px;}
.y17e{bottom:822.480000px;}
.y9e{bottom:822.930000px;}
.ya{bottom:823.200000px;}
.y15d{bottom:825.270000px;}
.y38{bottom:827.340000px;}
.y11b{bottom:830.580000px;}
.ydc{bottom:831.030000px;}
.y102{bottom:831.480000px;}
.y17d{bottom:840.030000px;}
.y8a{bottom:840.750000px;}
.y15c{bottom:842.820000px;}
.ydb{bottom:848.670000px;}
.y60{bottom:854.070000px;}
.y9d{bottom:858.480000px;}
.y119{bottom:862.800000px;}
.y9{bottom:862.980000px;}
.y17c{bottom:866.670000px;}
.y101{bottom:867.030000px;}
.y89{bottom:868.020000px;}
.y15b{bottom:870.270000px;}
.y5f{bottom:871.620000px;}
.yda{bottom:875.220000px;}
.y37{bottom:875.670000px;}
.y9c{bottom:876.030000px;}
.y8{bottom:877.200000px;}
.y17b{bottom:884.220000px;}
.y100{bottom:884.670000px;}
.y5e{bottom:889.260000px;}
.y118{bottom:889.440000px;}
.y36{bottom:893.220000px;}
.y9b{bottom:893.670000px;}
.y88{bottom:895.380000px;}
.y7{bottom:898.980000px;}
.yff{bottom:902.220000px;}
.y15a{bottom:905.820000px;}
.y5d{bottom:906.810000px;}
.y19d{bottom:910.410000px;}
.y35{bottom:910.860000px;}
.y9a{bottom:911.220000px;}
.y116{bottom:915.990000px;}
.y6{bottom:916.980000px;}
.yfe{bottom:919.860000px;}
.y87{bottom:922.740000px;}
.y159{bottom:924.270000px;}
.y5c{bottom:924.450000px;}
.y34{bottom:928.410000px;}
.y99{bottom:928.860000px;}
.y19c{bottom:936.960000px;}
.yfd{bottom:937.410000px;}
.y5b{bottom:942.000000px;}
.y158{bottom:942.720000px;}
.y33{bottom:945.960000px;}
.y98{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y86{bottom:950.100000px;}
.yfc{bottom:954.960000px;}
.y5a{bottom:959.550000px;}
.y157{bottom:960.270000px;}
.yd9{bottom:963.600000px;}
.y97{bottom:963.960000px;}
.yfb{bottom:972.600000px;}
.y156{bottom:978.720000px;}
.yd8{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y17a{bottom:990.150000px;}
.y59{bottom:995.190000px;}
.y155{bottom:996.270000px;}
.y85{bottom:998.790000px;}
.y31{bottom:999.150000px;}
.yd7{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y58{bottom:1012.770000px;}
.y30{bottom:1016.820000px;}
.y154{bottom:1023.750000px;}
.y57{bottom:1030.320000px;}
.y2f{bottom:1034.370000px;}
.y96{bottom:1034.820000px;}
.yd6{bottom:1043.370000px;}
.y56{bottom:1047.960000px;}
.y2e{bottom:1051.920000px;}
.y95{bottom:1052.370000px;}
.y153{bottom:1059.300000px;}
.yd5{bottom:1060.920000px;}
.y55{bottom:1065.510000px;}
.y2d{bottom:1069.560000px;}
.y84{bottom:1069.920000px;}
.y152{bottom:1076.850000px;}
.yd4{bottom:1078.560000px;}
.y54{bottom:1083.150000px;}
.y83{bottom:1087.560000px;}
.y151{bottom:1095.300000px;}
.yd3{bottom:1096.110000px;}
.y53{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y150{bottom:1112.850000px;}
.yd2{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y52{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h16{height:17.550000px;}
.hc{height:26.550000px;}
.h1a{height:26.580000px;}
.h13{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.221191px;}
.h10{height:44.100000px;}
.he{height:44.190000px;}
.h7{height:50.902383px;}
.h8{height:52.399512px;}
.h9{height:55.779258px;}
.h5{height:57.419824px;}
.h14{height:59.973223px;}
.ha{height:60.960938px;}
.hd{height:61.740000px;}
.hf{height:61.770000px;}
.h12{height:61.793886px;}
.h11{height:62.585859px;}
.hb{height:68.582109px;}
.h1b{height:70.664062px;}
.h4{height:73.108301px;}
.h18{height:135.900000px;}
.h19{height:136.020000px;}
.h17{height:238.530000px;}
.h15{height:240.780000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w11{width:60.300000px;}
.wf{width:60.330000px;}
.wd{width:69.030000px;}
.w10{width:84.780000px;}
.w12{width:84.810000px;}
.w9{width:96.960000px;}
.we{width:104.400000px;}
.w3{width:113.340000px;}
.w8{width:129.330000px;}
.w5{width:136.710000px;}
.w4{width:141.480000px;}
.w6{width:147.180000px;}
.w7{width:213.930000px;}
.wa{width:334.830000px;}
.wb{width:347.070000px;}
.wc{width:681.900000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.xc{left:7.740000px;}
.x1{left:68.040000px;}
.x9{left:95.039987px;}
.x11{left:105.660000px;}
.x20{left:111.239987px;}
.xa{left:122.039987px;}
.x14{left:123.510000px;}
.x15{left:128.910000px;}
.x5{left:182.820000px;}
.x2{left:209.819987px;}
.x10{left:275.969987px;}
.x1d{left:279.209987px;}
.x18{left:286.230000px;}
.x12{left:311.430000px;}
.x16{left:312.510000px;}
.x17{left:319.800000px;}
.xe{left:321.779987px;}
.x6{left:325.110000px;}
.xb{left:333.120000px;}
.x19{left:355.980000px;}
.x1e{left:373.710000px;}
.x1f{left:434.730000px;}
.x13{left:440.490000px;}
.x1a{left:461.190000px;}
.x7{left:462.540000px;}
.x1b{left:522.240000px;}
.x1c{left:601.889987px;}
.x8{left:610.530000px;}
.xd{left:777.389987px;}
.xf{left:788.639987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.165867pt;}
.lse{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls15{letter-spacing:-0.011840pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.177067pt;}
.ls10{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:42.423680pt;}
.ls13{letter-spacing:56.503680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws4{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.744960pt;}
.wsc{word-spacing:-11.700267pt;}
.ws8{word-spacing:-11.612800pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws9{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._2c{margin-left:-3.731199pt;}
._b{margin-left:-2.821120pt;}
._6{margin-left:-1.885440pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.124255pt;}
._7{width:2.832534pt;}
._5{width:3.847466pt;}
._4{width:5.290667pt;}
._8{width:6.197864pt;}
._c{width:7.107520pt;}
._f{width:8.069440pt;}
._2{width:9.538123pt;}
._1{width:10.649600pt;}
._a{width:12.772267pt;}
._9{width:13.680533pt;}
._14{width:14.642560pt;}
._2d{width:15.658027pt;}
._26{width:16.611200pt;}
._d{width:18.223040pt;}
._e{width:19.131520pt;}
._29{width:20.200320pt;}
._2e{width:21.240427pt;}
._2b{width:22.979200pt;}
._1b{width:24.635840pt;}
._2a{width:25.544320pt;}
._10{width:26.613120pt;}
._25{width:27.875307pt;}
._28{width:29.926400pt;}
._18{width:32.705280pt;}
._23{width:34.682560pt;}
._27{width:36.072000pt;}
._12{width:43.072640pt;}
._20{width:45.317120pt;}
._17{width:56.432640pt;}
._1c{width:57.768640pt;}
._11{width:58.730560pt;}
._13{width:60.333760pt;}
._19{width:62.015147pt;}
._1d{width:81.763200pt;}
._1a{width:83.419840pt;}
._1e{width:85.943680pt;}
._15{width:88.870720pt;}
._1f{width:125.477120pt;}
._16{width:156.365440pt;}
._21{width:162.511040pt;}
._24{width:167.480960pt;}
._22{width:224.287680pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:2.960000pt;}
.y11a{bottom:3.040000pt;}
.y113{bottom:4.000000pt;}
.y117{bottom:6.000000pt;}
.y41{bottom:6.960000pt;}
.y47{bottom:7.040000pt;}
.y112{bottom:10.000000pt;}
.y44{bottom:22.560000pt;}
.y46{bottom:22.640000pt;}
.y4a{bottom:22.666667pt;}
.y43{bottom:38.240000pt;}
.y49{bottom:38.266667pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y51{bottom:96.586667pt;}
.y122{bottom:104.160000pt;}
.y94{bottom:104.266667pt;}
.yd1{bottom:105.306667pt;}
.yfa{bottom:110.426667pt;}
.y82{bottom:111.626667pt;}
.y19b{bottom:118.826667pt;}
.y93{bottom:119.866667pt;}
.yd0{bottom:120.906667pt;}
.y14f{bottom:124.986667pt;}
.y27{bottom:125.146667pt;}
.yf9{bottom:126.026667pt;}
.y81{bottom:127.226667pt;}
.y131{bottom:130.506667pt;}
.y19a{bottom:134.506667pt;}
.y179{bottom:135.386667pt;}
.y92{bottom:135.546667pt;}
.y50{bottom:136.506667pt;}
.ycf{bottom:136.586667pt;}
.y14e{bottom:140.586667pt;}
.y26{bottom:140.746667pt;}
.yf8{bottom:141.706667pt;}
.y80{bottom:142.906667pt;}
.y178{bottom:150.986667pt;}
.yce{bottom:152.186667pt;}
.y135{bottom:154.826667pt;}
.y25{bottom:156.426667pt;}
.y14d{bottom:156.986667pt;}
.yf7{bottom:157.306667pt;}
.y199{bottom:158.106667pt;}
.y7f{bottom:166.506667pt;}
.y91{bottom:167.146667pt;}
.ycd{bottom:167.786667pt;}
.y24{bottom:172.026667pt;}
.y14c{bottom:172.586667pt;}
.yf6{bottom:172.906667pt;}
.y198{bottom:173.786667pt;}
.y177{bottom:174.906667pt;}
.y4f{bottom:176.506667pt;}
.y134{bottom:179.066667pt;}
.ycc{bottom:183.466667pt;}
.y23{bottom:187.706667pt;}
.y14b{bottom:188.986667pt;}
.y90{bottom:195.786667pt;}
.y197{bottom:197.386667pt;}
.y7e{bottom:198.186667pt;}
.y133{bottom:203.386667pt;}
.yf5{bottom:204.506667pt;}
.y14a{bottom:204.586667pt;}
.y196{bottom:212.986667pt;}
.y7d{bottom:213.786667pt;}
.ycb{bottom:215.066667pt;}
.y176{bottom:218.266667pt;}
.y22{bottom:219.306667pt;}
.y114{bottom:220.666667pt;}
.yf4{bottom:220.906667pt;}
.y149{bottom:220.986667pt;}
.y132{bottom:227.706667pt;}
.y7c{bottom:229.386667pt;}
.yca{bottom:230.746667pt;}
.y4e{bottom:232.026667pt;}
.y21{bottom:234.906667pt;}
.y111{bottom:236.266667pt;}
.y148{bottom:236.586667pt;}
.y195{bottom:236.666667pt;}
.yf3{bottom:237.226667pt;}
.y175{bottom:244.506667pt;}
.y7b{bottom:244.986667pt;}
.yc9{bottom:246.346667pt;}
.y20{bottom:250.586667pt;}
.y12c{bottom:252.026667pt;}
.y194{bottom:252.266667pt;}
.y147{bottom:252.986667pt;}
.yf2{bottom:253.626667pt;}
.y7a{bottom:261.386667pt;}
.yc8{bottom:262.746667pt;}
.y1f{bottom:266.186667pt;}
.y146{bottom:268.586667pt;}
.yf1{bottom:270.026667pt;}
.y4d{bottom:271.946667pt;}
.y193{bottom:275.946667pt;}
.y130{bottom:276.266667pt;}
.y79{bottom:277.066667pt;}
.y174{bottom:277.706667pt;}
.yc7{bottom:278.346667pt;}
.y1e{bottom:281.866667pt;}
.yf0{bottom:286.346667pt;}
.y192{bottom:291.546667pt;}
.y78{bottom:292.666667pt;}
.y145{bottom:292.986667pt;}
.yc6{bottom:293.946667pt;}
.y12f{bottom:300.586667pt;}
.y1d{bottom:305.786667pt;}
.y77{bottom:309.066667pt;}
.yc5{bottom:310.346667pt;}
.y191{bottom:315.146667pt;}
.yef{bottom:318.746667pt;}
.y173{bottom:320.666667pt;}
.y144{bottom:324.586667pt;}
.y76{bottom:324.666667pt;}
.y12e{bottom:324.906667pt;}
.yc4{bottom:326.746667pt;}
.y4c{bottom:327.546667pt;}
.y190{bottom:330.826667pt;}
.yee{bottom:334.426667pt;}
.y172{bottom:336.266667pt;}
.y75{bottom:340.266667pt;}
.yc3{bottom:342.346667pt;}
.y18f{bottom:346.426667pt;}
.y1c{bottom:348.986667pt;}
.y12d{bottom:349.226667pt;}
.yed{bottom:350.026667pt;}
.y171{bottom:351.866667pt;}
.y143{bottom:355.866667pt;}
.y74{bottom:356.666667pt;}
.y4b{bottom:367.466667pt;}
.y170{bottom:367.546667pt;}
.y18e{bottom:370.106667pt;}
.y142{bottom:371.546667pt;}
.y73{bottom:372.266667pt;}
.y127{bottom:373.466667pt;}
.yec{bottom:373.626667pt;}
.yc2{bottom:374.666667pt;}
.yb2{bottom:375.146667pt;}
.y1b{bottom:381.866667pt;}
.y16f{bottom:383.146667pt;}
.y18d{bottom:385.706667pt;}
.y141{bottom:387.146667pt;}
.y72{bottom:387.866667pt;}
.yc1{bottom:390.346667pt;}
.yb1{bottom:390.746667pt;}
.y1a{bottom:397.466667pt;}
.y12b{bottom:397.786667pt;}
.y140{bottom:402.746667pt;}
.y71{bottom:404.266667pt;}
.yeb{bottom:405.226667pt;}
.yc0{bottom:405.946667pt;}
.yb0{bottom:406.426667pt;}
.y48{bottom:407.386667pt;}
.y18c{bottom:409.306667pt;}
.y19{bottom:413.146667pt;}
.y16e{bottom:414.746667pt;}
.y13f{bottom:418.453333pt;}
.y70{bottom:419.973333pt;}
.ybf{bottom:421.653333pt;}
.y12a{bottom:422.133333pt;}
.y18b{bottom:425.013333pt;}
.y18{bottom:428.773333pt;}
.y16d{bottom:430.453333pt;}
.y6f{bottom:435.573333pt;}
.ybe{bottom:437.253333pt;}
.yaf{bottom:438.053333pt;}
.y17{bottom:444.373333pt;}
.y16c{bottom:446.053333pt;}
.y129{bottom:446.373333pt;}
.y13e{bottom:447.733333pt;}
.y18a{bottom:448.613333pt;}
.y6e{bottom:451.973333pt;}
.ybd{bottom:452.853333pt;}
.yae{bottom:453.653333pt;}
.yea{bottom:454.373333pt;}
.y16{bottom:460.053333pt;}
.y16b{bottom:461.733333pt;}
.y45{bottom:462.933333pt;}
.y189{bottom:464.293333pt;}
.y6d{bottom:467.573333pt;}
.y110{bottom:469.333333pt;}
.yad{bottom:470.053333pt;}
.y128{bottom:470.693333pt;}
.ye9{bottom:470.773333pt;}
.y13d{bottom:472.053333pt;}
.y15{bottom:475.653333pt;}
.ybc{bottom:476.533333pt;}
.y16a{bottom:477.333333pt;}
.y188{bottom:479.893333pt;}
.y6c{bottom:483.173333pt;}
.y10f{bottom:484.933333pt;}
.yac{bottom:486.453333pt;}
.y14{bottom:491.333333pt;}
.y169{bottom:492.933333pt;}
.y121{bottom:495.013333pt;}
.y13c{bottom:496.373333pt;}
.y10e{bottom:500.613333pt;}
.yab{bottom:502.053333pt;}
.y42{bottom:502.933333pt;}
.ye8{bottom:503.173333pt;}
.y187{bottom:503.493333pt;}
.ybb{bottom:508.133333pt;}
.y6b{bottom:515.573333pt;}
.yaa{bottom:518.373333pt;}
.ye7{bottom:518.773333pt;}
.y186{bottom:519.173333pt;}
.y126{bottom:519.333333pt;}
.y13b{bottom:520.613333pt;}
.y13{bottom:522.933333pt;}
.yba{bottom:523.813333pt;}
.y168{bottom:524.613333pt;}
.y6a{bottom:531.253333pt;}
.y10d{bottom:532.213333pt;}
.ye6{bottom:534.453333pt;}
.ya9{bottom:534.773333pt;}
.y12{bottom:538.533333pt;}
.yb9{bottom:539.413333pt;}
.y167{bottom:540.213333pt;}
.y185{bottom:542.773333pt;}
.y125{bottom:543.573333pt;}
.y13a{bottom:544.933333pt;}
.y10c{bottom:547.813333pt;}
.y11{bottom:554.213333pt;}
.y69{bottom:554.853333pt;}
.yb8{bottom:555.013333pt;}
.y166{bottom:555.893333pt;}
.ye5{bottom:558.053333pt;}
.y40{bottom:558.453333pt;}
.y10b{bottom:563.493333pt;}
.ya8{bottom:567.173333pt;}
.y124{bottom:567.893333pt;}
.y139{bottom:569.253333pt;}
.y10{bottom:569.813333pt;}
.y165{bottom:571.493333pt;}
.y10a{bottom:579.093333pt;}
.y184{bottom:582.053333pt;}
.ya7{bottom:582.773333pt;}
.yf{bottom:585.493333pt;}
.y68{bottom:586.453333pt;}
.yb7{bottom:586.693333pt;}
.y164{bottom:587.093333pt;}
.ye4{bottom:589.653333pt;}
.y123{bottom:592.213333pt;}
.y109{bottom:594.773333pt;}
.y183{bottom:597.653333pt;}
.ya6{bottom:598.453333pt;}
.ye{bottom:601.093333pt;}
.y3f{bottom:601.733333pt;}
.y67{bottom:602.133333pt;}
.yb6{bottom:602.293333pt;}
.y163{bottom:602.773333pt;}
.ye3{bottom:605.333333pt;}
.y108{bottom:610.373333pt;}
.y138{bottom:612.533333pt;}
.y182{bottom:613.333333pt;}
.ya5{bottom:614.053333pt;}
.y120{bottom:616.533333pt;}
.y66{bottom:617.733333pt;}
.yb5{bottom:617.973333pt;}
.y8f{bottom:620.773333pt;}
.ye2{bottom:620.933333pt;}
.yd{bottom:625.013333pt;}
.y162{bottom:626.693333pt;}
.ya4{bottom:629.653333pt;}
.y3e{bottom:633.413333pt;}
.ye1{bottom:636.613333pt;}
.y181{bottom:636.933333pt;}
.y107{bottom:641.973333pt;}
.y137{bottom:644.133333pt;}
.ya3{bottom:645.333333pt;}
.y3d{bottom:649.013333pt;}
.yb4{bottom:649.573333pt;}
.y8e{bottom:650.133333pt;}
.y180{bottom:652.613333pt;}
.y106{bottom:658.373333pt;}
.y11f{bottom:659.813333pt;}
.ye0{bottom:660.213333pt;}
.ya2{bottom:660.933333pt;}
.y3c{bottom:664.613333pt;}
.y65{bottom:665.013333pt;}
.yc{bottom:667.893333pt;}
.y161{bottom:669.573333pt;}
.y8d{bottom:674.373333pt;}
.y105{bottom:674.693333pt;}
.y17f{bottom:676.213333pt;}
.ya1{bottom:676.613333pt;}
.yb3{bottom:678.213333pt;}
.y3b{bottom:680.293333pt;}
.y64{bottom:680.613333pt;}
.y160{bottom:685.173333pt;}
.y104{bottom:691.093333pt;}
.y11e{bottom:691.413333pt;}
.ydf{bottom:691.813333pt;}
.ya0{bottom:692.213333pt;}
.y3a{bottom:695.893333pt;}
.y63{bottom:696.293333pt;}
.y8c{bottom:698.693333pt;}
.yb{bottom:699.733333pt;}
.y15f{bottom:701.573333pt;}
.y11d{bottom:707.013333pt;}
.yde{bottom:707.493333pt;}
.y9f{bottom:707.813333pt;}
.y39{bottom:711.573333pt;}
.y62{bottom:711.893333pt;}
.y15e{bottom:717.173333pt;}
.y136{bottom:720.053333pt;}
.y11c{bottom:722.693333pt;}
.y8b{bottom:723.013333pt;}
.ydd{bottom:723.093333pt;}
.y103{bottom:723.493333pt;}
.y61{bottom:727.573333pt;}
.y17e{bottom:731.093333pt;}
.y9e{bottom:731.493333pt;}
.ya{bottom:731.733333pt;}
.y15d{bottom:733.573333pt;}
.y38{bottom:735.413333pt;}
.y11b{bottom:738.293333pt;}
.ydc{bottom:738.693333pt;}
.y102{bottom:739.093333pt;}
.y17d{bottom:746.693333pt;}
.y8a{bottom:747.333333pt;}
.y15c{bottom:749.173333pt;}
.ydb{bottom:754.373333pt;}
.y60{bottom:759.173333pt;}
.y9d{bottom:763.093333pt;}
.y119{bottom:766.933333pt;}
.y9{bottom:767.093333pt;}
.y17c{bottom:770.373333pt;}
.y101{bottom:770.693333pt;}
.y89{bottom:771.573333pt;}
.y15b{bottom:773.573333pt;}
.y5f{bottom:774.773333pt;}
.yda{bottom:777.973333pt;}
.y37{bottom:778.373333pt;}
.y9c{bottom:778.693333pt;}
.y8{bottom:779.733333pt;}
.y17b{bottom:785.973333pt;}
.y100{bottom:786.373333pt;}
.y5e{bottom:790.453333pt;}
.y118{bottom:790.613333pt;}
.y36{bottom:793.973333pt;}
.y9b{bottom:794.373333pt;}
.y88{bottom:795.893333pt;}
.y7{bottom:799.093333pt;}
.yff{bottom:801.973333pt;}
.y15a{bottom:805.173333pt;}
.y5d{bottom:806.053333pt;}
.y19d{bottom:809.253333pt;}
.y35{bottom:809.653333pt;}
.y9a{bottom:809.973333pt;}
.y116{bottom:814.213333pt;}
.y6{bottom:815.093333pt;}
.yfe{bottom:817.653333pt;}
.y87{bottom:820.213333pt;}
.y159{bottom:821.573333pt;}
.y5c{bottom:821.733333pt;}
.y34{bottom:825.253333pt;}
.y99{bottom:825.653333pt;}
.y19c{bottom:832.853333pt;}
.yfd{bottom:833.253333pt;}
.y5b{bottom:837.333333pt;}
.y158{bottom:837.973333pt;}
.y33{bottom:840.853333pt;}
.y98{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y86{bottom:844.533333pt;}
.yfc{bottom:848.853333pt;}
.y5a{bottom:852.933333pt;}
.y157{bottom:853.573333pt;}
.yd9{bottom:856.533333pt;}
.y97{bottom:856.853333pt;}
.yfb{bottom:864.533333pt;}
.y156{bottom:869.973333pt;}
.yd8{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y17a{bottom:880.133333pt;}
.y59{bottom:884.613333pt;}
.y155{bottom:885.573333pt;}
.y85{bottom:887.813333pt;}
.y31{bottom:888.133333pt;}
.yd7{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y58{bottom:900.240000pt;}
.y30{bottom:903.840000pt;}
.y154{bottom:910.000000pt;}
.y57{bottom:915.840000pt;}
.y2f{bottom:919.440000pt;}
.y96{bottom:919.840000pt;}
.yd6{bottom:927.440000pt;}
.y56{bottom:931.520000pt;}
.y2e{bottom:935.040000pt;}
.y95{bottom:935.440000pt;}
.y153{bottom:941.600000pt;}
.yd5{bottom:943.040000pt;}
.y55{bottom:947.120000pt;}
.y2d{bottom:950.720000pt;}
.y84{bottom:951.040000pt;}
.y152{bottom:957.200000pt;}
.yd4{bottom:958.720000pt;}
.y54{bottom:962.800000pt;}
.y83{bottom:966.720000pt;}
.y151{bottom:973.600000pt;}
.yd3{bottom:974.320000pt;}
.y53{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y150{bottom:989.200000pt;}
.yd2{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y52{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h16{height:15.600000pt;}
.hc{height:23.600000pt;}
.h1a{height:23.626667pt;}
.h13{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.863281pt;}
.h10{height:39.200000pt;}
.he{height:39.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.577344pt;}
.h9{height:49.581562pt;}
.h5{height:51.039844pt;}
.h14{height:53.309531pt;}
.ha{height:54.187500pt;}
.hd{height:54.880000pt;}
.hf{height:54.906667pt;}
.h12{height:54.927899pt;}
.h11{height:55.631875pt;}
.hb{height:60.961875pt;}
.h1b{height:62.812500pt;}
.h4{height:64.985156pt;}
.h18{height:120.800000pt;}
.h19{height:120.906667pt;}
.h17{height:212.026667pt;}
.h15{height:214.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w11{width:53.600000pt;}
.wf{width:53.626667pt;}
.wd{width:61.360000pt;}
.w10{width:75.360000pt;}
.w12{width:75.386667pt;}
.w9{width:86.186667pt;}
.we{width:92.800000pt;}
.w3{width:100.746667pt;}
.w8{width:114.960000pt;}
.w5{width:121.520000pt;}
.w4{width:125.760000pt;}
.w6{width:130.826667pt;}
.w7{width:190.160000pt;}
.wa{width:297.626667pt;}
.wb{width:308.506667pt;}
.wc{width:606.133333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.xc{left:6.880000pt;}
.x1{left:60.480000pt;}
.x9{left:84.479988pt;}
.x11{left:93.920000pt;}
.x20{left:98.879988pt;}
.xa{left:108.479988pt;}
.x14{left:109.786667pt;}
.x15{left:114.586667pt;}
.x5{left:162.506667pt;}
.x2{left:186.506655pt;}
.x10{left:245.306655pt;}
.x1d{left:248.186655pt;}
.x18{left:254.426667pt;}
.x12{left:276.826667pt;}
.x16{left:277.786667pt;}
.x17{left:284.266667pt;}
.xe{left:286.026655pt;}
.x6{left:288.986667pt;}
.xb{left:296.106667pt;}
.x19{left:316.426667pt;}
.x1e{left:332.186667pt;}
.x1f{left:386.426667pt;}
.x13{left:391.546667pt;}
.x1a{left:409.946667pt;}
.x7{left:411.146667pt;}
.x1b{left:464.213333pt;}
.x1c{left:535.013322pt;}
.x8{left:542.693333pt;}
.xd{left:691.013322pt;}
.xf{left:701.013322pt;}
.x3{left:711.413322pt;}
}




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