
    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_da491f0d8f7e1b73de9ecd20.woff')format("woff");}.ff1{font-family:ff1;line-height:0.899902;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_ad31782c98e66dedd4e89ebc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_735e0896413bba848649f08d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_40195e61f3930a1ef6b8075b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.044434;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_fb02359741a706ba454de985.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_7dba3a87af149891051af384.woff')format("woff");}.ff6{font-family:ff6;line-height:0.911621;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_bbde06f0eafc108aebfdf939.woff')format("woff");}.ff7{font-family:ff7;line-height:0.678711;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_4157d9bfb7a5a3385e94bb2a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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_fa4f044fc98cf78336e9e5ea.woff')format("woff");}.ff9{font-family:ff9;line-height:1.016113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-21.978000px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v4{vertical-align:20.979000px;}
.v2{vertical-align:23.976000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.015600px;}
.ls11{letter-spacing:0.330000px;}
.ls10{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.600000px;}
.lsc{letter-spacing:0.630000px;}
.ls2{letter-spacing:3.000000px;}
.ls9{letter-spacing:3.600000px;}
.lse{letter-spacing:4.196667px;}
.ls7{letter-spacing:4.197333px;}
.ls5{letter-spacing:4.200000px;}
.ls8{letter-spacing:4.210000px;}
.lsf{letter-spacing:4.210667px;}
.ls6{letter-spacing:4.800000px;}
.ls15{letter-spacing:5.280000px;}
.lsa{letter-spacing:5.400000px;}
.ls12{letter-spacing:5.478000px;}
.ls0{letter-spacing:6.600000px;}
.ls14{letter-spacing:8.234082px;}
.ls13{letter-spacing:8.234682px;}
.ls3{letter-spacing:8.400000px;}
.ls16{letter-spacing:8.426682px;}
.ls1{letter-spacing:10.800000px;}
.ls17{letter-spacing:19.800000px;}
.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;}
}
.wsf{word-spacing:-63.000000px;}
.ws16{word-spacing:-36.102000px;}
.ws11{word-spacing:-32.004000px;}
.ws12{word-spacing:-25.146000px;}
.ws2{word-spacing:-23.604000px;}
.ws7{word-spacing:-20.232000px;}
.ws17{word-spacing:-19.860000px;}
.ws13{word-spacing:-18.876000px;}
.ws15{word-spacing:-18.546000px;}
.wsd{word-spacing:-18.333000px;}
.ws10{word-spacing:-18.144000px;}
.ws6{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.703000px;}
.wsb{word-spacing:-17.460000px;}
.ws5{word-spacing:-16.860000px;}
.ws14{word-spacing:-16.302000px;}
.ws1{word-spacing:-14.820000px;}
.ws3{word-spacing:-11.795256px;}
.wse{word-spacing:-0.693000px;}
.wsa{word-spacing:-0.063000px;}
.wsc{word-spacing:-0.060000px;}
.ws8{word-spacing:-0.057000px;}
.ws0{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
._12{margin-left:-20.482200px;}
._17{margin-left:-19.350000px;}
._34{margin-left:-16.962000px;}
._18{margin-left:-13.818000px;}
._14{margin-left:-12.574667px;}
._8{margin-left:-11.124000px;}
._2f{margin-left:-9.846667px;}
._29{margin-left:-8.652000px;}
._7{margin-left:-7.512000px;}
._3{margin-left:-6.480000px;}
._e{margin-left:-5.460000px;}
._6{margin-left:-4.290000px;}
._9{margin-left:-2.592000px;}
._1{margin-left:-1.134000px;}
._4{width:1.350000px;}
._c{width:2.448000px;}
._16{width:3.672000px;}
._15{width:5.490000px;}
._10{width:6.624000px;}
._b{width:8.400000px;}
._d{width:9.646667px;}
._a{width:11.377333px;}
._11{width:13.320000px;}
._f{width:15.192000px;}
._2c{width:17.889333px;}
._2e{width:20.328000px;}
._2d{width:21.660000px;}
._31{width:26.430000px;}
._30{width:27.756000px;}
._2b{width:32.760000px;}
._32{width:38.874000px;}
._2a{width:40.230420px;}
._33{width:44.179800px;}
._35{width:52.734000px;}
._37{width:54.025200px;}
._13{width:57.719820px;}
._36{width:60.130800px;}
._0{width:68.706000px;}
._28{width:263.866667px;}
._1a{width:296.934667px;}
._2{width:369.208200px;}
._27{width:420.742000px;}
._1f{width:426.253333px;}
._26{width:437.409333px;}
._1d{width:442.920000px;}
._1b{width:517.211333px;}
._24{width:523.972667px;}
._25{width:555.244667px;}
._1e{width:581.938667px;}
._21{width:583.886667px;}
._19{width:586.328000px;}
._23{width:599.331333px;}
._22{width:660.184667px;}
._5{width:738.306000px;}
._20{width:792.184667px;}
._1c{width:820.360667px;}
.fc3{color:rgb(68,57,21);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(42,62,146);}
.fc0{color:rgb(73,19,22);}
.fs7{font-size:34.980000px;}
.fsc{font-size:36.729000px;}
.fsd{font-size:38.478000px;}
.fs6{font-size:41.976000px;}
.fs8{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:58.081050px;}
.y2{bottom:58.081200px;}
.y22{bottom:58.081350px;}
.y123{bottom:58.081800px;}
.y4e{bottom:79.381050px;}
.y1{bottom:79.381200px;}
.y21{bottom:79.381350px;}
.y122{bottom:79.381800px;}
.ybb{bottom:127.558950px;}
.y20{bottom:127.559100px;}
.y16c{bottom:127.559700px;}
.y1bc{bottom:130.097700px;}
.y194{bottom:131.596650px;}
.y99{bottom:132.553950px;}
.y4d{bottom:132.554250px;}
.yfe{bottom:135.261750px;}
.y146{bottom:136.896000px;}
.y121{bottom:137.142450px;}
.y71{bottom:144.058950px;}
.y1f{bottom:144.059100px;}
.y98{bottom:148.818900px;}
.y16b{bottom:149.054700px;}
.y1bb{bottom:149.897700px;}
.y193{bottom:154.096650px;}
.yfd{bottom:156.261750px;}
.y1ed{bottom:159.503100px;}
.y120{bottom:159.642450px;}
.y1e{bottom:160.559100px;}
.y4c{bottom:165.255000px;}
.y97{bottom:165.318900px;}
.y70{bottom:165.553950px;}
.y145{bottom:168.525900px;}
.y1ba{bottom:169.697700px;}
.y192{bottom:176.596650px;}
.y1d{bottom:177.059100px;}
.y1ec{bottom:179.603100px;}
.y16a{bottom:181.762500px;}
.yba{bottom:181.818750px;}
.y96{bottom:181.818900px;}
.y11f{bottom:182.142450px;}
.yfc{bottom:187.891650px;}
.y4b{bottom:187.905000px;}
.y1b9{bottom:189.497700px;}
.yda{bottom:194.226150px;}
.y95{bottom:198.318900px;}
.y1c{bottom:198.554100px;}
.y191{bottom:199.096650px;}
.y1eb{bottom:199.703100px;}
.y144{bottom:200.155950px;}
.y169{bottom:202.762500px;}
.yb9{bottom:203.313900px;}
.y11e{bottom:204.642450px;}
.y1b8{bottom:209.297700px;}
.y4a{bottom:210.555000px;}
.y94{bottom:214.818900px;}
.yd9{bottom:215.226150px;}
.yb8{bottom:219.578700px;}
.y1ea{bottom:219.803100px;}
.y190{bottom:221.596650px;}
.y168{bottom:223.762500px;}
.y11d{bottom:227.142450px;}
.y1b7{bottom:229.097700px;}
.yfb{bottom:231.391650px;}
.y143{bottom:231.785850px;}
.y1b{bottom:232.390650px;}
.y49{bottom:233.205000px;}
.yb7{bottom:236.078700px;}
.y93{bottom:236.313900px;}
.y1e9{bottom:239.903100px;}
.y18f{bottom:244.096650px;}
.y167{bottom:244.762500px;}
.y6f{bottom:246.714000px;}
.yd8{bottom:246.856050px;}
.y1b6{bottom:248.897700px;}
.y11c{bottom:249.642450px;}
.yfa{bottom:253.891650px;}
.y1a{bottom:254.890650px;}
.y48{bottom:255.855000px;}
.yb6{bottom:257.573700px;}
.y1e8{bottom:260.003100px;}
.y142{bottom:263.415750px;}
.y92{bottom:263.804850px;}
.y18e{bottom:266.596650px;}
.y1b5{bottom:268.697700px;}
.y6e{bottom:269.214000px;}
.y11b{bottom:272.142450px;}
.yf9{bottom:276.391650px;}
.y19{bottom:277.390650px;}
.yd7{bottom:278.485950px;}
.y47{bottom:278.505000px;}
.y1e7{bottom:280.103100px;}
.y91{bottom:284.804850px;}
.y166{bottom:288.262500px;}
.y1b4{bottom:288.497700px;}
.y18d{bottom:289.096650px;}
.y6d{bottom:291.714000px;}
.y141{bottom:295.045650px;}
.yf8{bottom:298.891650px;}
.y18{bottom:299.890650px;}
.y1e6{bottom:300.203100px;}
.y46{bottom:301.155000px;}
.y90{bottom:305.804850px;}
.y1b3{bottom:308.297700px;}
.yd6{bottom:310.115850px;}
.y165{bottom:310.762500px;}
.y18c{bottom:311.596650px;}
.y6c{bottom:314.214000px;}
.y11a{bottom:317.142450px;}
.y1e5{bottom:320.303100px;}
.yf7{bottom:321.391650px;}
.y45{bottom:323.805000px;}
.y140{bottom:326.675700px;}
.y8f{bottom:326.804850px;}
.y1b2{bottom:328.097700px;}
.yd5{bottom:331.115850px;}
.yb5{bottom:332.397150px;}
.y164{bottom:333.262500px;}
.y18b{bottom:334.096650px;}
.y1e4{bottom:340.403100px;}
.yf6{bottom:343.891650px;}
.y44{bottom:346.455000px;}
.y8e{bottom:347.804850px;}
.y1b1{bottom:347.897700px;}
.y119{bottom:348.642450px;}
.y17{bottom:353.394600px;}
.yb4{bottom:354.897150px;}
.y163{bottom:355.762500px;}
.y18a{bottom:356.596650px;}
.y13f{bottom:358.305600px;}
.y1e3{bottom:360.503100px;}
.yf5{bottom:366.391650px;}
.y6b{bottom:366.405300px;}
.y1b0{bottom:367.697700px;}
.y8d{bottom:368.804850px;}
.y43{bottom:369.105000px;}
.yd4{bottom:374.615850px;}
.yb3{bottom:377.397150px;}
.y162{bottom:378.262500px;}
.y189{bottom:379.096650px;}
.y118{bottom:380.142450px;}
.y1e2{bottom:380.603100px;}
.y1af{bottom:387.497700px;}
.yf4{bottom:388.891650px;}
.y8c{bottom:389.804850px;}
.y42{bottom:391.755000px;}
.yd3{bottom:397.115850px;}
.y6a{bottom:398.638350px;}
.yb2{bottom:399.897150px;}
.y1e1{bottom:400.703100px;}
.y161{bottom:400.762500px;}
.y117{bottom:401.142450px;}
.y188{bottom:401.596650px;}
.y13e{bottom:401.805600px;}
.y1ae{bottom:407.297700px;}
.yf3{bottom:411.391650px;}
.y41{bottom:414.405000px;}
.yd2{bottom:419.615850px;}
.y1e0{bottom:420.803100px;}
.yb1{bottom:422.397150px;}
.y187{bottom:424.096650px;}
.y13d{bottom:424.305600px;}
.y1ad{bottom:427.097700px;}
.y69{bottom:430.871250px;}
.y116{bottom:432.642450px;}
.y8b{bottom:433.304850px;}
.yf2{bottom:433.891650px;}
.y40{bottom:436.905000px;}
.y1df{bottom:440.903100px;}
.yd1{bottom:442.115850px;}
.yb0{bottom:444.897150px;}
.y160{bottom:445.762500px;}
.y16{bottom:446.094600px;}
.y186{bottom:446.596650px;}
.y13c{bottom:446.805600px;}
.y1ac{bottom:446.897700px;}
.y8a{bottom:455.804850px;}
.yf1{bottom:456.391650px;}
.y3f{bottom:459.405000px;}
.y1de{bottom:461.003100px;}
.y68{bottom:463.104300px;}
.y115{bottom:464.142450px;}
.yd0{bottom:464.615850px;}
.y1ab{bottom:466.697700px;}
.y15f{bottom:466.762500px;}
.y15{bottom:468.594600px;}
.y185{bottom:469.096650px;}
.y13b{bottom:469.305600px;}
.y89{bottom:478.304850px;}
.yf0{bottom:478.891650px;}
.y1dd{bottom:481.103100px;}
.y3e{bottom:481.905000px;}
.y1aa{bottom:486.497700px;}
.y15e{bottom:487.762500px;}
.yaf{bottom:489.897150px;}
.y14{bottom:491.094600px;}
.y184{bottom:491.596650px;}
.y67{bottom:495.337350px;}
.y114{bottom:495.642450px;}
.y88{bottom:500.804850px;}
.y1dc{bottom:501.203100px;}
.yef{bottom:501.391650px;}
.y3d{bottom:504.405000px;}
.y1a9{bottom:506.297700px;}
.y15d{bottom:508.762500px;}
.ycf{bottom:509.615850px;}
.y13{bottom:513.594600px;}
.y183{bottom:514.096650px;}
.y13a{bottom:514.305600px;}
.y113{bottom:516.642450px;}
.y1db{bottom:521.303100px;}
.y209{bottom:522.810450px;}
.y87{bottom:523.304850px;}
.yee{bottom:523.891650px;}
.y1a8{bottom:526.097700px;}
.y66{bottom:527.570250px;}
.y15c{bottom:529.762500px;}
.y12{bottom:536.094600px;}
.y182{bottom:536.596650px;}
.yce{bottom:541.245750px;}
.y1da{bottom:541.403100px;}
.y208{bottom:545.310450px;}
.y86{bottom:545.804850px;}
.y1a7{bottom:545.897700px;}
.yed{bottom:546.391650px;}
.y3c{bottom:547.905000px;}
.y112{bottom:548.142450px;}
.y15b{bottom:550.762500px;}
.yae{bottom:557.397150px;}
.y11{bottom:558.594600px;}
.y181{bottom:559.096650px;}
.y65{bottom:559.803300px;}
.y1d9{bottom:561.503100px;}
.y1a6{bottom:565.697700px;}
.y207{bottom:567.810450px;}
.y85{bottom:568.304850px;}
.yec{bottom:568.891650px;}
.y111{bottom:569.142450px;}
.ycd{bottom:572.875650px;}
.yad{bottom:579.897150px;}
.y10{bottom:581.094600px;}
.y180{bottom:581.596650px;}
.y1d8{bottom:581.603100px;}
.y139{bottom:581.805600px;}
.y15a{bottom:582.262500px;}
.y1a5{bottom:585.497700px;}
.y206{bottom:590.310450px;}
.y84{bottom:590.804850px;}
.yeb{bottom:591.391650px;}
.y64{bottom:592.036200px;}
.y1d7{bottom:601.703100px;}
.yac{bottom:602.397150px;}
.y159{bottom:603.262500px;}
.yf{bottom:603.594600px;}
.y17f{bottom:604.096650px;}
.y138{bottom:604.305600px;}
.ycc{bottom:604.505550px;}
.y1a4{bottom:605.297700px;}
.y3b{bottom:612.405000px;}
.y110{bottom:612.642450px;}
.y83{bottom:613.304850px;}
.yea{bottom:613.891650px;}
.y1d6{bottom:621.803100px;}
.y158{bottom:624.262500px;}
.yab{bottom:624.897150px;}
.y1a3{bottom:625.097700px;}
.ycb{bottom:625.505550px;}
.ye{bottom:626.094600px;}
.y63{bottom:626.204850px;}
.y137{bottom:626.805600px;}
.y3a{bottom:634.905000px;}
.y10f{bottom:635.142450px;}
.y82{bottom:635.804850px;}
.ye9{bottom:636.391650px;}
.y1d5{bottom:641.903100px;}
.y1a2{bottom:644.897700px;}
.y157{bottom:645.262500px;}
.yaa{bottom:647.397150px;}
.yd{bottom:648.594600px;}
.y136{bottom:649.305600px;}
.y39{bottom:657.105000px;}
.yca{bottom:657.135450px;}
.y17e{bottom:657.600750px;}
.y205{bottom:657.810450px;}
.y81{bottom:658.304850px;}
.ye8{bottom:658.891650px;}
.y1d4{bottom:662.003100px;}
.y1a1{bottom:664.697700px;}
.y156{bottom:666.262500px;}
.ya9{bottom:669.897150px;}
.yc{bottom:671.094600px;}
.y135{bottom:671.805600px;}
.y62{bottom:673.004850px;}
.y38{bottom:679.305000px;}
.y10e{bottom:680.142450px;}
.ye7{bottom:681.391650px;}
.y1d3{bottom:682.103100px;}
.yc9{bottom:688.765500px;}
.ya8{bottom:692.397150px;}
.yb{bottom:693.594600px;}
.y61{bottom:695.504850px;}
.y155{bottom:697.762500px;}
.y37{bottom:701.505000px;}
.y1d2{bottom:702.203100px;}
.y80{bottom:703.304850px;}
.ye6{bottom:703.891650px;}
.y10d{bottom:709.646400px;}
.yc8{bottom:709.765500px;}
.y1a0{bottom:715.501650px;}
.ya{bottom:716.094600px;}
.y134{bottom:716.805600px;}
.y60{bottom:718.004850px;}
.y154{bottom:718.762500px;}
.y204{bottom:720.810450px;}
.y1d1{bottom:722.303100px;}
.y36{bottom:723.705000px;}
.y17d{bottom:727.800600px;}
.y133{bottom:737.805600px;}
.y153{bottom:739.762500px;}
.y5f{bottom:740.504850px;}
.y203{bottom:740.610450px;}
.y10c{bottom:741.146400px;}
.yc7{bottom:741.395400px;}
.y1d0{bottom:742.403100px;}
.ya7{bottom:744.401100px;}
.y35{bottom:745.905000px;}
.y17c{bottom:750.300600px;}
.ye5{bottom:753.391650px;}
.y132{bottom:758.805600px;}
.y202{bottom:760.410450px;}
.y152{bottom:760.762500px;}
.y1cf{bottom:762.503100px;}
.y5e{bottom:763.004850px;}
.y34{bottom:768.105000px;}
.y9{bottom:769.598550px;}
.ya6{bottom:769.601100px;}
.y7f{bottom:770.804850px;}
.y10b{bottom:772.776300px;}
.y17b{bottom:772.800600px;}
.yc6{bottom:773.025300px;}
.y201{bottom:780.210450px;}
.y1ce{bottom:782.603100px;}
.ye4{bottom:785.021700px;}
.y5d{bottom:785.504850px;}
.y19f{bottom:785.805600px;}
.y33{bottom:790.305000px;}
.y131{bottom:790.305600px;}
.y7e{bottom:793.304850px;}
.y17a{bottom:795.300600px;}
.y200{bottom:800.010450px;}
.y10a{bottom:802.280250px;}
.y1cd{bottom:802.703100px;}
.y151{bottom:804.262500px;}
.yc5{bottom:804.655200px;}
.y5c{bottom:808.004850px;}
.y19e{bottom:808.305600px;}
.y130{bottom:811.305600px;}
.y32{bottom:812.505000px;}
.y7d{bottom:815.804850px;}
.ye3{bottom:816.651450px;}
.y179{bottom:817.800600px;}
.y1ff{bottom:819.810450px;}
.y1cc{bottom:822.803100px;}
.y109{bottom:823.280250px;}
.y150{bottom:826.762500px;}
.y5b{bottom:830.504850px;}
.y19d{bottom:830.805600px;}
.y31{bottom:834.705000px;}
.yc4{bottom:836.285100px;}
.y1fe{bottom:839.610450px;}
.y178{bottom:840.300600px;}
.y12f{bottom:842.805600px;}
.y1cb{bottom:842.903100px;}
.y5a{bottom:853.004850px;}
.y19c{bottom:853.305600px;}
.y108{bottom:854.780250px;}
.y30{bottom:856.905000px;}
.y8{bottom:857.798550px;}
.ya5{bottom:857.801100px;}
.y1fd{bottom:859.410450px;}
.ye2{bottom:860.151450px;}
.y7c{bottom:860.804850px;}
.y177{bottom:862.800600px;}
.y1ca{bottom:863.003100px;}
.yc3{bottom:867.785100px;}
.y14f{bottom:871.762500px;}
.y12e{bottom:874.305600px;}
.y59{bottom:875.504850px;}
.y19b{bottom:875.805600px;}
.y2f{bottom:879.105000px;}
.y1fc{bottom:879.210450px;}
.ya4{bottom:880.301100px;}
.y7b{bottom:881.804850px;}
.y1c9{bottom:883.103100px;}
.y176{bottom:885.300600px;}
.y107{bottom:886.280250px;}
.ye1{bottom:891.781500px;}
.y19a{bottom:898.305600px;}
.y1fb{bottom:899.010450px;}
.yc2{bottom:899.415000px;}
.y2e{bottom:901.305000px;}
.ya3{bottom:902.801100px;}
.y7a{bottom:902.804850px;}
.y1c8{bottom:903.203100px;}
.y14e{bottom:903.392400px;}
.y12d{bottom:905.805600px;}
.y175{bottom:907.800600px;}
.y106{bottom:908.780250px;}
.ye0{bottom:912.781500px;}
.y1fa{bottom:918.810450px;}
.y58{bottom:920.504850px;}
.y7{bottom:920.798550px;}
.y199{bottom:920.805600px;}
.y1c7{bottom:923.303100px;}
.y2d{bottom:923.505000px;}
.y79{bottom:923.804850px;}
.ya2{bottom:925.301100px;}
.y174{bottom:930.300600px;}
.yc1{bottom:931.045050px;}
.y105{bottom:931.280250px;}
.y14d{bottom:935.022450px;}
.y12c{bottom:937.305600px;}
.y1f9{bottom:938.610450px;}
.y198{bottom:943.305600px;}
.y1c6{bottom:943.403100px;}
.ydf{bottom:944.411400px;}
.y78{bottom:944.804850px;}
.y2c{bottom:945.705000px;}
.ya1{bottom:947.801100px;}
.y173{bottom:952.800600px;}
.y6{bottom:953.198550px;}
.y104{bottom:953.780250px;}
.y1f8{bottom:958.410450px;}
.yc0{bottom:962.674950px;}
.y1c5{bottom:963.503100px;}
.yde{bottom:965.411400px;}
.y197{bottom:965.805600px;}
.y14c{bottom:966.652350px;}
.y2b{bottom:967.905000px;}
.y12b{bottom:968.805600px;}
.ya0{bottom:970.301100px;}
.y172{bottom:975.300600px;}
.y1f7{bottom:978.210450px;}
.y1c4{bottom:983.603100px;}
.ybf{bottom:983.674950px;}
.y5{bottom:985.598550px;}
.y57{bottom:988.004850px;}
.y77{bottom:988.304850px;}
.y196{bottom:988.305600px;}
.y12a{bottom:989.805600px;}
.y2a{bottom:990.105000px;}
.y9f{bottom:992.801100px;}
.ydd{bottom:997.041300px;}
.y171{bottom:997.800600px;}
.y1f6{bottom:998.010450px;}
.y14b{bottom:998.282250px;}
.y103{bottom:998.780250px;}
.y1c3{bottom:1003.703100px;}
.y56{bottom:1010.504850px;}
.y76{bottom:1010.804850px;}
.y195{bottom:1010.805600px;}
.y29{bottom:1012.305000px;}
.y9e{bottom:1015.301100px;}
.ybe{bottom:1015.304850px;}
.y1f5{bottom:1017.810450px;}
.y1c2{bottom:1023.803100px;}
.ydc{bottom:1028.671200px;}
.y14a{bottom:1029.912150px;}
.y102{bottom:1030.410150px;}
.y55{bottom:1033.004850px;}
.y75{bottom:1033.304850px;}
.y129{bottom:1033.305600px;}
.y28{bottom:1034.505000px;}
.ybd{bottom:1036.304850px;}
.y1f4{bottom:1037.610450px;}
.y9d{bottom:1037.801100px;}
.y170{bottom:1042.800600px;}
.y1c1{bottom:1043.903100px;}
.y1f0{bottom:1047.803100px;}
.y54{bottom:1055.504850px;}
.y74{bottom:1055.804850px;}
.y128{bottom:1055.805600px;}
.y27{bottom:1056.705000px;}
.ybc{bottom:1057.304850px;}
.y1f3{bottom:1057.410450px;}
.ydb{bottom:1060.301100px;}
.y149{bottom:1061.542050px;}
.y101{bottom:1062.040050px;}
.y16f{bottom:1063.800600px;}
.y1c0{bottom:1064.003100px;}
.y53{bottom:1078.004850px;}
.y73{bottom:1078.304850px;}
.y127{bottom:1078.305600px;}
.y26{bottom:1078.905000px;}
.y9c{bottom:1082.801100px;}
.y1bf{bottom:1084.103100px;}
.y1ef{bottom:1084.703100px;}
.y148{bottom:1093.171950px;}
.y100{bottom:1093.669950px;}
.y1f2{bottom:1098.810450px;}
.y52{bottom:1100.654850px;}
.y72{bottom:1100.804850px;}
.y126{bottom:1100.805600px;}
.y25{bottom:1101.105000px;}
.y9b{bottom:1103.801100px;}
.y1be{bottom:1104.203100px;}
.y16e{bottom:1104.300600px;}
.y4{bottom:1104.502500px;}
.y1ee{bottom:1104.503100px;}
.y1f1{bottom:1121.310450px;}
.y51{bottom:1123.304850px;}
.y24{bottom:1123.305000px;}
.y125{bottom:1123.305600px;}
.y3{bottom:1124.302500px;}
.y1bd{bottom:1124.303100px;}
.y9a{bottom:1124.801100px;}
.y147{bottom:1124.801850px;}
.yff{bottom:1125.300000px;}
.y16d{bottom:1125.300600px;}
.y50{bottom:1176.323550px;}
.y23{bottom:1176.323700px;}
.y124{bottom:1176.324300px;}
.hc{height:29.702256px;}
.h9{height:30.967266px;}
.h2{height:43.989258px;}
.h3{height:45.852539px;}
.hd{height:48.399902px;}
.hf{height:50.941406px;}
.ha{height:50.947266px;}
.h4{height:53.367188px;}
.he{height:53.494629px;}
.h5{height:56.041992px;}
.h10{height:56.390625px;}
.hb{height:58.218750px;}
.h8{height:61.136719px;}
.h7{height:71.326172px;}
.h6{height:91.705078px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x4{left:110.738700px;}
.x2{left:127.559100px;}
.x6{left:154.559100px;}
.x5{left:185.255700px;}
.x3{left:193.355700px;}
.xa{left:517.712700px;}
.x8{left:562.176600px;}
.x9{left:603.177600px;}
.xb{left:635.688300px;}
.x7{left:683.524350px;}
@media print{
.v5{vertical-align:-19.536000pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v4{vertical-align:18.648000pt;}
.v2{vertical-align:21.312000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.013867pt;}
.ls11{letter-spacing:0.293333pt;}
.ls10{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.533333pt;}
.lsc{letter-spacing:0.560000pt;}
.ls2{letter-spacing:2.666667pt;}
.ls9{letter-spacing:3.200000pt;}
.lse{letter-spacing:3.730370pt;}
.ls7{letter-spacing:3.730963pt;}
.ls5{letter-spacing:3.733333pt;}
.ls8{letter-spacing:3.742222pt;}
.lsf{letter-spacing:3.742815pt;}
.ls6{letter-spacing:4.266667pt;}
.ls15{letter-spacing:4.693333pt;}
.lsa{letter-spacing:4.800000pt;}
.ls12{letter-spacing:4.869333pt;}
.ls0{letter-spacing:5.866667pt;}
.ls14{letter-spacing:7.319184pt;}
.ls13{letter-spacing:7.319717pt;}
.ls3{letter-spacing:7.466667pt;}
.ls16{letter-spacing:7.490384pt;}
.ls1{letter-spacing:9.600000pt;}
.ls17{letter-spacing:17.600000pt;}
.wsf{word-spacing:-56.000000pt;}
.ws16{word-spacing:-32.090667pt;}
.ws11{word-spacing:-28.448000pt;}
.ws12{word-spacing:-22.352000pt;}
.ws2{word-spacing:-20.981333pt;}
.ws7{word-spacing:-17.984000pt;}
.ws17{word-spacing:-17.653333pt;}
.ws13{word-spacing:-16.778667pt;}
.ws15{word-spacing:-16.485333pt;}
.wsd{word-spacing:-16.296000pt;}
.ws10{word-spacing:-16.128000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.736000pt;}
.wsb{word-spacing:-15.520000pt;}
.ws5{word-spacing:-14.986667pt;}
.ws14{word-spacing:-14.490667pt;}
.ws1{word-spacing:-13.173333pt;}
.ws3{word-spacing:-10.484672pt;}
.wse{word-spacing:-0.616000pt;}
.wsa{word-spacing:-0.056000pt;}
.wsc{word-spacing:-0.053333pt;}
.ws8{word-spacing:-0.050667pt;}
.ws0{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
._12{margin-left:-18.206400pt;}
._17{margin-left:-17.200000pt;}
._34{margin-left:-15.077333pt;}
._18{margin-left:-12.282667pt;}
._14{margin-left:-11.177481pt;}
._8{margin-left:-9.888000pt;}
._2f{margin-left:-8.752593pt;}
._29{margin-left:-7.690667pt;}
._7{margin-left:-6.677333pt;}
._3{margin-left:-5.760000pt;}
._e{margin-left:-4.853333pt;}
._6{margin-left:-3.813333pt;}
._9{margin-left:-2.304000pt;}
._1{margin-left:-1.008000pt;}
._4{width:1.200000pt;}
._c{width:2.176000pt;}
._16{width:3.264000pt;}
._15{width:4.880000pt;}
._10{width:5.888000pt;}
._b{width:7.466667pt;}
._d{width:8.574815pt;}
._a{width:10.113185pt;}
._11{width:11.840000pt;}
._f{width:13.504000pt;}
._2c{width:15.901630pt;}
._2e{width:18.069333pt;}
._2d{width:19.253333pt;}
._31{width:23.493333pt;}
._30{width:24.672000pt;}
._2b{width:29.120000pt;}
._32{width:34.554667pt;}
._2a{width:35.760373pt;}
._33{width:39.270933pt;}
._35{width:46.874667pt;}
._37{width:48.022400pt;}
._13{width:51.306507pt;}
._36{width:53.449600pt;}
._0{width:61.072000pt;}
._28{width:234.548148pt;}
._1a{width:263.941926pt;}
._2{width:328.185067pt;}
._27{width:373.992889pt;}
._1f{width:378.891852pt;}
._26{width:388.808296pt;}
._1d{width:393.706667pt;}
._1b{width:459.743407pt;}
._24{width:465.753481pt;}
._25{width:493.550815pt;}
._1e{width:517.278815pt;}
._21{width:519.010370pt;}
._19{width:521.180444pt;}
._23{width:532.738963pt;}
._22{width:586.830815pt;}
._5{width:656.272000pt;}
._20{width:704.164148pt;}
._1c{width:729.209481pt;}
.fs7{font-size:31.093333pt;}
.fsc{font-size:32.648000pt;}
.fsd{font-size:34.202667pt;}
.fs6{font-size:37.312000pt;}
.fs8{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:51.627600pt;}
.y2{bottom:51.627733pt;}
.y22{bottom:51.627867pt;}
.y123{bottom:51.628267pt;}
.y4e{bottom:70.560933pt;}
.y1{bottom:70.561067pt;}
.y21{bottom:70.561200pt;}
.y122{bottom:70.561600pt;}
.ybb{bottom:113.385733pt;}
.y20{bottom:113.385867pt;}
.y16c{bottom:113.386400pt;}
.y1bc{bottom:115.642400pt;}
.y194{bottom:116.974800pt;}
.y99{bottom:117.825733pt;}
.y4d{bottom:117.826000pt;}
.yfe{bottom:120.232667pt;}
.y146{bottom:121.685333pt;}
.y121{bottom:121.904400pt;}
.y71{bottom:128.052400pt;}
.y1f{bottom:128.052533pt;}
.y98{bottom:132.283467pt;}
.y16b{bottom:132.493067pt;}
.y1bb{bottom:133.242400pt;}
.y193{bottom:136.974800pt;}
.yfd{bottom:138.899333pt;}
.y1ed{bottom:141.780533pt;}
.y120{bottom:141.904400pt;}
.y1e{bottom:142.719200pt;}
.y4c{bottom:146.893333pt;}
.y97{bottom:146.950133pt;}
.y70{bottom:147.159067pt;}
.y145{bottom:149.800800pt;}
.y1ba{bottom:150.842400pt;}
.y192{bottom:156.974800pt;}
.y1d{bottom:157.385867pt;}
.y1ec{bottom:159.647200pt;}
.y16a{bottom:161.566667pt;}
.yba{bottom:161.616667pt;}
.y96{bottom:161.616800pt;}
.y11f{bottom:161.904400pt;}
.yfc{bottom:167.014800pt;}
.y4b{bottom:167.026667pt;}
.y1b9{bottom:168.442400pt;}
.yda{bottom:172.645467pt;}
.y95{bottom:176.283467pt;}
.y1c{bottom:176.492533pt;}
.y191{bottom:176.974800pt;}
.y1eb{bottom:177.513867pt;}
.y144{bottom:177.916400pt;}
.y169{bottom:180.233333pt;}
.yb9{bottom:180.723467pt;}
.y11e{bottom:181.904400pt;}
.y1b8{bottom:186.042400pt;}
.y4a{bottom:187.160000pt;}
.y94{bottom:190.950133pt;}
.yd9{bottom:191.312133pt;}
.yb8{bottom:195.181067pt;}
.y1ea{bottom:195.380533pt;}
.y190{bottom:196.974800pt;}
.y168{bottom:198.900000pt;}
.y11d{bottom:201.904400pt;}
.y1b7{bottom:203.642400pt;}
.yfb{bottom:205.681467pt;}
.y143{bottom:206.031867pt;}
.y1b{bottom:206.569467pt;}
.y49{bottom:207.293333pt;}
.yb7{bottom:209.847733pt;}
.y93{bottom:210.056800pt;}
.y1e9{bottom:213.247200pt;}
.y18f{bottom:216.974800pt;}
.y167{bottom:217.566667pt;}
.y6f{bottom:219.301333pt;}
.yd8{bottom:219.427600pt;}
.y1b6{bottom:221.242400pt;}
.y11c{bottom:221.904400pt;}
.yfa{bottom:225.681467pt;}
.y1a{bottom:226.569467pt;}
.y48{bottom:227.426667pt;}
.yb6{bottom:228.954400pt;}
.y1e8{bottom:231.113867pt;}
.y142{bottom:234.147333pt;}
.y92{bottom:234.493200pt;}
.y18e{bottom:236.974800pt;}
.y1b5{bottom:238.842400pt;}
.y6e{bottom:239.301333pt;}
.y11b{bottom:241.904400pt;}
.yf9{bottom:245.681467pt;}
.y19{bottom:246.569467pt;}
.yd7{bottom:247.543067pt;}
.y47{bottom:247.560000pt;}
.y1e7{bottom:248.980533pt;}
.y91{bottom:253.159867pt;}
.y166{bottom:256.233333pt;}
.y1b4{bottom:256.442400pt;}
.y18d{bottom:256.974800pt;}
.y6d{bottom:259.301333pt;}
.y141{bottom:262.262800pt;}
.yf8{bottom:265.681467pt;}
.y18{bottom:266.569467pt;}
.y1e6{bottom:266.847200pt;}
.y46{bottom:267.693333pt;}
.y90{bottom:271.826533pt;}
.y1b3{bottom:274.042400pt;}
.yd6{bottom:275.658533pt;}
.y165{bottom:276.233333pt;}
.y18c{bottom:276.974800pt;}
.y6c{bottom:279.301333pt;}
.y11a{bottom:281.904400pt;}
.y1e5{bottom:284.713867pt;}
.yf7{bottom:285.681467pt;}
.y45{bottom:287.826667pt;}
.y140{bottom:290.378400pt;}
.y8f{bottom:290.493200pt;}
.y1b2{bottom:291.642400pt;}
.yd5{bottom:294.325200pt;}
.yb5{bottom:295.464133pt;}
.y164{bottom:296.233333pt;}
.y18b{bottom:296.974800pt;}
.y1e4{bottom:302.580533pt;}
.yf6{bottom:305.681467pt;}
.y44{bottom:307.960000pt;}
.y8e{bottom:309.159867pt;}
.y1b1{bottom:309.242400pt;}
.y119{bottom:309.904400pt;}
.y17{bottom:314.128533pt;}
.yb4{bottom:315.464133pt;}
.y163{bottom:316.233333pt;}
.y18a{bottom:316.974800pt;}
.y13f{bottom:318.493867pt;}
.y1e3{bottom:320.447200pt;}
.yf5{bottom:325.681467pt;}
.y6b{bottom:325.693600pt;}
.y1b0{bottom:326.842400pt;}
.y8d{bottom:327.826533pt;}
.y43{bottom:328.093333pt;}
.yd4{bottom:332.991867pt;}
.yb3{bottom:335.464133pt;}
.y162{bottom:336.233333pt;}
.y189{bottom:336.974800pt;}
.y118{bottom:337.904400pt;}
.y1e2{bottom:338.313867pt;}
.y1af{bottom:344.442400pt;}
.yf4{bottom:345.681467pt;}
.y8c{bottom:346.493200pt;}
.y42{bottom:348.226667pt;}
.yd3{bottom:352.991867pt;}
.y6a{bottom:354.345200pt;}
.yb2{bottom:355.464133pt;}
.y1e1{bottom:356.180533pt;}
.y161{bottom:356.233333pt;}
.y117{bottom:356.571067pt;}
.y188{bottom:356.974800pt;}
.y13e{bottom:357.160533pt;}
.y1ae{bottom:362.042400pt;}
.yf3{bottom:365.681467pt;}
.y41{bottom:368.360000pt;}
.yd2{bottom:372.991867pt;}
.y1e0{bottom:374.047200pt;}
.yb1{bottom:375.464133pt;}
.y187{bottom:376.974800pt;}
.y13d{bottom:377.160533pt;}
.y1ad{bottom:379.642400pt;}
.y69{bottom:382.996667pt;}
.y116{bottom:384.571067pt;}
.y8b{bottom:385.159867pt;}
.yf2{bottom:385.681467pt;}
.y40{bottom:388.360000pt;}
.y1df{bottom:391.913867pt;}
.yd1{bottom:392.991867pt;}
.yb0{bottom:395.464133pt;}
.y160{bottom:396.233333pt;}
.y16{bottom:396.528533pt;}
.y186{bottom:396.974800pt;}
.y13c{bottom:397.160533pt;}
.y1ac{bottom:397.242400pt;}
.y8a{bottom:405.159867pt;}
.yf1{bottom:405.681467pt;}
.y3f{bottom:408.360000pt;}
.y1de{bottom:409.780533pt;}
.y68{bottom:411.648267pt;}
.y115{bottom:412.571067pt;}
.yd0{bottom:412.991867pt;}
.y1ab{bottom:414.842400pt;}
.y15f{bottom:414.900000pt;}
.y15{bottom:416.528533pt;}
.y185{bottom:416.974800pt;}
.y13b{bottom:417.160533pt;}
.y89{bottom:425.159867pt;}
.yf0{bottom:425.681467pt;}
.y1dd{bottom:427.647200pt;}
.y3e{bottom:428.360000pt;}
.y1aa{bottom:432.442400pt;}
.y15e{bottom:433.566667pt;}
.yaf{bottom:435.464133pt;}
.y14{bottom:436.528533pt;}
.y184{bottom:436.974800pt;}
.y67{bottom:440.299867pt;}
.y114{bottom:440.571067pt;}
.y88{bottom:445.159867pt;}
.y1dc{bottom:445.513867pt;}
.yef{bottom:445.681467pt;}
.y3d{bottom:448.360000pt;}
.y1a9{bottom:450.042400pt;}
.y15d{bottom:452.233333pt;}
.ycf{bottom:452.991867pt;}
.y13{bottom:456.528533pt;}
.y183{bottom:456.974800pt;}
.y13a{bottom:457.160533pt;}
.y113{bottom:459.237733pt;}
.y1db{bottom:463.380533pt;}
.y209{bottom:464.720400pt;}
.y87{bottom:465.159867pt;}
.yee{bottom:465.681467pt;}
.y1a8{bottom:467.642400pt;}
.y66{bottom:468.951333pt;}
.y15c{bottom:470.900000pt;}
.y12{bottom:476.528533pt;}
.y182{bottom:476.974800pt;}
.yce{bottom:481.107333pt;}
.y1da{bottom:481.247200pt;}
.y208{bottom:484.720400pt;}
.y86{bottom:485.159867pt;}
.y1a7{bottom:485.242400pt;}
.yed{bottom:485.681467pt;}
.y3c{bottom:487.026667pt;}
.y112{bottom:487.237733pt;}
.y15b{bottom:489.566667pt;}
.yae{bottom:495.464133pt;}
.y11{bottom:496.528533pt;}
.y181{bottom:496.974800pt;}
.y65{bottom:497.602933pt;}
.y1d9{bottom:499.113867pt;}
.y1a6{bottom:502.842400pt;}
.y207{bottom:504.720400pt;}
.y85{bottom:505.159867pt;}
.yec{bottom:505.681467pt;}
.y111{bottom:505.904400pt;}
.ycd{bottom:509.222800pt;}
.yad{bottom:515.464133pt;}
.y10{bottom:516.528533pt;}
.y180{bottom:516.974800pt;}
.y1d8{bottom:516.980533pt;}
.y139{bottom:517.160533pt;}
.y15a{bottom:517.566667pt;}
.y1a5{bottom:520.442400pt;}
.y206{bottom:524.720400pt;}
.y84{bottom:525.159867pt;}
.yeb{bottom:525.681467pt;}
.y64{bottom:526.254400pt;}
.y1d7{bottom:534.847200pt;}
.yac{bottom:535.464133pt;}
.y159{bottom:536.233333pt;}
.yf{bottom:536.528533pt;}
.y17f{bottom:536.974800pt;}
.y138{bottom:537.160533pt;}
.ycc{bottom:537.338267pt;}
.y1a4{bottom:538.042400pt;}
.y3b{bottom:544.360000pt;}
.y110{bottom:544.571067pt;}
.y83{bottom:545.159867pt;}
.yea{bottom:545.681467pt;}
.y1d6{bottom:552.713867pt;}
.y158{bottom:554.900000pt;}
.yab{bottom:555.464133pt;}
.y1a3{bottom:555.642400pt;}
.ycb{bottom:556.004933pt;}
.ye{bottom:556.528533pt;}
.y63{bottom:556.626533pt;}
.y137{bottom:557.160533pt;}
.y3a{bottom:564.360000pt;}
.y10f{bottom:564.571067pt;}
.y82{bottom:565.159867pt;}
.ye9{bottom:565.681467pt;}
.y1d5{bottom:570.580533pt;}
.y1a2{bottom:573.242400pt;}
.y157{bottom:573.566667pt;}
.yaa{bottom:575.464133pt;}
.yd{bottom:576.528533pt;}
.y136{bottom:577.160533pt;}
.y39{bottom:584.093333pt;}
.yca{bottom:584.120400pt;}
.y17e{bottom:584.534000pt;}
.y205{bottom:584.720400pt;}
.y81{bottom:585.159867pt;}
.ye8{bottom:585.681467pt;}
.y1d4{bottom:588.447200pt;}
.y1a1{bottom:590.842400pt;}
.y156{bottom:592.233333pt;}
.ya9{bottom:595.464133pt;}
.yc{bottom:596.528533pt;}
.y135{bottom:597.160533pt;}
.y62{bottom:598.226533pt;}
.y38{bottom:603.826667pt;}
.y10e{bottom:604.571067pt;}
.ye7{bottom:605.681467pt;}
.y1d3{bottom:606.313867pt;}
.yc9{bottom:612.236000pt;}
.ya8{bottom:615.464133pt;}
.yb{bottom:616.528533pt;}
.y61{bottom:618.226533pt;}
.y155{bottom:620.233333pt;}
.y37{bottom:623.560000pt;}
.y1d2{bottom:624.180533pt;}
.y80{bottom:625.159867pt;}
.ye6{bottom:625.681467pt;}
.y10d{bottom:630.796800pt;}
.yc8{bottom:630.902667pt;}
.y1a0{bottom:636.001467pt;}
.ya{bottom:636.528533pt;}
.y134{bottom:637.160533pt;}
.y60{bottom:638.226533pt;}
.y154{bottom:638.900000pt;}
.y204{bottom:640.720400pt;}
.y1d1{bottom:642.047200pt;}
.y36{bottom:643.293333pt;}
.y17d{bottom:646.933867pt;}
.y133{bottom:655.827200pt;}
.y153{bottom:657.566667pt;}
.y5f{bottom:658.226533pt;}
.y203{bottom:658.320400pt;}
.y10c{bottom:658.796800pt;}
.yc7{bottom:659.018133pt;}
.y1d0{bottom:659.913867pt;}
.ya7{bottom:661.689867pt;}
.y35{bottom:663.026667pt;}
.y17c{bottom:666.933867pt;}
.ye5{bottom:669.681467pt;}
.y132{bottom:674.493867pt;}
.y202{bottom:675.920400pt;}
.y152{bottom:676.233333pt;}
.y1cf{bottom:677.780533pt;}
.y5e{bottom:678.226533pt;}
.y34{bottom:682.760000pt;}
.y9{bottom:684.087600pt;}
.ya6{bottom:684.089867pt;}
.y7f{bottom:685.159867pt;}
.y10b{bottom:686.912267pt;}
.y17b{bottom:686.933867pt;}
.yc6{bottom:687.133600pt;}
.y201{bottom:693.520400pt;}
.y1ce{bottom:695.647200pt;}
.ye4{bottom:697.797067pt;}
.y5d{bottom:698.226533pt;}
.y19f{bottom:698.493867pt;}
.y33{bottom:702.493333pt;}
.y131{bottom:702.493867pt;}
.y7e{bottom:705.159867pt;}
.y17a{bottom:706.933867pt;}
.y200{bottom:711.120400pt;}
.y10a{bottom:713.138000pt;}
.y1cd{bottom:713.513867pt;}
.y151{bottom:714.900000pt;}
.yc5{bottom:715.249067pt;}
.y5c{bottom:718.226533pt;}
.y19e{bottom:718.493867pt;}
.y130{bottom:721.160533pt;}
.y32{bottom:722.226667pt;}
.y7d{bottom:725.159867pt;}
.ye3{bottom:725.912400pt;}
.y179{bottom:726.933867pt;}
.y1ff{bottom:728.720400pt;}
.y1cc{bottom:731.380533pt;}
.y109{bottom:731.804667pt;}
.y150{bottom:734.900000pt;}
.y5b{bottom:738.226533pt;}
.y19d{bottom:738.493867pt;}
.y31{bottom:741.960000pt;}
.yc4{bottom:743.364533pt;}
.y1fe{bottom:746.320400pt;}
.y178{bottom:746.933867pt;}
.y12f{bottom:749.160533pt;}
.y1cb{bottom:749.247200pt;}
.y5a{bottom:758.226533pt;}
.y19c{bottom:758.493867pt;}
.y108{bottom:759.804667pt;}
.y30{bottom:761.693333pt;}
.y8{bottom:762.487600pt;}
.ya5{bottom:762.489867pt;}
.y1fd{bottom:763.920400pt;}
.ye2{bottom:764.579067pt;}
.y7c{bottom:765.159867pt;}
.y177{bottom:766.933867pt;}
.y1ca{bottom:767.113867pt;}
.yc3{bottom:771.364533pt;}
.y14f{bottom:774.900000pt;}
.y12e{bottom:777.160533pt;}
.y59{bottom:778.226533pt;}
.y19b{bottom:778.493867pt;}
.y2f{bottom:781.426667pt;}
.y1fc{bottom:781.520400pt;}
.ya4{bottom:782.489867pt;}
.y7b{bottom:783.826533pt;}
.y1c9{bottom:784.980533pt;}
.y176{bottom:786.933867pt;}
.y107{bottom:787.804667pt;}
.ye1{bottom:792.694667pt;}
.y19a{bottom:798.493867pt;}
.y1fb{bottom:799.120400pt;}
.yc2{bottom:799.480000pt;}
.y2e{bottom:801.160000pt;}
.ya3{bottom:802.489867pt;}
.y7a{bottom:802.493200pt;}
.y1c8{bottom:802.847200pt;}
.y14e{bottom:803.015467pt;}
.y12d{bottom:805.160533pt;}
.y175{bottom:806.933867pt;}
.y106{bottom:807.804667pt;}
.ye0{bottom:811.361333pt;}
.y1fa{bottom:816.720400pt;}
.y58{bottom:818.226533pt;}
.y7{bottom:818.487600pt;}
.y199{bottom:818.493867pt;}
.y1c7{bottom:820.713867pt;}
.y2d{bottom:820.893333pt;}
.y79{bottom:821.159867pt;}
.ya2{bottom:822.489867pt;}
.y174{bottom:826.933867pt;}
.yc1{bottom:827.595600pt;}
.y105{bottom:827.804667pt;}
.y14d{bottom:831.131067pt;}
.y12c{bottom:833.160533pt;}
.y1f9{bottom:834.320400pt;}
.y198{bottom:838.493867pt;}
.y1c6{bottom:838.580533pt;}
.ydf{bottom:839.476800pt;}
.y78{bottom:839.826533pt;}
.y2c{bottom:840.626667pt;}
.ya1{bottom:842.489867pt;}
.y173{bottom:846.933867pt;}
.y6{bottom:847.287600pt;}
.y104{bottom:847.804667pt;}
.y1f8{bottom:851.920400pt;}
.yc0{bottom:855.711067pt;}
.y1c5{bottom:856.447200pt;}
.yde{bottom:858.143467pt;}
.y197{bottom:858.493867pt;}
.y14c{bottom:859.246533pt;}
.y2b{bottom:860.360000pt;}
.y12b{bottom:861.160533pt;}
.ya0{bottom:862.489867pt;}
.y172{bottom:866.933867pt;}
.y1f7{bottom:869.520400pt;}
.y1c4{bottom:874.313867pt;}
.ybf{bottom:874.377733pt;}
.y5{bottom:876.087600pt;}
.y57{bottom:878.226533pt;}
.y77{bottom:878.493200pt;}
.y196{bottom:878.493867pt;}
.y12a{bottom:879.827200pt;}
.y2a{bottom:880.093333pt;}
.y9f{bottom:882.489867pt;}
.ydd{bottom:886.258933pt;}
.y171{bottom:886.933867pt;}
.y1f6{bottom:887.120400pt;}
.y14b{bottom:887.362000pt;}
.y103{bottom:887.804667pt;}
.y1c3{bottom:892.180533pt;}
.y56{bottom:898.226533pt;}
.y76{bottom:898.493200pt;}
.y195{bottom:898.493867pt;}
.y29{bottom:899.826667pt;}
.y9e{bottom:902.489867pt;}
.ybe{bottom:902.493200pt;}
.y1f5{bottom:904.720400pt;}
.y1c2{bottom:910.047200pt;}
.ydc{bottom:914.374400pt;}
.y14a{bottom:915.477467pt;}
.y102{bottom:915.920133pt;}
.y55{bottom:918.226533pt;}
.y75{bottom:918.493200pt;}
.y129{bottom:918.493867pt;}
.y28{bottom:919.560000pt;}
.ybd{bottom:921.159867pt;}
.y1f4{bottom:922.320400pt;}
.y9d{bottom:922.489867pt;}
.y170{bottom:926.933867pt;}
.y1c1{bottom:927.913867pt;}
.y1f0{bottom:931.380533pt;}
.y54{bottom:938.226533pt;}
.y74{bottom:938.493200pt;}
.y128{bottom:938.493867pt;}
.y27{bottom:939.293333pt;}
.ybc{bottom:939.826533pt;}
.y1f3{bottom:939.920400pt;}
.ydb{bottom:942.489867pt;}
.y149{bottom:943.592933pt;}
.y101{bottom:944.035600pt;}
.y16f{bottom:945.600533pt;}
.y1c0{bottom:945.780533pt;}
.y53{bottom:958.226533pt;}
.y73{bottom:958.493200pt;}
.y127{bottom:958.493867pt;}
.y26{bottom:959.026667pt;}
.y9c{bottom:962.489867pt;}
.y1bf{bottom:963.647200pt;}
.y1ef{bottom:964.180533pt;}
.y148{bottom:971.708400pt;}
.y100{bottom:972.151067pt;}
.y1f2{bottom:976.720400pt;}
.y52{bottom:978.359867pt;}
.y72{bottom:978.493200pt;}
.y126{bottom:978.493867pt;}
.y25{bottom:978.760000pt;}
.y9b{bottom:981.156533pt;}
.y1be{bottom:981.513867pt;}
.y16e{bottom:981.600533pt;}
.y4{bottom:981.780000pt;}
.y1ee{bottom:981.780533pt;}
.y1f1{bottom:996.720400pt;}
.y51{bottom:998.493200pt;}
.y24{bottom:998.493333pt;}
.y125{bottom:998.493867pt;}
.y3{bottom:999.380000pt;}
.y1bd{bottom:999.380533pt;}
.y9a{bottom:999.823200pt;}
.y147{bottom:999.823867pt;}
.yff{bottom:1000.266667pt;}
.y16d{bottom:1000.267200pt;}
.y50{bottom:1045.620933pt;}
.y23{bottom:1045.621067pt;}
.y124{bottom:1045.621600pt;}
.hc{height:26.402005pt;}
.h9{height:27.526458pt;}
.h2{height:39.101562pt;}
.h3{height:40.757812pt;}
.hd{height:43.022135pt;}
.hf{height:45.281250pt;}
.ha{height:45.286458pt;}
.h4{height:47.437500pt;}
.he{height:47.550781pt;}
.h5{height:49.815104pt;}
.h10{height:50.125000pt;}
.hb{height:51.750000pt;}
.h8{height:54.343750pt;}
.h7{height:63.401042pt;}
.h6{height:81.515625pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x4{left:98.434400pt;}
.x2{left:113.385867pt;}
.x6{left:137.385867pt;}
.x5{left:164.671733pt;}
.x3{left:171.871733pt;}
.xa{left:460.189067pt;}
.x8{left:499.712533pt;}
.x9{left:536.157867pt;}
.xb{left:565.056267pt;}
.x7{left:607.577200pt;}
}




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