
    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_75f4018d1238aadfc8b6b0f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.139160;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_042e9996ce05af4ac0699214.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.145508;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_c447dcc6ecac26ae6fc0c3fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.145508;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_591ceacee2ad43632c0d68cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.168945;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_50e7ca9dbc639cd2edf72e33.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.753906;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_70c47dce92ec4e00a9e08ee4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0b9d9f20a4f8104196d24163.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999023;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_9b9f90b68b27f494d0c834d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.694336;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_af7e0cdbc9b738340d4343c6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.144043;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);}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.870000px;}
.ls1a{letter-spacing:-0.256200px;}
.lsd{letter-spacing:-0.241800px;}
.ls1f{letter-spacing:-0.224400px;}
.lsb{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.181200px;}
.ls19{letter-spacing:-0.175800px;}
.ls11{letter-spacing:-0.166800px;}
.ls12{letter-spacing:-0.158400px;}
.ls20{letter-spacing:-0.150000px;}
.lsa{letter-spacing:-0.106800px;}
.ls1e{letter-spacing:-0.100800px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.132480px;}
.lse{letter-spacing:0.169800px;}
.lsc{letter-spacing:0.169920px;}
.ls8{letter-spacing:0.221760px;}
.ls0{letter-spacing:0.306000px;}
.ls17{letter-spacing:0.342000px;}
.ls10{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.532800px;}
.ls22{letter-spacing:0.888000px;}
.ls23{letter-spacing:1.661760px;}
.ls2{letter-spacing:2.592000px;}
.ls1{letter-spacing:3.024000px;}
.ls6{letter-spacing:3.039120px;}
.ls4{letter-spacing:3.168000px;}
.ls3{letter-spacing:3.198240px;}
.ls5{letter-spacing:3.312000px;}
.lsf{letter-spacing:3.821760px;}
.ls15{letter-spacing:6.066000px;}
.ls14{letter-spacing:9.666000px;}
.ls24{letter-spacing:18.221760px;}
.ls16{letter-spacing:19.026000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-34.241760px;}
.ws9{word-spacing:-20.108040px;}
.ws3{word-spacing:-19.938240px;}
.wsd{word-spacing:-19.837440px;}
.wse{word-spacing:-19.788240px;}
.ws7{word-spacing:-19.779840px;}
.wsc{word-spacing:-19.762440px;}
.wsa{word-spacing:-19.757040px;}
.wsb{word-spacing:-19.722240px;}
.ws10{word-spacing:-19.713840px;}
.ws6{word-spacing:-19.696440px;}
.wsf{word-spacing:-19.068240px;}
.ws5{word-spacing:-16.506480px;}
.ws2{word-spacing:-16.290000px;}
.ws1{word-spacing:-16.254000px;}
.ws8{word-spacing:-16.038000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.440000px;}
._1{width:1.008000px;}
._2{width:2.808000px;}
._3{width:3.996000px;}
._4{width:5.616000px;}
._5{width:6.852000px;}
._d{width:8.670000px;}
._c{width:10.044000px;}
._e{width:11.244000px;}
._7{width:12.636000px;}
._6{width:14.346000px;}
._15{width:15.897600px;}
._10{width:17.442000px;}
._f{width:18.558000px;}
._11{width:20.386080px;}
._12{width:21.543840px;}
._1e{width:23.034240px;}
._17{width:24.955200px;}
._16{width:26.164800px;}
._a{width:27.864000px;}
._b{width:29.034000px;}
._21{width:30.036960px;}
._18{width:31.711680px;}
._19{width:32.875200px;}
._1f{width:34.113600px;}
._8{width:35.802000px;}
._24{width:37.872000px;}
._13{width:39.677760px;}
._14{width:41.117760px;}
._22{width:42.989760px;}
._25{width:50.872320px;}
._26{width:52.548000px;}
._20{width:55.962000px;}
._23{width:57.332640px;}
._1a{width:59.019840px;}
._1b{width:60.261120px;}
._9{width:62.587440px;}
._1d{width:92.746560px;}
._1c{width:192.437760px;}
.fc6{color:transparent;}
.fc4{color:rgb(179,44,22);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(65,71,81);}
.fs0{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:113.760000px;}
.fs4{font-size:144.000000px;}
.y2d{bottom:-28.620000px;}
.y2c{bottom:-8.640000px;}
.y0{bottom:0.000000px;}
.yba{bottom:3.780000px;}
.yf6{bottom:6.120000px;}
.y103{bottom:6.300000px;}
.yeb{bottom:6.840000px;}
.y105{bottom:7.410000px;}
.yfd{bottom:7.560000px;}
.y115{bottom:8.640000px;}
.yc2{bottom:9.720000px;}
.yfa{bottom:10.260000px;}
.y26{bottom:18.000000px;}
.ybb{bottom:18.720000px;}
.yb9{bottom:19.440000px;}
.ybc{bottom:19.620000px;}
.y21{bottom:19.980000px;}
.y100{bottom:24.120000px;}
.y113{bottom:24.165000px;}
.y102{bottom:24.300000px;}
.yf5{bottom:24.345000px;}
.yfc{bottom:25.560000px;}
.y2b{bottom:27.000000px;}
.yf9{bottom:28.260000px;}
.y25{bottom:37.665000px;}
.y110{bottom:42.120000px;}
.yff{bottom:42.300000px;}
.yf8{bottom:46.260000px;}
.y2a{bottom:49.545000px;}
.y24{bottom:55.665000px;}
.y31{bottom:56.160000px;}
.y2{bottom:56.700000px;}
.y10f{bottom:60.120000px;}
.y20{bottom:65.730000px;}
.y1{bottom:72.360000px;}
.y29{bottom:73.125000px;}
.y30{bottom:74.340000px;}
.ybe{bottom:74.520000px;}
.y23{bottom:75.465000px;}
.y28{bottom:95.085000px;}
.y1f{bottom:113.790000px;}
.yc0{bottom:117.765000px;}
.y16f{bottom:132.840000px;}
.yb6{bottom:134.640000px;}
.y146{bottom:138.420000px;}
.ye7{bottom:138.600000px;}
.y11d{bottom:142.380000px;}
.y1c{bottom:144.720000px;}
.y85{bottom:149.220000px;}
.yf3{bottom:152.310000px;}
.y10e{bottom:152.685000px;}
.y5f{bottom:153.000000px;}
.y1ab{bottom:154.440000px;}
.y16e{bottom:154.980000px;}
.y187{bottom:157.140000px;}
.ye6{bottom:160.560000px;}
.y1e{bottom:161.850000px;}
.y1b{bottom:162.720000px;}
.y11c{bottom:164.340000px;}
.y145{bottom:169.020000px;}
.yf2{bottom:170.310000px;}
.y10d{bottom:170.865000px;}
.y84{bottom:171.360000px;}
.yb5{bottom:171.540000px;}
.y5e{bottom:174.960000px;}
.y1aa{bottom:176.400000px;}
.y16d{bottom:176.940000px;}
.y13d{bottom:178.380000px;}
.y1a{bottom:180.720000px;}
.ye5{bottom:182.700000px;}
.y191{bottom:184.140000px;}
.yf1{bottom:188.310000px;}
.y10c{bottom:188.865000px;}
.y83{bottom:193.320000px;}
.y186{bottom:194.220000px;}
.y5d{bottom:196.920000px;}
.y1a9{bottom:198.540000px;}
.y19{bottom:198.900000px;}
.y1c7{bottom:199.440000px;}
.y144{bottom:199.800000px;}
.y13c{bottom:200.340000px;}
.y11b{bottom:201.420000px;}
.ye4{bottom:204.660000px;}
.y190{bottom:206.100000px;}
.yf0{bottom:206.310000px;}
.y1bd{bottom:206.460000px;}
.y10b{bottom:206.865000px;}
.y12e{bottom:207.360000px;}
.yb4{bottom:208.620000px;}
.y82{bottom:215.280000px;}
.y185{bottom:216.360000px;}
.y18{bottom:216.900000px;}
.y5c{bottom:219.060000px;}
.y16c{bottom:221.040000px;}
.y1c6{bottom:221.400000px;}
.y13b{bottom:222.300000px;}
.y11a{bottom:223.380000px;}
.yef{bottom:224.310000px;}
.y10a{bottom:224.865000px;}
.ye3{bottom:226.620000px;}
.y1bc{bottom:228.420000px;}
.y12d{bottom:229.500000px;}
.y143{bottom:230.400000px;}
.y17{bottom:234.900000px;}
.y1a8{bottom:235.440000px;}
.y81{bottom:237.420000px;}
.y184{bottom:238.320000px;}
.y5b{bottom:241.020000px;}
.yee{bottom:242.310000px;}
.y109{bottom:242.865000px;}
.y16b{bottom:243.000000px;}
.y18f{bottom:243.180000px;}
.y1c5{bottom:243.540000px;}
.y119{bottom:245.520000px;}
.yb3{bottom:245.700000px;}
.ye2{bottom:248.790000px;}
.y1bb{bottom:250.590000px;}
.y12c{bottom:251.490000px;}
.y16{bottom:252.930000px;}
.y1a7{bottom:257.610000px;}
.y97{bottom:259.410000px;}
.y183{bottom:260.310000px;}
.yed{bottom:260.535000px;}
.y108{bottom:260.865000px;}
.y142{bottom:261.030000px;}
.y16a{bottom:265.170000px;}
.y1c4{bottom:265.530000px;}
.y118{bottom:267.510000px;}
.yb2{bottom:267.690000px;}
.ye1{bottom:270.750000px;}
.y15{bottom:270.930000px;}
.y12b{bottom:273.450000px;}
.y80{bottom:274.530000px;}
.y5a{bottom:278.130000px;}
.y107{bottom:278.865000px;}
.y13a{bottom:281.550000px;}
.y182{bottom:282.450000px;}
.y169{bottom:287.130000px;}
.y18e{bottom:287.310000px;}
.y1ba{bottom:287.490000px;}
.y14{bottom:288.930000px;}
.yb1{bottom:289.830000px;}
.y141{bottom:291.810000px;}
.ye0{bottom:292.890000px;}
.y1a6{bottom:294.690000px;}
.y12a{bottom:295.590000px;}
.y7f{bottom:296.490000px;}
.y59{bottom:300.090000px;}
.y1d8{bottom:301.710000px;}
.y1c3{bottom:302.610000px;}
.y139{bottom:303.510000px;}
.y181{bottom:304.410000px;}
.y13{bottom:306.930000px;}
.y168{bottom:309.090000px;}
.y1b9{bottom:309.630000px;}
.y117{bottom:311.250000px;}
.yb0{bottom:311.790000px;}
.ydf{bottom:314.850000px;}
.y1a5{bottom:316.650000px;}
.y7e{bottom:318.450000px;}
.y58{bottom:322.230000px;}
.y140{bottom:322.410000px;}
.y1d7{bottom:323.670000px;}
.y18d{bottom:324.210000px;}
.y1c2{bottom:324.570000px;}
.y12{bottom:325.110000px;}
.y138{bottom:325.470000px;}
.y180{bottom:326.550000px;}
.y167{bottom:331.230000px;}
.y1b8{bottom:331.590000px;}
.y129{bottom:332.490000px;}
.yaf{bottom:333.750000px;}
.yde{bottom:336.810000px;}
.y1a4{bottom:338.610000px;}
.y7d{bottom:340.590000px;}
.y11{bottom:343.110000px;}
.y57{bottom:344.190000px;}
.y1d6{bottom:345.630000px;}
.y18c{bottom:346.350000px;}
.y1c1{bottom:346.710000px;}
.y137{bottom:347.610000px;}
.y17f{bottom:348.510000px;}
.y13f{bottom:352.290000px;}
.y166{bottom:353.190000px;}
.y128{bottom:354.630000px;}
.y116{bottom:354.990000px;}
.yae{bottom:355.890000px;}
.ydd{bottom:358.950000px;}
.y10{bottom:361.830000px;}
.y7c{bottom:362.550000px;}
.y1d5{bottom:367.770000px;}
.y1b7{bottom:368.670000px;}
.y136{bottom:369.570000px;}
.y17e{bottom:370.470000px;}
.y106{bottom:371.190000px;}
.y165{bottom:375.330000px;}
.y1a3{bottom:375.690000px;}
.y127{bottom:376.590000px;}
.yad{bottom:377.850000px;}
.ydc{bottom:380.910000px;}
.y7b{bottom:384.690000px;}
.y56{bottom:387.930000px;}
.y1d4{bottom:389.730000px;}
.y1b6{bottom:390.630000px;}
.y135{bottom:391.710000px;}
.y17d{bottom:392.610000px;}
.yf{bottom:396.930000px;}
.y164{bottom:397.290000px;}
.y126{bottom:398.730000px;}
.yac{bottom:399.990000px;}
.ydb{bottom:403.050000px;}
.y1c0{bottom:405.750000px;}
.y7a{bottom:406.650000px;}
.y114{bottom:407.190000px;}
.y1a2{bottom:412.770000px;}
.y134{bottom:413.670000px;}
.y17c{bottom:414.570000px;}
.y163{bottom:419.250000px;}
.y18b{bottom:421.590000px;}
.yab{bottom:421.950000px;}
.y55{bottom:424.470000px;}
.yda{bottom:425.010000px;}
.y27{bottom:426.090000px;}
.y1d3{bottom:426.810000px;}
.ye{bottom:427.710000px;}
.y79{bottom:428.610000px;}
.y1a1{bottom:434.730000px;}
.y125{bottom:435.630000px;}
.y17b{bottom:436.710000px;}
.y162{bottom:441.390000px;}
.y91{bottom:443.730000px;}
.yaa{bottom:443.910000px;}
.yd9{bottom:446.970000px;}
.y1d2{bottom:448.770000px;}
.y1b5{bottom:449.850000px;}
.y78{bottom:450.750000px;}
.y54{bottom:452.730000px;}
.y124{bottom:457.770000px;}
.y17a{bottom:458.670000px;}
.y161{bottom:463.350000px;}
.y112{bottom:463.710000px;}
.y90{bottom:465.690000px;}
.ya9{bottom:466.050000px;}
.yd8{bottom:469.110000px;}
.y53{bottom:471.450000px;}
.y1a0{bottom:471.810000px;}
.y96{bottom:472.755000px;}
.y123{bottom:479.775000px;}
.y179{bottom:480.675000px;}
.y160{bottom:485.535000px;}
.y1d1{bottom:485.895000px;}
.y77{bottom:487.695000px;}
.ya8{bottom:488.055000px;}
.yd7{bottom:491.115000px;}
.y19f{bottom:493.815000px;}
.y95{bottom:494.895000px;}
.y52{bottom:499.755000px;}
.y122{bottom:501.915000px;}
.y18a{bottom:502.815000px;}
.y15f{bottom:507.495000px;}
.y1d0{bottom:507.855000px;}
.y1bf{bottom:508.935000px;}
.y76{bottom:509.835000px;}
.ya7{bottom:510.195000px;}
.y19e{bottom:515.955000px;}
.y94{bottom:516.855000px;}
.y51{bottom:517.755000px;}
.y121{bottom:523.875000px;}
.y189{bottom:524.775000px;}
.yd6{bottom:528.195000px;}
.y1b4{bottom:530.895000px;}
.y75{bottom:531.795000px;}
.ya6{bottom:532.155000px;}
.y111{bottom:535.755000px;}
.y50{bottom:535.935000px;}
.y133{bottom:538.815000px;}
.y178{bottom:539.895000px;}
.y15e{bottom:544.575000px;}
.y1cf{bottom:544.935000px;}
.yd5{bottom:550.155000px;}
.y19d{bottom:552.855000px;}
.y4f{bottom:553.935000px;}
.ya5{bottom:554.115000px;}
.y120{bottom:560.955000px;}
.y177{bottom:561.855000px;}
.y15d{bottom:566.535000px;}
.y1ce{bottom:567.075000px;}
.y4e{bottom:571.935000px;}
.yd4{bottom:572.295000px;}
.y19c{bottom:574.995000px;}
.y8f{bottom:575.895000px;}
.y11f{bottom:582.915000px;}
.y176{bottom:583.815000px;}
.y15c{bottom:588.675000px;}
.y1cd{bottom:589.035000px;}
.y4d{bottom:589.935000px;}
.y74{bottom:590.835000px;}
.ya4{bottom:591.195000px;}
.yd3{bottom:594.255000px;}
.y8e{bottom:597.855000px;}
.y175{bottom:605.955000px;}
.y4c{bottom:607.935000px;}
.y15b{bottom:610.635000px;}
.y19b{bottom:612.075000px;}
.y73{bottom:612.975000px;}
.ya3{bottom:613.335000px;}
.yd2{bottom:616.395000px;}
.y8d{bottom:619.995000px;}
.y4b{bottom:625.935000px;}
.y1cc{bottom:626.115000px;}
.y174{bottom:627.915000px;}
.y15a{bottom:632.595000px;}
.y19a{bottom:634.035000px;}
.y72{bottom:634.935000px;}
.ya2{bottom:635.295000px;}
.yd1{bottom:638.355000px;}
.y1d{bottom:639.075000px;}
.y8c{bottom:641.955000px;}
.y4a{bottom:644.115000px;}
.y1cb{bottom:648.075000px;}
.y1be{bottom:648.975000px;}
.y173{bottom:650.055000px;}
.yd{bottom:650.235000px;}
.y159{bottom:654.735000px;}
.y1b3{bottom:655.995000px;}
.y71{bottom:657.075000px;}
.ya1{bottom:657.255000px;}
.yd0{bottom:660.315000px;}
.y49{bottom:662.115000px;}
.y8b{bottom:664.095000px;}
.yec{bottom:668.055000px;}
.y199{bottom:671.115000px;}
.y172{bottom:672.015000px;}
.yc{bottom:674.175000px;}
.y158{bottom:676.695000px;}
.y70{bottom:679.035000px;}
.ya0{bottom:679.395000px;}
.y48{bottom:680.115000px;}
.ycf{bottom:682.455000px;}
.y1ca{bottom:685.155000px;}
.y8a{bottom:686.055000px;}
.y104{bottom:691.635000px;}
.y198{bottom:693.075000px;}
.y171{bottom:693.975000px;}
.y47{bottom:698.115000px;}
.y157{bottom:698.865000px;}
.y6f{bottom:701.025000px;}
.yce{bottom:704.445000px;}
.yb{bottom:712.185000px;}
.y101{bottom:712.365000px;}
.y197{bottom:715.245000px;}
.y46{bottom:716.145000px;}
.y9f{bottom:716.505000px;}
.y156{bottom:720.825000px;}
.y1c9{bottom:722.265000px;}
.y89{bottom:723.165000px;}
.ycd{bottom:726.585000px;}
.y45{bottom:734.145000px;}
.y1b2{bottom:737.205000px;}
.y6e{bottom:738.105000px;}
.y9e{bottom:738.465000px;}
.y155{bottom:742.785000px;}
.y88{bottom:745.125000px;}
.ya{bottom:747.105000px;}
.ycc{bottom:748.545000px;}
.yfe{bottom:749.985000px;}
.y44{bottom:752.145000px;}
.y1b1{bottom:759.165000px;}
.y6d{bottom:760.245000px;}
.y9d{bottom:760.425000px;}
.y154{bottom:764.925000px;}
.y87{bottom:767.265000px;}
.y43{bottom:770.325000px;}
.ycb{bottom:770.505000px;}
.y196{bottom:774.285000px;}
.y1b0{bottom:781.305000px;}
.y9{bottom:782.205000px;}
.y9c{bottom:782.565000px;}
.y153{bottom:786.885000px;}
.y42{bottom:788.325000px;}
.y86{bottom:789.225000px;}
.y195{bottom:796.245000px;}
.y6c{bottom:804.165000px;}
.y9b{bottom:804.525000px;}
.yfb{bottom:805.605000px;}
.y41{bottom:806.325000px;}
.yca{bottom:807.585000px;}
.y152{bottom:809.025000px;}
.y132{bottom:811.185000px;}
.y8{bottom:817.305000px;}
.y194{bottom:818.205000px;}
.yc6{bottom:823.605000px;}
.y40{bottom:824.325000px;}
.y6b{bottom:826.305000px;}
.y151{bottom:830.985000px;}
.y9a{bottom:833.325000px;}
.y1af{bottom:840.345000px;}
.yf7{bottom:844.665000px;}
.yc9{bottom:845.205000px;}
.y6a{bottom:848.265000px;}
.y3f{bottom:848.985000px;}
.y7{bottom:852.225000px;}
.y150{bottom:852.945000px;}
.y131{bottom:855.285000px;}
.y170{bottom:863.205000px;}
.yc8{bottom:866.805000px;}
.y69{bottom:870.405000px;}
.y14f{bottom:875.085000px;}
.y193{bottom:877.425000px;}
.y3e{bottom:878.325000px;}
.y13e{bottom:885.345000px;}
.y6{bottom:887.325000px;}
.yc7{bottom:888.405000px;}
.y68{bottom:892.365000px;}
.y22{bottom:896.145000px;}
.y14e{bottom:897.045000px;}
.y1ae{bottom:899.385000px;}
.yf4{bottom:904.245000px;}
.y99{bottom:907.305000px;}
.ybf{bottom:910.005000px;}
.y3d{bottom:910.365000px;}
.y130{bottom:914.325000px;}
.y14d{bottom:919.185000px;}
.y1c8{bottom:921.345000px;}
.y5{bottom:921.525000px;}
.y3c{bottom:929.490000px;}
.yc5{bottom:931.650000px;}
.y12f{bottom:936.510000px;}
.y14c{bottom:941.190000px;}
.yea{bottom:946.410000px;}
.y67{bottom:951.450000px;}
.ybd{bottom:953.250000px;}
.y4{bottom:955.950000px;}
.y192{bottom:958.470000px;}
.y3b{bottom:961.170000px;}
.y14b{bottom:963.150000px;}
.y66{bottom:973.590000px;}
.yc4{bottom:974.850000px;}
.y3a{bottom:979.170000px;}
.ye9{bottom:980.250000px;}
.y1ad{bottom:980.610000px;}
.y14a{bottom:985.290000px;}
.y3{bottom:988.350000px;}
.y65{bottom:995.550000px;}
.yc3{bottom:996.450000px;}
.y39{bottom:997.170000px;}
.ye8{bottom:998.250000px;}
.y1ac{bottom:1002.570000px;}
.y149{bottom:1007.250000px;}
.y11e{bottom:1010.490000px;}
.y38{bottom:1015.170000px;}
.y64{bottom:1017.510000px;}
.yc1{bottom:1018.050000px;}
.y148{bottom:1029.390000px;}
.y93{bottom:1032.630000px;}
.y37{bottom:1033.350000px;}
.y63{bottom:1039.650000px;}
.y36{bottom:1051.350000px;}
.y92{bottom:1054.590000px;}
.y98{bottom:1061.610000px;}
.y35{bottom:1069.350000px;}
.yb8{bottom:1072.590000px;}
.y147{bottom:1073.310000px;}
.y62{bottom:1076.550000px;}
.y188{bottom:1083.750000px;}
.y34{bottom:1087.350000px;}
.y61{bottom:1098.690000px;}
.y33{bottom:1105.350000px;}
.yb7{bottom:1107.690000px;}
.y60{bottom:1120.650000px;}
.y32{bottom:1123.350000px;}
.y2f{bottom:1179.720000px;}
.y2e{bottom:1197.900000px;}
.h25{height:18.180000px;}
.h19{height:18.720000px;}
.h20{height:19.296000px;}
.h27{height:20.520000px;}
.h17{height:21.600000px;}
.h18{height:21.636000px;}
.h21{height:22.140000px;}
.h12{height:31.320000px;}
.h13{height:31.500000px;}
.h24{height:36.000000px;}
.h26{height:36.036000px;}
.h1f{height:36.180000px;}
.h14{height:36.887695px;}
.h1d{height:37.440000px;}
.h1b{height:40.716000px;}
.hf{height:44.236406px;}
.h2{height:49.517578px;}
.h3{height:50.572266px;}
.h5{height:52.048828px;}
.h28{height:52.332187px;}
.h1e{height:54.180000px;}
.h8{height:54.799453px;}
.h6{height:55.966641px;}
.h1c{height:58.140000px;}
.h11{height:60.741562px;}
.h4{height:62.035312px;}
.he{height:63.846562px;}
.hc{height:66.023438px;}
.h7{height:67.429688px;}
.h10{height:70.628906px;}
.h23{height:76.500000px;}
.h15{height:86.400000px;}
.hb{height:91.476000px;}
.hd{height:109.656000px;}
.h16{height:129.636000px;}
.ha{height:132.046875px;}
.h9{height:193.890000px;}
.h1a{height:276.915000px;}
.h22{height:295.230000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:39.960000px;}
.w8{width:46.620000px;}
.wf{width:50.760000px;}
.w10{width:51.300000px;}
.wd{width:63.720000px;}
.we{width:63.756000px;}
.w7{width:69.480000px;}
.w5{width:85.680000px;}
.wb{width:93.096000px;}
.wa{width:102.060000px;}
.w9{width:122.976000px;}
.w6{width:127.476000px;}
.w11{width:133.056000px;}
.w13{width:156.960000px;}
.w3{width:269.130000px;}
.w4{width:400.395000px;}
.w14{width:489.165000px;}
.w12{width:646.125000px;}
.w2{width:652.425000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.100000px;}
.x5{left:10.800000px;}
.x1c{left:16.200000px;}
.x1a{left:18.225000px;}
.x14{left:19.260000px;}
.x20{left:20.340000px;}
.x1f{left:21.780000px;}
.x18{left:28.440000px;}
.xe{left:30.420000px;}
.xd{left:38.520000px;}
.x12{left:41.970000px;}
.x1b{left:53.685000px;}
.x1d{left:56.520000px;}
.x1e{left:57.990000px;}
.xa{left:119.556000px;}
.x1{left:127.656000px;}
.x21{left:170.130000px;}
.x9{left:180.750000px;}
.x22{left:200.739000px;}
.xc{left:205.230000px;}
.x25{left:210.450000px;}
.x17{left:268.950000px;}
.x23{left:276.510000px;}
.x4{left:308.415000px;}
.x7{left:326.775000px;}
.xf{left:332.715000px;}
.x10{left:402.195000px;}
.x3{left:446.655000px;}
.x11{left:448.815000px;}
.x26{left:451.875000px;}
.x6{left:522.645000px;}
.x13{left:571.785000px;}
.x19{left:622.545000px;}
.x15{left:673.845000px;}
.x24{left:684.690000px;}
.x8{left:721.050000px;}
.x2{left:765.690000px;}
.x16{left:766.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.773333pt;}
.ls1a{letter-spacing:-0.227733pt;}
.lsd{letter-spacing:-0.214933pt;}
.ls1f{letter-spacing:-0.199467pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.161067pt;}
.ls19{letter-spacing:-0.156267pt;}
.ls11{letter-spacing:-0.148267pt;}
.ls12{letter-spacing:-0.140800pt;}
.ls20{letter-spacing:-0.133333pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls1e{letter-spacing:-0.089600pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.117760pt;}
.lse{letter-spacing:0.150933pt;}
.lsc{letter-spacing:0.151040pt;}
.ls8{letter-spacing:0.197120pt;}
.ls0{letter-spacing:0.272000pt;}
.ls17{letter-spacing:0.304000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.473600pt;}
.ls22{letter-spacing:0.789333pt;}
.ls23{letter-spacing:1.477120pt;}
.ls2{letter-spacing:2.304000pt;}
.ls1{letter-spacing:2.688000pt;}
.ls6{letter-spacing:2.701440pt;}
.ls4{letter-spacing:2.816000pt;}
.ls3{letter-spacing:2.842880pt;}
.ls5{letter-spacing:2.944000pt;}
.lsf{letter-spacing:3.397120pt;}
.ls15{letter-spacing:5.392000pt;}
.ls14{letter-spacing:8.592000pt;}
.ls24{letter-spacing:16.197120pt;}
.ls16{letter-spacing:16.912000pt;}
.ws0{word-spacing:-30.437120pt;}
.ws9{word-spacing:-17.873813pt;}
.ws3{word-spacing:-17.722880pt;}
.wsd{word-spacing:-17.633280pt;}
.wse{word-spacing:-17.589547pt;}
.ws7{word-spacing:-17.582080pt;}
.wsc{word-spacing:-17.566613pt;}
.wsa{word-spacing:-17.561813pt;}
.wsb{word-spacing:-17.530880pt;}
.ws10{word-spacing:-17.523413pt;}
.ws6{word-spacing:-17.507947pt;}
.wsf{word-spacing:-16.949547pt;}
.ws5{word-spacing:-14.672427pt;}
.ws2{word-spacing:-14.480000pt;}
.ws1{word-spacing:-14.448000pt;}
.ws8{word-spacing:-14.256000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.280000pt;}
._1{width:0.896000pt;}
._2{width:2.496000pt;}
._3{width:3.552000pt;}
._4{width:4.992000pt;}
._5{width:6.090667pt;}
._d{width:7.706667pt;}
._c{width:8.928000pt;}
._e{width:9.994667pt;}
._7{width:11.232000pt;}
._6{width:12.752000pt;}
._15{width:14.131200pt;}
._10{width:15.504000pt;}
._f{width:16.496000pt;}
._11{width:18.120960pt;}
._12{width:19.150080pt;}
._1e{width:20.474880pt;}
._17{width:22.182400pt;}
._16{width:23.257600pt;}
._a{width:24.768000pt;}
._b{width:25.808000pt;}
._21{width:26.699520pt;}
._18{width:28.188160pt;}
._19{width:29.222400pt;}
._1f{width:30.323200pt;}
._8{width:31.824000pt;}
._24{width:33.664000pt;}
._13{width:35.269120pt;}
._14{width:36.549120pt;}
._22{width:38.213120pt;}
._25{width:45.219840pt;}
._26{width:46.709333pt;}
._20{width:49.744000pt;}
._23{width:50.962347pt;}
._1a{width:52.462080pt;}
._1b{width:53.565440pt;}
._9{width:55.633280pt;}
._1d{width:82.441387pt;}
._1c{width:171.055787pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:101.120000pt;}
.fs4{font-size:128.000000pt;}
.y2d{bottom:-25.440000pt;}
.y2c{bottom:-7.680000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:3.360000pt;}
.yf6{bottom:5.440000pt;}
.y103{bottom:5.600000pt;}
.yeb{bottom:6.080000pt;}
.y105{bottom:6.586667pt;}
.yfd{bottom:6.720000pt;}
.y115{bottom:7.680000pt;}
.yc2{bottom:8.640000pt;}
.yfa{bottom:9.120000pt;}
.y26{bottom:16.000000pt;}
.ybb{bottom:16.640000pt;}
.yb9{bottom:17.280000pt;}
.ybc{bottom:17.440000pt;}
.y21{bottom:17.760000pt;}
.y100{bottom:21.440000pt;}
.y113{bottom:21.480000pt;}
.y102{bottom:21.600000pt;}
.yf5{bottom:21.640000pt;}
.yfc{bottom:22.720000pt;}
.y2b{bottom:24.000000pt;}
.yf9{bottom:25.120000pt;}
.y25{bottom:33.480000pt;}
.y110{bottom:37.440000pt;}
.yff{bottom:37.600000pt;}
.yf8{bottom:41.120000pt;}
.y2a{bottom:44.040000pt;}
.y24{bottom:49.480000pt;}
.y31{bottom:49.920000pt;}
.y2{bottom:50.400000pt;}
.y10f{bottom:53.440000pt;}
.y20{bottom:58.426667pt;}
.y1{bottom:64.320000pt;}
.y29{bottom:65.000000pt;}
.y30{bottom:66.080000pt;}
.ybe{bottom:66.240000pt;}
.y23{bottom:67.080000pt;}
.y28{bottom:84.520000pt;}
.y1f{bottom:101.146667pt;}
.yc0{bottom:104.680000pt;}
.y16f{bottom:118.080000pt;}
.yb6{bottom:119.680000pt;}
.y146{bottom:123.040000pt;}
.ye7{bottom:123.200000pt;}
.y11d{bottom:126.560000pt;}
.y1c{bottom:128.640000pt;}
.y85{bottom:132.640000pt;}
.yf3{bottom:135.386667pt;}
.y10e{bottom:135.720000pt;}
.y5f{bottom:136.000000pt;}
.y1ab{bottom:137.280000pt;}
.y16e{bottom:137.760000pt;}
.y187{bottom:139.680000pt;}
.ye6{bottom:142.720000pt;}
.y1e{bottom:143.866667pt;}
.y1b{bottom:144.640000pt;}
.y11c{bottom:146.080000pt;}
.y145{bottom:150.240000pt;}
.yf2{bottom:151.386667pt;}
.y10d{bottom:151.880000pt;}
.y84{bottom:152.320000pt;}
.yb5{bottom:152.480000pt;}
.y5e{bottom:155.520000pt;}
.y1aa{bottom:156.800000pt;}
.y16d{bottom:157.280000pt;}
.y13d{bottom:158.560000pt;}
.y1a{bottom:160.640000pt;}
.ye5{bottom:162.400000pt;}
.y191{bottom:163.680000pt;}
.yf1{bottom:167.386667pt;}
.y10c{bottom:167.880000pt;}
.y83{bottom:171.840000pt;}
.y186{bottom:172.640000pt;}
.y5d{bottom:175.040000pt;}
.y1a9{bottom:176.480000pt;}
.y19{bottom:176.800000pt;}
.y1c7{bottom:177.280000pt;}
.y144{bottom:177.600000pt;}
.y13c{bottom:178.080000pt;}
.y11b{bottom:179.040000pt;}
.ye4{bottom:181.920000pt;}
.y190{bottom:183.200000pt;}
.yf0{bottom:183.386667pt;}
.y1bd{bottom:183.520000pt;}
.y10b{bottom:183.880000pt;}
.y12e{bottom:184.320000pt;}
.yb4{bottom:185.440000pt;}
.y82{bottom:191.360000pt;}
.y185{bottom:192.320000pt;}
.y18{bottom:192.800000pt;}
.y5c{bottom:194.720000pt;}
.y16c{bottom:196.480000pt;}
.y1c6{bottom:196.800000pt;}
.y13b{bottom:197.600000pt;}
.y11a{bottom:198.560000pt;}
.yef{bottom:199.386667pt;}
.y10a{bottom:199.880000pt;}
.ye3{bottom:201.440000pt;}
.y1bc{bottom:203.040000pt;}
.y12d{bottom:204.000000pt;}
.y143{bottom:204.800000pt;}
.y17{bottom:208.800000pt;}
.y1a8{bottom:209.280000pt;}
.y81{bottom:211.040000pt;}
.y184{bottom:211.840000pt;}
.y5b{bottom:214.240000pt;}
.yee{bottom:215.386667pt;}
.y109{bottom:215.880000pt;}
.y16b{bottom:216.000000pt;}
.y18f{bottom:216.160000pt;}
.y1c5{bottom:216.480000pt;}
.y119{bottom:218.240000pt;}
.yb3{bottom:218.400000pt;}
.ye2{bottom:221.146667pt;}
.y1bb{bottom:222.746667pt;}
.y12c{bottom:223.546667pt;}
.y16{bottom:224.826667pt;}
.y1a7{bottom:228.986667pt;}
.y97{bottom:230.586667pt;}
.y183{bottom:231.386667pt;}
.yed{bottom:231.586667pt;}
.y108{bottom:231.880000pt;}
.y142{bottom:232.026667pt;}
.y16a{bottom:235.706667pt;}
.y1c4{bottom:236.026667pt;}
.y118{bottom:237.786667pt;}
.yb2{bottom:237.946667pt;}
.ye1{bottom:240.666667pt;}
.y15{bottom:240.826667pt;}
.y12b{bottom:243.066667pt;}
.y80{bottom:244.026667pt;}
.y5a{bottom:247.226667pt;}
.y107{bottom:247.880000pt;}
.y13a{bottom:250.266667pt;}
.y182{bottom:251.066667pt;}
.y169{bottom:255.226667pt;}
.y18e{bottom:255.386667pt;}
.y1ba{bottom:255.546667pt;}
.y14{bottom:256.826667pt;}
.yb1{bottom:257.626667pt;}
.y141{bottom:259.386667pt;}
.ye0{bottom:260.346667pt;}
.y1a6{bottom:261.946667pt;}
.y12a{bottom:262.746667pt;}
.y7f{bottom:263.546667pt;}
.y59{bottom:266.746667pt;}
.y1d8{bottom:268.186667pt;}
.y1c3{bottom:268.986667pt;}
.y139{bottom:269.786667pt;}
.y181{bottom:270.586667pt;}
.y13{bottom:272.826667pt;}
.y168{bottom:274.746667pt;}
.y1b9{bottom:275.226667pt;}
.y117{bottom:276.666667pt;}
.yb0{bottom:277.146667pt;}
.ydf{bottom:279.866667pt;}
.y1a5{bottom:281.466667pt;}
.y7e{bottom:283.066667pt;}
.y58{bottom:286.426667pt;}
.y140{bottom:286.586667pt;}
.y1d7{bottom:287.706667pt;}
.y18d{bottom:288.186667pt;}
.y1c2{bottom:288.506667pt;}
.y12{bottom:288.986667pt;}
.y138{bottom:289.306667pt;}
.y180{bottom:290.266667pt;}
.y167{bottom:294.426667pt;}
.y1b8{bottom:294.746667pt;}
.y129{bottom:295.546667pt;}
.yaf{bottom:296.666667pt;}
.yde{bottom:299.386667pt;}
.y1a4{bottom:300.986667pt;}
.y7d{bottom:302.746667pt;}
.y11{bottom:304.986667pt;}
.y57{bottom:305.946667pt;}
.y1d6{bottom:307.226667pt;}
.y18c{bottom:307.866667pt;}
.y1c1{bottom:308.186667pt;}
.y137{bottom:308.986667pt;}
.y17f{bottom:309.786667pt;}
.y13f{bottom:313.146667pt;}
.y166{bottom:313.946667pt;}
.y128{bottom:315.226667pt;}
.y116{bottom:315.546667pt;}
.yae{bottom:316.346667pt;}
.ydd{bottom:319.066667pt;}
.y10{bottom:321.626667pt;}
.y7c{bottom:322.266667pt;}
.y1d5{bottom:326.906667pt;}
.y1b7{bottom:327.706667pt;}
.y136{bottom:328.506667pt;}
.y17e{bottom:329.306667pt;}
.y106{bottom:329.946667pt;}
.y165{bottom:333.626667pt;}
.y1a3{bottom:333.946667pt;}
.y127{bottom:334.746667pt;}
.yad{bottom:335.866667pt;}
.ydc{bottom:338.586667pt;}
.y7b{bottom:341.946667pt;}
.y56{bottom:344.826667pt;}
.y1d4{bottom:346.426667pt;}
.y1b6{bottom:347.226667pt;}
.y135{bottom:348.186667pt;}
.y17d{bottom:348.986667pt;}
.yf{bottom:352.826667pt;}
.y164{bottom:353.146667pt;}
.y126{bottom:354.426667pt;}
.yac{bottom:355.546667pt;}
.ydb{bottom:358.266667pt;}
.y1c0{bottom:360.666667pt;}
.y7a{bottom:361.466667pt;}
.y114{bottom:361.946667pt;}
.y1a2{bottom:366.906667pt;}
.y134{bottom:367.706667pt;}
.y17c{bottom:368.506667pt;}
.y163{bottom:372.666667pt;}
.y18b{bottom:374.746667pt;}
.yab{bottom:375.066667pt;}
.y55{bottom:377.306667pt;}
.yda{bottom:377.786667pt;}
.y27{bottom:378.746667pt;}
.y1d3{bottom:379.386667pt;}
.ye{bottom:380.186667pt;}
.y79{bottom:380.986667pt;}
.y1a1{bottom:386.426667pt;}
.y125{bottom:387.226667pt;}
.y17b{bottom:388.186667pt;}
.y162{bottom:392.346667pt;}
.y91{bottom:394.426667pt;}
.yaa{bottom:394.586667pt;}
.yd9{bottom:397.306667pt;}
.y1d2{bottom:398.906667pt;}
.y1b5{bottom:399.866667pt;}
.y78{bottom:400.666667pt;}
.y54{bottom:402.426667pt;}
.y124{bottom:406.906667pt;}
.y17a{bottom:407.706667pt;}
.y161{bottom:411.866667pt;}
.y112{bottom:412.186667pt;}
.y90{bottom:413.946667pt;}
.ya9{bottom:414.266667pt;}
.yd8{bottom:416.986667pt;}
.y53{bottom:419.066667pt;}
.y1a0{bottom:419.386667pt;}
.y96{bottom:420.226667pt;}
.y123{bottom:426.466667pt;}
.y179{bottom:427.266667pt;}
.y160{bottom:431.586667pt;}
.y1d1{bottom:431.906667pt;}
.y77{bottom:433.506667pt;}
.ya8{bottom:433.826667pt;}
.yd7{bottom:436.546667pt;}
.y19f{bottom:438.946667pt;}
.y95{bottom:439.906667pt;}
.y52{bottom:444.226667pt;}
.y122{bottom:446.146667pt;}
.y18a{bottom:446.946667pt;}
.y15f{bottom:451.106667pt;}
.y1d0{bottom:451.426667pt;}
.y1bf{bottom:452.386667pt;}
.y76{bottom:453.186667pt;}
.ya7{bottom:453.506667pt;}
.y19e{bottom:458.626667pt;}
.y94{bottom:459.426667pt;}
.y51{bottom:460.226667pt;}
.y121{bottom:465.666667pt;}
.y189{bottom:466.466667pt;}
.yd6{bottom:469.506667pt;}
.y1b4{bottom:471.906667pt;}
.y75{bottom:472.706667pt;}
.ya6{bottom:473.026667pt;}
.y111{bottom:476.226667pt;}
.y50{bottom:476.386667pt;}
.y133{bottom:478.946667pt;}
.y178{bottom:479.906667pt;}
.y15e{bottom:484.066667pt;}
.y1cf{bottom:484.386667pt;}
.yd5{bottom:489.026667pt;}
.y19d{bottom:491.426667pt;}
.y4f{bottom:492.386667pt;}
.ya5{bottom:492.546667pt;}
.y120{bottom:498.626667pt;}
.y177{bottom:499.426667pt;}
.y15d{bottom:503.586667pt;}
.y1ce{bottom:504.066667pt;}
.y4e{bottom:508.386667pt;}
.yd4{bottom:508.706667pt;}
.y19c{bottom:511.106667pt;}
.y8f{bottom:511.906667pt;}
.y11f{bottom:518.146667pt;}
.y176{bottom:518.946667pt;}
.y15c{bottom:523.266667pt;}
.y1cd{bottom:523.586667pt;}
.y4d{bottom:524.386667pt;}
.y74{bottom:525.186667pt;}
.ya4{bottom:525.506667pt;}
.yd3{bottom:528.226667pt;}
.y8e{bottom:531.426667pt;}
.y175{bottom:538.626667pt;}
.y4c{bottom:540.386667pt;}
.y15b{bottom:542.786667pt;}
.y19b{bottom:544.066667pt;}
.y73{bottom:544.866667pt;}
.ya3{bottom:545.186667pt;}
.yd2{bottom:547.906667pt;}
.y8d{bottom:551.106667pt;}
.y4b{bottom:556.386667pt;}
.y1cc{bottom:556.546667pt;}
.y174{bottom:558.146667pt;}
.y15a{bottom:562.306667pt;}
.y19a{bottom:563.586667pt;}
.y72{bottom:564.386667pt;}
.ya2{bottom:564.706667pt;}
.yd1{bottom:567.426667pt;}
.y1d{bottom:568.066667pt;}
.y8c{bottom:570.626667pt;}
.y4a{bottom:572.546667pt;}
.y1cb{bottom:576.066667pt;}
.y1be{bottom:576.866667pt;}
.y173{bottom:577.826667pt;}
.yd{bottom:577.986667pt;}
.y159{bottom:581.986667pt;}
.y1b3{bottom:583.106667pt;}
.y71{bottom:584.066667pt;}
.ya1{bottom:584.226667pt;}
.yd0{bottom:586.946667pt;}
.y49{bottom:588.546667pt;}
.y8b{bottom:590.306667pt;}
.yec{bottom:593.826667pt;}
.y199{bottom:596.546667pt;}
.y172{bottom:597.346667pt;}
.yc{bottom:599.266667pt;}
.y158{bottom:601.506667pt;}
.y70{bottom:603.586667pt;}
.ya0{bottom:603.906667pt;}
.y48{bottom:604.546667pt;}
.ycf{bottom:606.626667pt;}
.y1ca{bottom:609.026667pt;}
.y8a{bottom:609.826667pt;}
.y104{bottom:614.786667pt;}
.y198{bottom:616.066667pt;}
.y171{bottom:616.866667pt;}
.y47{bottom:620.546667pt;}
.y157{bottom:621.213333pt;}
.y6f{bottom:623.133333pt;}
.yce{bottom:626.173333pt;}
.yb{bottom:633.053333pt;}
.y101{bottom:633.213333pt;}
.y197{bottom:635.773333pt;}
.y46{bottom:636.573333pt;}
.y9f{bottom:636.893333pt;}
.y156{bottom:640.733333pt;}
.y1c9{bottom:642.013333pt;}
.y89{bottom:642.813333pt;}
.ycd{bottom:645.853333pt;}
.y45{bottom:652.573333pt;}
.y1b2{bottom:655.293333pt;}
.y6e{bottom:656.093333pt;}
.y9e{bottom:656.413333pt;}
.y155{bottom:660.253333pt;}
.y88{bottom:662.333333pt;}
.ya{bottom:664.093333pt;}
.ycc{bottom:665.373333pt;}
.yfe{bottom:666.653333pt;}
.y44{bottom:668.573333pt;}
.y1b1{bottom:674.813333pt;}
.y6d{bottom:675.773333pt;}
.y9d{bottom:675.933333pt;}
.y154{bottom:679.933333pt;}
.y87{bottom:682.013333pt;}
.y43{bottom:684.733333pt;}
.ycb{bottom:684.893333pt;}
.y196{bottom:688.253333pt;}
.y1b0{bottom:694.493333pt;}
.y9{bottom:695.293333pt;}
.y9c{bottom:695.613333pt;}
.y153{bottom:699.453333pt;}
.y42{bottom:700.733333pt;}
.y86{bottom:701.533333pt;}
.y195{bottom:707.773333pt;}
.y6c{bottom:714.813333pt;}
.y9b{bottom:715.133333pt;}
.yfb{bottom:716.093333pt;}
.y41{bottom:716.733333pt;}
.yca{bottom:717.853333pt;}
.y152{bottom:719.133333pt;}
.y132{bottom:721.053333pt;}
.y8{bottom:726.493333pt;}
.y194{bottom:727.293333pt;}
.yc6{bottom:732.093333pt;}
.y40{bottom:732.733333pt;}
.y6b{bottom:734.493333pt;}
.y151{bottom:738.653333pt;}
.y9a{bottom:740.733333pt;}
.y1af{bottom:746.973333pt;}
.yf7{bottom:750.813333pt;}
.yc9{bottom:751.293333pt;}
.y6a{bottom:754.013333pt;}
.y3f{bottom:754.653333pt;}
.y7{bottom:757.533333pt;}
.y150{bottom:758.173333pt;}
.y131{bottom:760.253333pt;}
.y170{bottom:767.293333pt;}
.yc8{bottom:770.493333pt;}
.y69{bottom:773.693333pt;}
.y14f{bottom:777.853333pt;}
.y193{bottom:779.933333pt;}
.y3e{bottom:780.733333pt;}
.y13e{bottom:786.973333pt;}
.y6{bottom:788.733333pt;}
.yc7{bottom:789.693333pt;}
.y68{bottom:793.213333pt;}
.y22{bottom:796.573333pt;}
.y14e{bottom:797.373333pt;}
.y1ae{bottom:799.453333pt;}
.yf4{bottom:803.773333pt;}
.y99{bottom:806.493333pt;}
.ybf{bottom:808.893333pt;}
.y3d{bottom:809.213333pt;}
.y130{bottom:812.733333pt;}
.y14d{bottom:817.053333pt;}
.y1c8{bottom:818.973333pt;}
.y5{bottom:819.133333pt;}
.y3c{bottom:826.213333pt;}
.yc5{bottom:828.133333pt;}
.y12f{bottom:832.453333pt;}
.y14c{bottom:836.613333pt;}
.yea{bottom:841.253333pt;}
.y67{bottom:845.733333pt;}
.ybd{bottom:847.333333pt;}
.y4{bottom:849.733333pt;}
.y192{bottom:851.973333pt;}
.y3b{bottom:854.373333pt;}
.y14b{bottom:856.133333pt;}
.y66{bottom:865.413333pt;}
.yc4{bottom:866.533333pt;}
.y3a{bottom:870.373333pt;}
.ye9{bottom:871.333333pt;}
.y1ad{bottom:871.653333pt;}
.y14a{bottom:875.813333pt;}
.y3{bottom:878.533333pt;}
.y65{bottom:884.933333pt;}
.yc3{bottom:885.733333pt;}
.y39{bottom:886.373333pt;}
.ye8{bottom:887.333333pt;}
.y1ac{bottom:891.173333pt;}
.y149{bottom:895.333333pt;}
.y11e{bottom:898.213333pt;}
.y38{bottom:902.373333pt;}
.y64{bottom:904.453333pt;}
.yc1{bottom:904.933333pt;}
.y148{bottom:915.013333pt;}
.y93{bottom:917.893333pt;}
.y37{bottom:918.533333pt;}
.y63{bottom:924.133333pt;}
.y36{bottom:934.533333pt;}
.y92{bottom:937.413333pt;}
.y98{bottom:943.653333pt;}
.y35{bottom:950.533333pt;}
.yb8{bottom:953.413333pt;}
.y147{bottom:954.053333pt;}
.y62{bottom:956.933333pt;}
.y188{bottom:963.333333pt;}
.y34{bottom:966.533333pt;}
.y61{bottom:976.613333pt;}
.y33{bottom:982.533333pt;}
.yb7{bottom:984.613333pt;}
.y60{bottom:996.133333pt;}
.y32{bottom:998.533333pt;}
.y2f{bottom:1048.640000pt;}
.y2e{bottom:1064.800000pt;}
.h25{height:16.160000pt;}
.h19{height:16.640000pt;}
.h20{height:17.152000pt;}
.h27{height:18.240000pt;}
.h17{height:19.200000pt;}
.h18{height:19.232000pt;}
.h21{height:19.680000pt;}
.h12{height:27.840000pt;}
.h13{height:28.000000pt;}
.h24{height:32.000000pt;}
.h26{height:32.032000pt;}
.h1f{height:32.160000pt;}
.h14{height:32.789062pt;}
.h1d{height:33.280000pt;}
.h1b{height:36.192000pt;}
.hf{height:39.321250pt;}
.h2{height:44.015625pt;}
.h3{height:44.953125pt;}
.h5{height:46.265625pt;}
.h28{height:46.517500pt;}
.h1e{height:48.160000pt;}
.h8{height:48.710625pt;}
.h6{height:49.748125pt;}
.h1c{height:51.680000pt;}
.h11{height:53.992500pt;}
.h4{height:55.142500pt;}
.he{height:56.752500pt;}
.hc{height:58.687500pt;}
.h7{height:59.937500pt;}
.h10{height:62.781250pt;}
.h23{height:68.000000pt;}
.h15{height:76.800000pt;}
.hb{height:81.312000pt;}
.hd{height:97.472000pt;}
.h16{height:115.232000pt;}
.ha{height:117.375000pt;}
.h9{height:172.346667pt;}
.h1a{height:246.146667pt;}
.h22{height:262.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:35.520000pt;}
.w8{width:41.440000pt;}
.wf{width:45.120000pt;}
.w10{width:45.600000pt;}
.wd{width:56.640000pt;}
.we{width:56.672000pt;}
.w7{width:61.760000pt;}
.w5{width:76.160000pt;}
.wb{width:82.752000pt;}
.wa{width:90.720000pt;}
.w9{width:109.312000pt;}
.w6{width:113.312000pt;}
.w11{width:118.272000pt;}
.w13{width:139.520000pt;}
.w3{width:239.226667pt;}
.w4{width:355.906667pt;}
.w14{width:434.813333pt;}
.w12{width:574.333333pt;}
.w2{width:579.933333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.200000pt;}
.x5{left:9.600000pt;}
.x1c{left:14.400000pt;}
.x1a{left:16.200000pt;}
.x14{left:17.120000pt;}
.x20{left:18.080000pt;}
.x1f{left:19.360000pt;}
.x18{left:25.280000pt;}
.xe{left:27.040000pt;}
.xd{left:34.240000pt;}
.x12{left:37.306667pt;}
.x1b{left:47.720000pt;}
.x1d{left:50.240000pt;}
.x1e{left:51.546667pt;}
.xa{left:106.272000pt;}
.x1{left:113.472000pt;}
.x21{left:151.226667pt;}
.x9{left:160.666667pt;}
.x22{left:178.434667pt;}
.xc{left:182.426667pt;}
.x25{left:187.066667pt;}
.x17{left:239.066667pt;}
.x23{left:245.786667pt;}
.x4{left:274.146667pt;}
.x7{left:290.466667pt;}
.xf{left:295.746667pt;}
.x10{left:357.506667pt;}
.x3{left:397.026667pt;}
.x11{left:398.946667pt;}
.x26{left:401.666667pt;}
.x6{left:464.573333pt;}
.x13{left:508.253333pt;}
.x19{left:553.373333pt;}
.x15{left:598.973333pt;}
.x24{left:608.613333pt;}
.x8{left:640.933333pt;}
.x2{left:680.613333pt;}
.x16{left:681.733333pt;}
}




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