
    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_051c6961f4c7c83c340bd1b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_90328534019ea68149ab6212.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_e246f20c2b907ff30a90a064.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_5143e985177c9e0f8c8c8063.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_2950aeb47a9f9c794813ab3a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_4a68e30baaee05e4e3a41339.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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_0f5dab7e617528258070c747.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104492;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_1bd0b09aa8e581151dc631d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.201172;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v7{vertical-align:-41.640000px;}
.v8{vertical-align:-23.760000px;}
.vb{vertical-align:-18.000000px;}
.v2{vertical-align:-5.760000px;}
.va{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.v4{vertical-align:51.000000px;}
.v5{vertical-align:76.320000px;}
.v6{vertical-align:101.820000px;}
.lsf{letter-spacing:-1.548000px;}
.ls1d{letter-spacing:-1.134000px;}
.lsc{letter-spacing:-1.026000px;}
.lsd{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.414600px;}
.ls20{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.262200px;}
.ls29{letter-spacing:-0.181200px;}
.ls6{letter-spacing:-0.109200px;}
.ls21{letter-spacing:-0.108000px;}
.ls13{letter-spacing:-0.106800px;}
.ls1a{letter-spacing:-0.018720px;}
.ls14{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018720px;}
.ls5{letter-spacing:0.027360px;}
.ls26{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.182880px;}
.lse{letter-spacing:0.183000px;}
.ls15{letter-spacing:0.198000px;}
.ls1{letter-spacing:0.208200px;}
.ls1f{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.243600px;}
.ls24{letter-spacing:0.252000px;}
.ls10{letter-spacing:0.256200px;}
.ls1c{letter-spacing:0.262080px;}
.ls18{letter-spacing:0.262200px;}
.ls28{letter-spacing:0.269400px;}
.ls4{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.305400px;}
.ls23{letter-spacing:0.324000px;}
.ls19{letter-spacing:0.413400px;}
.ls1b{letter-spacing:1.122000px;}
.ls1e{letter-spacing:1.548000px;}
.ls17{letter-spacing:3.905280px;}
.ls11{letter-spacing:4.625280px;}
.ls16{letter-spacing:1043.238000px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws0{word-spacing:-26.829480px;}
.ws2{word-spacing:-26.640000px;}
.ws1c{word-spacing:-26.602560px;}
.ws4{word-spacing:-20.304000px;}
.ws3{word-spacing:-20.160000px;}
.ws1f{word-spacing:-19.962720px;}
.ws1e{word-spacing:-18.676920px;}
.wsa{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.305520px;}
.ws1a{word-spacing:-18.152520px;}
.ws7{word-spacing:-18.109320px;}
.wsb{word-spacing:-17.694720px;}
.ws1b{word-spacing:-17.586720px;}
.wsd{word-spacing:-16.613280px;}
.wse{word-spacing:-16.506480px;}
.ws5{word-spacing:-15.812640px;}
.ws25{word-spacing:-15.264000px;}
.ws23{word-spacing:-15.228000px;}
.wsc{word-spacing:-15.226440px;}
.ws24{word-spacing:-15.012000px;}
.ws2c{word-spacing:-14.970240px;}
.ws21{word-spacing:-14.904000px;}
.ws27{word-spacing:-14.652000px;}
.ws26{word-spacing:-14.508000px;}
.ws14{word-spacing:-13.505760px;}
.ws28{word-spacing:-13.410720px;}
.ws2b{word-spacing:-13.229520px;}
.ws1d{word-spacing:-12.731280px;}
.ws16{word-spacing:-12.204000px;}
.ws15{word-spacing:-12.186000px;}
.ws9{word-spacing:-11.609280px;}
.ws22{word-spacing:-10.332000px;}
.ws20{word-spacing:-10.152000px;}
.ws29{word-spacing:-8.650320px;}
.ws2a{word-spacing:-8.406720px;}
.ws1{word-spacing:0.000000px;}
.ws18{word-spacing:0.774000px;}
.ws17{word-spacing:0.792000px;}
.ws13{word-spacing:39.534000px;}
.ws19{word-spacing:71.874000px;}
.ws12{word-spacing:94.194000px;}
.ws10{word-spacing:94.254000px;}
.ws11{word-spacing:94.374000px;}
.wsf{word-spacing:121.578000px;}
._7{margin-left:-18.132000px;}
._9{margin-left:-16.512000px;}
._29{margin-left:-13.727040px;}
._8{margin-left:-10.608000px;}
._2e{margin-left:-6.375840px;}
._5{margin-left:-4.668000px;}
._6{margin-left:-3.480000px;}
._1{margin-left:-2.202480px;}
._3{margin-left:-1.103760px;}
._0{width:1.149120px;}
._2{width:2.270640px;}
._d{width:3.333840px;}
._b{width:4.834800px;}
._c{width:6.313680px;}
._e{width:7.781040px;}
._11{width:9.442080px;}
._14{width:11.148480px;}
._10{width:12.968640px;}
._f{width:14.106240px;}
._1b{width:15.300960px;}
._18{width:17.222160px;}
._16{width:18.815760px;}
._17{width:20.113200px;}
._23{width:21.191520px;}
._13{width:22.581360px;}
._12{width:23.775840px;}
._15{width:25.254720px;}
._19{width:27.224640px;}
._1a{width:28.760880px;}
._1e{width:30.260160px;}
._1c{width:31.530240px;}
._1d{width:33.444720px;}
._1f{width:34.767360px;}
._25{width:35.902800px;}
._28{width:37.549200px;}
._24{width:39.412800px;}
._20{width:40.737600px;}
._21{width:42.211440px;}
._2f{width:43.917120px;}
._30{width:45.891360px;}
._27{width:48.992880px;}
._26{width:50.004720px;}
._2a{width:51.127920px;}
._2b{width:52.153200px;}
._32{width:56.424960px;}
._31{width:58.202640px;}
._2d{width:69.310800px;}
._2c{width:70.340400px;}
._4{width:693.857280px;}
._22{width:710.040000px;}
._a{width:899.604480px;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(255,204,204);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:18.000000px;}
.fsc{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yeb{bottom:4.500000px;}
.yf2{bottom:4.680000px;}
.y182{bottom:7.200000px;}
.y17d{bottom:7.380000px;}
.y17a{bottom:8.640000px;}
.y183{bottom:11.340000px;}
.y17e{bottom:11.520000px;}
.y221{bottom:11.880000px;}
.y227{bottom:13.680000px;}
.y178{bottom:17.100000px;}
.y10e{bottom:17.925000px;}
.y176{bottom:19.440000px;}
.y21f{bottom:19.620000px;}
.y130{bottom:19.695000px;}
.y12a{bottom:20.340000px;}
.y23f{bottom:20.700000px;}
.y236{bottom:21.414000px;}
.y224{bottom:21.420000px;}
.yed{bottom:24.660000px;}
.yea{bottom:24.705000px;}
.y179{bottom:25.740000px;}
.y220{bottom:27.540000px;}
.y237{bottom:29.154000px;}
.y22a{bottom:29.160000px;}
.y225{bottom:29.205000px;}
.y17b{bottom:31.140000px;}
.y12f{bottom:36.285000px;}
.y235{bottom:36.894000px;}
.y129{bottom:36.900000px;}
.y231{bottom:36.945000px;}
.y229{bottom:37.080000px;}
.y223{bottom:37.125000px;}
.y23e{bottom:39.240000px;}
.y10c{bottom:40.755000px;}
.y174{bottom:40.830000px;}
.y238{bottom:44.634000px;}
.y22e{bottom:44.640000px;}
.y232{bottom:44.685000px;}
.y22b{bottom:44.820000px;}
.y226{bottom:44.865000px;}
.y2{bottom:57.420000px;}
.y21c{bottom:57.600000px;}
.y13d{bottom:72.645000px;}
.y158{bottom:73.365000px;}
.y1{bottom:77.580000px;}
.y105{bottom:85.290000px;}
.y133{bottom:90.510000px;}
.y13e{bottom:95.550000px;}
.y159{bottom:96.270000px;}
.y132{bottom:107.070000px;}
.y1e8{bottom:111.060000px;}
.ye8{bottom:112.680000px;}
.y1e{bottom:113.760000px;}
.y3d{bottom:116.100000px;}
.ycf{bottom:116.460000px;}
.y95{bottom:117.720000px;}
.y13f{bottom:118.440000px;}
.y15a{bottom:119.160000px;}
.y10d{bottom:120.060000px;}
.y103{bottom:123.120000px;}
.y131{bottom:123.630000px;}
.y19c{bottom:125.100000px;}
.y106{bottom:129.810000px;}
.y1e2{bottom:129.960000px;}
.yaa{bottom:131.400000px;}
.y13b{bottom:132.480000px;}
.y234{bottom:132.516000px;}
.y127{bottom:135.180000px;}
.y1a0{bottom:135.720000px;}
.y94{bottom:137.700000px;}
.y21b{bottom:139.320000px;}
.y140{bottom:141.330000px;}
.y15b{bottom:142.050000px;}
.ye7{bottom:143.820000px;}
.y1d{bottom:144.720000px;}
.yce{bottom:144.900000px;}
.y23d{bottom:146.196000px;}
.y3c{bottom:147.060000px;}
.y1f0{bottom:147.960000px;}
.y10b{bottom:148.890000px;}
.y1c4{bottom:149.040000px;}
.y5c{bottom:151.200000px;}
.y102{bottom:151.560000px;}
.y93{bottom:154.080000px;}
.y19b{bottom:156.060000px;}
.y21a{bottom:159.480000px;}
.y23c{bottom:159.870000px;}
.ya9{bottom:162.540000px;}
.y13a{bottom:163.440000px;}
.y126{bottom:163.620000px;}
.y141{bottom:164.235000px;}
.y15c{bottom:164.955000px;}
.y1c{bottom:165.420000px;}
.y19f{bottom:166.680000px;}
.y1ef{bottom:167.040000px;}
.y1c3{bottom:167.940000px;}
.y92{bottom:170.460000px;}
.ycd{bottom:173.340000px;}
.y12e{bottom:173.445000px;}
.y23b{bottom:173.730000px;}
.ye6{bottom:174.780000px;}
.y3b{bottom:178.200000px;}
.y219{bottom:179.640000px;}
.y101{bottom:180.000000px;}
.y10a{bottom:180.720000px;}
.y5b{bottom:182.340000px;}
.y1e7{bottom:185.940000px;}
.y1b{bottom:186.120000px;}
.y91{bottom:186.840000px;}
.y107{bottom:187.095000px;}
.y142{bottom:187.125000px;}
.y19a{bottom:187.200000px;}
.y15d{bottom:187.845000px;}
.y23a{bottom:187.950000px;}
.y125{bottom:192.060000px;}
.ya8{bottom:193.530000px;}
.y139{bottom:194.610000px;}
.y19e{bottom:197.850000px;}
.y109{bottom:199.800000px;}
.y218{bottom:199.830000px;}
.y12d{bottom:200.415000px;}
.y233{bottom:201.270000px;}
.ycc{bottom:201.810000px;}
.y90{bottom:203.250000px;}
.y1e1{bottom:204.870000px;}
.ye5{bottom:205.770000px;}
.y1a{bottom:206.850000px;}
.y100{bottom:208.470000px;}
.y3a{bottom:209.190000px;}
.y143{bottom:210.030000px;}
.y15e{bottom:210.750000px;}
.y5a{bottom:213.330000px;}
.y12c{bottom:216.975000px;}
.y199{bottom:218.190000px;}
.y108{bottom:218.880000px;}
.y8f{bottom:219.630000px;}
.y217{bottom:219.990000px;}
.y124{bottom:220.530000px;}
.y1ee{bottom:222.870000px;}
.y1c2{bottom:223.950000px;}
.ya7{bottom:224.670000px;}
.y138{bottom:225.570000px;}
.y19{bottom:227.550000px;}
.y19d{bottom:228.810000px;}
.ycb{bottom:230.250000px;}
.y134{bottom:230.475000px;}
.y144{bottom:232.920000px;}
.y12b{bottom:233.535000px;}
.y15f{bottom:233.640000px;}
.y8e{bottom:236.010000px;}
.ye4{bottom:236.910000px;}
.y216{bottom:240.150000px;}
.y39{bottom:240.330000px;}
.y1ed{bottom:241.950000px;}
.y1c1{bottom:242.850000px;}
.y59{bottom:244.470000px;}
.y18{bottom:248.250000px;}
.y123{bottom:248.970000px;}
.y198{bottom:249.330000px;}
.y8d{bottom:252.390000px;}
.y137{bottom:254.370000px;}
.ya6{bottom:255.630000px;}
.y145{bottom:255.810000px;}
.y160{bottom:256.530000px;}
.yca{bottom:258.690000px;}
.y215{bottom:260.310000px;}
.y1e6{bottom:260.850000px;}
.y1c0{bottom:261.930000px;}
.yff{bottom:265.350000px;}
.ye3{bottom:267.870000px;}
.y8c{bottom:268.770000px;}
.y10f{bottom:270.000000px;}
.y230{bottom:270.030000px;}
.y38{bottom:271.290000px;}
.y58{bottom:275.430000px;}
.y122{bottom:277.410000px;}
.y146{bottom:278.715000px;}
.y17{bottom:279.390000px;}
.y161{bottom:279.435000px;}
.y1e0{bottom:279.930000px;}
.y136{bottom:280.290000px;}
.y8b{bottom:285.150000px;}
.ya5{bottom:286.770000px;}
.yc9{bottom:287.130000px;}
.yfe{bottom:293.970000px;}
.y1bf{bottom:298.830000px;}
.ye2{bottom:299.010000px;}
.y214{bottom:300.450000px;}
.y8a{bottom:301.530000px;}
.y147{bottom:301.605000px;}
.y162{bottom:302.325000px;}
.y37{bottom:302.430000px;}
.y135{bottom:304.590000px;}
.y13c{bottom:305.640000px;}
.y121{bottom:305.850000px;}
.y57{bottom:306.570000px;}
.y16{bottom:310.350000px;}
.y197{bottom:311.430000px;}
.yc8{bottom:315.570000px;}
.y1ec{bottom:316.830000px;}
.ya4{bottom:317.730000px;}
.y89{bottom:317.910000px;}
.y213{bottom:320.610000px;}
.yfd{bottom:322.410000px;}
.y148{bottom:324.510000px;}
.y163{bottom:325.230000px;}
.ye1{bottom:329.970000px;}
.y36{bottom:333.390000px;}
.y88{bottom:334.290000px;}
.y120{bottom:334.470000px;}
.y1df{bottom:335.910000px;}
.y1be{bottom:336.810000px;}
.y56{bottom:337.530000px;}
.y22f{bottom:338.835000px;}
.y212{bottom:340.770000px;}
.y15{bottom:341.490000px;}
.y196{bottom:342.390000px;}
.yc7{bottom:344.010000px;}
.y149{bottom:347.400000px;}
.y164{bottom:348.120000px;}
.ya3{bottom:348.870000px;}
.y87{bottom:350.850000px;}
.y1de{bottom:354.810000px;}
.y211{bottom:360.930000px;}
.ye0{bottom:361.110000px;}
.y11f{bottom:362.910000px;}
.y35{bottom:364.350000px;}
.y86{bottom:367.230000px;}
.y55{bottom:368.670000px;}
.y14a{bottom:370.290000px;}
.y165{bottom:371.010000px;}
.y14{bottom:372.450000px;}
.yc6{bottom:372.630000px;}
.y195{bottom:373.350000px;}
.y1bd{bottom:373.710000px;}
.yfc{bottom:379.290000px;}
.ya2{bottom:379.830000px;}
.y210{bottom:381.090000px;}
.y173{bottom:383.010000px;}
.y85{bottom:383.610000px;}
.y11e{bottom:391.350000px;}
.y1e5{bottom:391.710000px;}
.ydf{bottom:392.070000px;}
.y1bc{bottom:392.790000px;}
.y14b{bottom:393.195000px;}
.y166{bottom:393.915000px;}
.y54{bottom:399.630000px;}
.y84{bottom:399.990000px;}
.yc5{bottom:401.070000px;}
.y20f{bottom:401.250000px;}
.y13{bottom:403.590000px;}
.y194{bottom:404.490000px;}
.y34{bottom:405.750000px;}
.y22d{bottom:407.595000px;}
.yfb{bottom:407.730000px;}
.y1dd{bottom:410.790000px;}
.ya1{bottom:410.970000px;}
.y1bb{bottom:411.690000px;}
.y14c{bottom:416.085000px;}
.y83{bottom:416.370000px;}
.y167{bottom:416.805000px;}
.y11d{bottom:419.790000px;}
.yde{bottom:420.870000px;}
.y20e{bottom:421.410000px;}
.yc4{bottom:429.510000px;}
.y33{bottom:429.690000px;}
.y53{bottom:430.815000px;}
.y82{bottom:432.795000px;}
.y12{bottom:434.595000px;}
.y193{bottom:435.495000px;}
.yfa{bottom:436.215000px;}
.y14d{bottom:438.990000px;}
.y168{bottom:439.710000px;}
.y20d{bottom:441.615000px;}
.ya0{bottom:441.975000px;}
.ydd{bottom:446.835000px;}
.y1eb{bottom:447.735000px;}
.y11c{bottom:448.275000px;}
.y1ba{bottom:448.815000px;}
.y81{bottom:449.175000px;}
.yc3{bottom:457.995000px;}
.y32{bottom:461.055000px;}
.y52{bottom:461.775000px;}
.y14e{bottom:461.880000px;}
.y169{bottom:462.600000px;}
.yf9{bottom:464.655000px;}
.y80{bottom:465.555000px;}
.y11{bottom:465.735000px;}
.y192{bottom:466.635000px;}
.y1dc{bottom:466.815000px;}
.y1b9{bottom:467.715000px;}
.y9f{bottom:473.115000px;}
.ydc{bottom:474.915000px;}
.y22c{bottom:476.385000px;}
.y11b{bottom:476.715000px;}
.y20c{bottom:481.755000px;}
.y7f{bottom:481.935000px;}
.y14f{bottom:484.770000px;}
.yef{bottom:484.815000px;}
.y16a{bottom:485.490000px;}
.y1db{bottom:485.715000px;}
.yc2{bottom:486.435000px;}
.y1b8{bottom:486.615000px;}
.yf8{bottom:492.015000px;}
.y31{bottom:492.375000px;}
.y51{bottom:492.915000px;}
.y191{bottom:497.595000px;}
.y7e{bottom:498.315000px;}
.y10{bottom:501.555000px;}
.y20b{bottom:501.915000px;}
.y9e{bottom:504.075000px;}
.y1da{bottom:504.615000px;}
.y11a{bottom:505.155000px;}
.y150{bottom:507.675000px;}
.y16b{bottom:508.395000px;}
.ydb{bottom:513.075000px;}
.yc1{bottom:514.875000px;}
.yf7{bottom:517.935000px;}
.y20a{bottom:522.075000px;}
.y1ea{bottom:522.615000px;}
.y30{bottom:523.515000px;}
.y1b7{bottom:523.695000px;}
.y50{bottom:523.875000px;}
.y7d{bottom:524.595000px;}
.y190{bottom:527.655000px;}
.y151{bottom:530.565000px;}
.y16c{bottom:531.285000px;}
.y119{bottom:533.595000px;}
.y9d{bottom:535.215000px;}
.y1d9{bottom:541.695000px;}
.yf0{bottom:542.055000px;}
.y209{bottom:542.235000px;}
.y1b6{bottom:542.595000px;}
.yf{bottom:542.955000px;}
.yc0{bottom:543.315000px;}
.yf6{bottom:543.675000px;}
.y228{bottom:545.145000px;}
.y7c{bottom:552.495000px;}
.y152{bottom:553.470000px;}
.y16d{bottom:554.190000px;}
.y2f{bottom:554.835000px;}
.y4f{bottom:555.015000px;}
.yda{bottom:559.695000px;}
.y1d8{bottom:560.595000px;}
.y1b5{bottom:561.675000px;}
.y118{bottom:562.035000px;}
.y208{bottom:562.395000px;}
.y9c{bottom:566.175000px;}
.yf5{bottom:567.975000px;}
.y104{bottom:569.160000px;}
.y7b{bottom:571.395000px;}
.ybf{bottom:571.755000px;}
.y153{bottom:576.360000px;}
.y16e{bottom:577.080000px;}
.y1d7{bottom:579.675000px;}
.y18f{bottom:580.755000px;}
.y207{bottom:582.555000px;}
.ye{bottom:584.355000px;}
.y4e{bottom:585.975000px;}
.y2e{bottom:586.155000px;}
.y7a{bottom:590.115000px;}
.y117{bottom:590.655000px;}
.y9b{bottom:597.135000px;}
.y1e9{bottom:597.675000px;}
.yf3{bottom:598.215000px;}
.y1b4{bottom:598.575000px;}
.yd9{bottom:599.115000px;}
.y154{bottom:599.250000px;}
.y16f{bottom:599.970000px;}
.ybe{bottom:600.195000px;}
.y206{bottom:602.715000px;}
.y18e{bottom:606.675000px;}
.y79{bottom:609.015000px;}
.y222{bottom:613.905000px;}
.y4d{bottom:614.775000px;}
.y1d6{bottom:616.575000px;}
.y2d{bottom:617.475000px;}
.y116{bottom:619.095000px;}
.y155{bottom:622.155000px;}
.y170{bottom:622.875000px;}
.y18d{bottom:624.135000px;}
.yd{bottom:625.755000px;}
.y78{bottom:627.915000px;}
.y9a{bottom:628.275000px;}
.ybd{bottom:628.815000px;}
.y18c{bottom:629.175000px;}
.yd8{bottom:630.255000px;}
.y1d5{bottom:635.475000px;}
.yee{bottom:636.195000px;}
.y1b3{bottom:636.555000px;}
.y4c{bottom:640.695000px;}
.y205{bottom:643.035000px;}
.y156{bottom:645.045000px;}
.y171{bottom:645.765000px;}
.y77{bottom:646.635000px;}
.y115{bottom:647.535000px;}
.y2c{bottom:648.795000px;}
.y1e4{bottom:654.555000px;}
.y18b{bottom:655.455000px;}
.ybc{bottom:657.255000px;}
.y99{bottom:659.235000px;}
.yd7{bottom:661.215000px;}
.y204{bottom:663.195000px;}
.y76{bottom:665.535000px;}
.yc{bottom:667.155000px;}
.y4b{bottom:667.695000px;}
.y157{bottom:667.950000px;}
.y172{bottom:668.670000px;}
.y1d4{bottom:672.585000px;}
.y1b2{bottom:673.485000px;}
.y114{bottom:676.005000px;}
.y2b{bottom:680.145000px;}
.y98{bottom:681.405000px;}
.y18a{bottom:681.765000px;}
.y21e{bottom:682.710000px;}
.y203{bottom:683.205000px;}
.y75{bottom:684.465000px;}
.ybb{bottom:685.725000px;}
.y1d3{bottom:691.485000px;}
.yf1{bottom:692.205000px;}
.yd6{bottom:692.385000px;}
.y1b1{bottom:692.565000px;}
.y4a{bottom:697.245000px;}
.y175{bottom:699.405000px;}
.y74{bottom:703.185000px;}
.y113{bottom:703.365000px;}
.yb{bottom:703.725000px;}
.y189{bottom:708.045000px;}
.y1d2{bottom:710.565000px;}
.y2a{bottom:711.465000px;}
.yba{bottom:714.165000px;}
.y73{bottom:722.085000px;}
.yd5{bottom:723.345000px;}
.y202{bottom:723.525000px;}
.y112{bottom:729.105000px;}
.y1b0{bottom:729.465000px;}
.yec{bottom:730.545000px;}
.y188{bottom:734.145000px;}
.ya{bottom:734.685000px;}
.y29{bottom:735.225000px;}
.y239{bottom:735.450000px;}
.y97{bottom:735.945000px;}
.y72{bottom:740.985000px;}
.yb9{bottom:742.605000px;}
.y201{bottom:743.685000px;}
.y1d1{bottom:747.465000px;}
.y1af{bottom:748.365000px;}
.y49{bottom:749.085000px;}
.y21d{bottom:751.290000px;}
.yd4{bottom:754.485000px;}
.y111{bottom:755.025000px;}
.y71{bottom:759.705000px;}
.y187{bottom:760.425000px;}
.y200{bottom:763.845000px;}
.y9{bottom:765.825000px;}
.y1d0{bottom:766.365000px;}
.y96{bottom:767.085000px;}
.y1ae{bottom:767.445000px;}
.yb8{bottom:771.045000px;}
.y70{bottom:778.605000px;}
.y110{bottom:779.325000px;}
.y128{bottom:781.020000px;}
.y1ff{bottom:784.005000px;}
.yd3{bottom:785.445000px;}
.yf4{bottom:786.165000px;}
.y186{bottom:786.705000px;}
.y8{bottom:793.005000px;}
.y28{bottom:794.625000px;}
.y6f{bottom:797.505000px;}
.y48{bottom:798.045000px;}
.yb7{bottom:799.485000px;}
.y1fe{bottom:804.165000px;}
.y1ad{bottom:804.345000px;}
.y185{bottom:812.985000px;}
.y6e{bottom:816.405000px;}
.yd2{bottom:816.585000px;}
.y1cf{bottom:822.345000px;}
.y1ac{bottom:823.425000px;}
.y1fd{bottom:824.325000px;}
.yb6{bottom:827.925000px;}
.y47{bottom:829.185000px;}
.y6d{bottom:835.125000px;}
.y27{bottom:836.025000px;}
.y184{bottom:839.265000px;}
.y1ce{bottom:841.425000px;}
.y1fc{bottom:844.485000px;}
.yd1{bottom:847.545000px;}
.y6c{bottom:854.025000px;}
.yb5{bottom:856.365000px;}
.y46{bottom:860.145000px;}
.y1ab{bottom:860.325000px;}
.y1fb{bottom:864.465000px;}
.y181{bottom:865.545000px;}
.y6b{bottom:872.925000px;}
.yd0{bottom:874.905000px;}
.y1cd{bottom:878.325000px;}
.y1aa{bottom:879.405000px;}
.ye9{bottom:882.645000px;}
.y1fa{bottom:884.625000px;}
.yb4{bottom:884.985000px;}
.y26{bottom:885.525000px;}
.y45{bottom:891.285000px;}
.y6a{bottom:891.645000px;}
.y1cc{bottom:897.405000px;}
.y1a9{bottom:898.305000px;}
.y1f9{bottom:904.785000px;}
.y69{bottom:910.590000px;}
.yb3{bottom:913.470000px;}
.y1cb{bottom:916.350000px;}
.y180{bottom:917.970000px;}
.y44{bottom:922.290000px;}
.y25{bottom:924.810000px;}
.y1f8{bottom:924.990000px;}
.y68{bottom:929.490000px;}
.y1a8{bottom:935.250000px;}
.yb2{bottom:941.910000px;}
.y17f{bottom:944.250000px;}
.y1f7{bottom:945.150000px;}
.y67{bottom:948.210000px;}
.y1ca{bottom:953.250000px;}
.y43{bottom:953.430000px;}
.y1a7{bottom:954.330000px;}
.y24{bottom:960.990000px;}
.y1f6{bottom:965.310000px;}
.y66{bottom:967.110000px;}
.yb1{bottom:970.350000px;}
.y17c{bottom:970.530000px;}
.y1c9{bottom:972.330000px;}
.y1a6{bottom:973.230000px;}
.y42{bottom:984.390000px;}
.y1f5{bottom:985.470000px;}
.y65{bottom:986.010000px;}
.y1e3{bottom:991.230000px;}
.y177{bottom:996.810000px;}
.y23{bottom:997.170000px;}
.yb0{bottom:998.790000px;}
.y64{bottom:1004.730000px;}
.y1f4{bottom:1005.630000px;}
.y1c8{bottom:1009.230000px;}
.y1a5{bottom:1010.310000px;}
.y41{bottom:1015.530000px;}
.y63{bottom:1023.630000px;}
.y1f3{bottom:1025.790000px;}
.yaf{bottom:1027.230000px;}
.y1c7{bottom:1028.310000px;}
.y1a4{bottom:1029.210000px;}
.y22{bottom:1033.530000px;}
.y7{bottom:1039.110000px;}
.y62{bottom:1042.530000px;}
.y1f2{bottom:1045.950000px;}
.y40{bottom:1046.490000px;}
.y1c6{bottom:1047.210000px;}
.yae{bottom:1055.670000px;}
.y61{bottom:1061.250000px;}
.y6{bottom:1064.850000px;}
.y1f1{bottom:1065.930000px;}
.y1a3{bottom:1066.110000px;}
.y21{bottom:1069.710000px;}
.y3f{bottom:1077.630000px;}
.y60{bottom:1080.150000px;}
.yad{bottom:1084.110000px;}
.y1a2{bottom:1085.190000px;}
.y5{bottom:1090.770000px;}
.y5f{bottom:1099.050000px;}
.y1c5{bottom:1103.190000px;}
.y20{bottom:1105.890000px;}
.y3e{bottom:1108.590000px;}
.yac{bottom:1112.550000px;}
.y4{bottom:1116.690000px;}
.y5e{bottom:1117.950000px;}
.y1a1{bottom:1122.090000px;}
.y1f{bottom:1139.730000px;}
.y240{bottom:1140.990000px;}
.yab{bottom:1141.170000px;}
.y3{bottom:1142.610000px;}
.y5d{bottom:1143.330000px;}
.h1c{height:18.773438px;}
.hd{height:20.160000px;}
.hc{height:20.340000px;}
.h1b{height:25.380000px;}
.h19{height:25.560000px;}
.h1a{height:25.596000px;}
.hb{height:40.320000px;}
.ha{height:40.356000px;}
.h18{height:45.180000px;}
.h22{height:48.436523px;}
.h1f{height:48.960000px;}
.h24{height:50.312812px;}
.hf{height:53.709961px;}
.h20{height:56.320312px;}
.h8{height:59.324063px;}
.h17{height:59.415469px;}
.h12{height:61.189805px;}
.h3{height:62.327813px;}
.h2{height:65.884219px;}
.h23{height:68.040000px;}
.h21{height:68.076000px;}
.h7{height:69.086250px;}
.h13{height:73.722656px;}
.h4{height:75.093750px;}
.h15{height:83.787539px;}
.h6{height:87.859687px;}
.h5{height:99.874688px;}
.h10{height:104.709961px;}
.h9{height:112.640625px;}
.h11{height:155.529961px;}
.h14{height:261.720000px;}
.he{height:302.760000px;}
.h16{height:737.100000px;}
.h1d{height:892.980000px;}
.h1e{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:41.796000px;}
.w1e{width:119.196000px;}
.w21{width:119.736000px;}
.w13{width:119.916000px;}
.w19{width:120.276000px;}
.w4{width:121.140000px;}
.w2a{width:123.516000px;}
.wa{width:147.816000px;}
.we{width:147.960000px;}
.wb{width:148.140000px;}
.wd{width:148.176000px;}
.w29{width:157.530000px;}
.w12{width:158.430000px;}
.w2c{width:158.610000px;}
.w15{width:158.790000px;}
.w23{width:158.970000px;}
.w18{width:159.510000px;}
.w1b{width:161.130000px;}
.w14{width:166.140000px;}
.w6{width:166.170000px;}
.w1a{width:166.320000px;}
.w2b{width:168.480000px;}
.w5{width:168.510000px;}
.w27{width:169.200000px;}
.w1f{width:169.380000px;}
.w3{width:173.730000px;}
.w1c{width:196.770000px;}
.w2d{width:200.910000px;}
.w16{width:201.270000px;}
.w26{width:201.450000px;}
.w1d{width:233.130000px;}
.w17{width:233.310000px;}
.w2e{width:238.710000px;}
.w25{width:239.790000px;}
.w22{width:240.330000px;}
.w20{width:240.870000px;}
.w28{width:250.410000px;}
.w24{width:250.590000px;}
.w8{width:495.720000px;}
.w7{width:585.000000px;}
.w9{width:618.120000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w11{width:1262.879981px;}
.wf{width:1262.880000px;}
.w10{width:1263.000000px;}
.x0{left:0.000000px;}
.x7d{left:7.740000px;}
.x7c{left:9.000000px;}
.x6f{left:10.080000px;}
.x25{left:11.700000px;}
.x7b{left:12.780000px;}
.x1a{left:13.860000px;}
.x7f{left:15.480000px;}
.x79{left:16.560000px;}
.x73{left:17.640000px;}
.x7e{left:19.080000px;}
.x1f{left:20.520000px;}
.x83{left:21.600000px;}
.x22{left:22.680000px;}
.x26{left:24.705000px;}
.x1c{left:26.100000px;}
.x82{left:27.180000px;}
.x84{left:28.620000px;}
.x77{left:30.456000px;}
.x32{left:31.785000px;}
.x1b{left:33.120000px;}
.x24{left:34.785000px;}
.x67{left:36.000000px;}
.x5e{left:37.110000px;}
.x8d{left:38.160000px;}
.x68{left:39.234000px;}
.x98{left:40.350000px;}
.x1d{left:41.400000px;}
.x66{left:43.200000px;}
.x85{left:44.310000px;}
.x20{left:45.540000px;}
.x75{left:46.980000px;}
.x31{left:48.600000px;}
.x78{left:50.250000px;}
.x91{left:52.200000px;}
.x8b{left:53.820000px;}
.x7a{left:54.930000px;}
.x5c{left:56.550000px;}
.x2a{left:58.860000px;}
.x90{left:60.120000px;}
.x99{left:61.380000px;}
.x38{left:63.030000px;}
.x37{left:64.470000px;}
.x8a{left:66.270000px;}
.x80{left:67.860000px;}
.x57{left:69.555000px;}
.x93{left:72.180000px;}
.x8c{left:74.160000px;}
.x97{left:75.420000px;}
.x9a{left:79.020000px;}
.x94{left:80.280000px;}
.x81{left:82.080000px;}
.x59{left:83.550000px;}
.x51{left:84.675000px;}
.x5d{left:86.040000px;}
.x95{left:87.120000px;}
.x5a{left:89.130000px;}
.x58{left:90.390000px;}
.x52{left:91.545000px;}
.x50{left:93.390000px;}
.x55{left:94.470000px;}
.x9b{left:98.460000px;}
.x56{left:99.825000px;}
.x5b{left:102.780000px;}
.x53{left:105.195000px;}
.x6e{left:106.379981px;}
.x60{left:107.820000px;}
.x54{left:111.390000px;}
.x2{left:127.655987px;}
.x3f{left:136.980000px;}
.x2b{left:139.425000px;}
.x13{left:148.895987px;}
.x29{left:153.900000px;}
.x6b{left:156.449987px;}
.x3d{left:162.540000px;}
.x19{left:165.450000px;}
.x34{left:173.055000px;}
.x2c{left:176.295000px;}
.x40{left:181.875000px;}
.x41{left:187.950000px;}
.x42{left:194.040000px;}
.x36{left:197.820000px;}
.x48{left:200.160000px;}
.x43{left:206.250000px;}
.x44{left:212.325000px;}
.x2d{left:216.570000px;}
.x45{left:218.415000px;}
.x46{left:221.070000px;}
.x49{left:230.610000px;}
.x3b{left:234.150000px;}
.x18{left:236.009987px;}
.x7{left:241.229987px;}
.x4a{left:254.955000px;}
.x3c{left:256.110000px;}
.x3a{left:257.550000px;}
.x4b{left:261.075000px;}
.x6{left:264.674987px;}
.x70{left:266.250000px;}
.x86{left:267.330000px;}
.x61{left:269.460000px;}
.x5{left:273.854987px;}
.x8{left:277.094987px;}
.x4e{left:279.330000px;}
.x33{left:282.450000px;}
.x4c{left:285.405000px;}
.x5f{left:289.830000px;}
.x4d{left:291.525000px;}
.x2e{left:297.150000px;}
.xa{left:310.574987px;}
.x9{left:316.514987px;}
.x47{left:324.645000px;}
.x2f{left:337.425000px;}
.x17{left:342.614987px;}
.xb{left:344.954987px;}
.x69{left:349.814987px;}
.x14{left:353.234987px;}
.x15{left:355.934987px;}
.x10{left:357.554987px;}
.x6a{left:359.894987px;}
.xc{left:360.974987px;}
.x27{left:363.854987px;}
.xd{left:376.994987px;}
.x62{left:379.874987px;}
.x71{left:386.895000px;}
.x87{left:388.335000px;}
.x9c{left:389.775000px;}
.x12{left:393.554987px;}
.x6c{left:403.814987px;}
.xf{left:405.794987px;}
.x39{left:406.905000px;}
.x63{left:425.775000px;}
.x11{left:438.044987px;}
.x3{left:446.504987px;}
.x64{left:468.285000px;}
.x4f{left:504.720000px;}
.x30{left:538.890000px;}
.x1e{left:550.905000px;}
.x72{left:553.755000px;}
.x88{left:555.375000px;}
.x92{left:556.815000px;}
.x9d{left:558.975000px;}
.x23{left:584.925000px;}
.x4{left:597.344987px;}
.x21{left:607.470000px;}
.x65{left:617.190000px;}
.x35{left:695.129987px;}
.x74{left:713.265000px;}
.x8e{left:715.785000px;}
.x89{left:717.225000px;}
.x9e{left:718.305000px;}
.x28{left:739.049987px;}
.x16{left:748.769987px;}
.x3e{left:755.969987px;}
.xe{left:757.229987px;}
.x1{left:765.509987px;}
.x76{left:915.270000px;}
.x8f{left:917.790000px;}
.x96{left:918.870000px;}
.x9f{left:919.950000px;}
.x6d{left:1139.939981px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v7{vertical-align:-37.013333pt;}
.v8{vertical-align:-21.120000pt;}
.vb{vertical-align:-16.000000pt;}
.v2{vertical-align:-5.120000pt;}
.va{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.v4{vertical-align:45.333333pt;}
.v5{vertical-align:67.840000pt;}
.v6{vertical-align:90.506667pt;}
.lsf{letter-spacing:-1.376000pt;}
.ls1d{letter-spacing:-1.008000pt;}
.lsc{letter-spacing:-0.912000pt;}
.lsd{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.368533pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls29{letter-spacing:-0.161067pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls1a{letter-spacing:-0.016640pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016640pt;}
.ls5{letter-spacing:0.024320pt;}
.ls26{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.162560pt;}
.lse{letter-spacing:0.162667pt;}
.ls15{letter-spacing:0.176000pt;}
.ls1{letter-spacing:0.185067pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.216533pt;}
.ls24{letter-spacing:0.224000pt;}
.ls10{letter-spacing:0.227733pt;}
.ls1c{letter-spacing:0.232960pt;}
.ls18{letter-spacing:0.233067pt;}
.ls28{letter-spacing:0.239467pt;}
.ls4{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.271467pt;}
.ls23{letter-spacing:0.288000pt;}
.ls19{letter-spacing:0.367467pt;}
.ls1b{letter-spacing:0.997333pt;}
.ls1e{letter-spacing:1.376000pt;}
.ls17{letter-spacing:3.471360pt;}
.ls11{letter-spacing:4.111360pt;}
.ls16{letter-spacing:927.322667pt;}
.ws8{word-spacing:-58.880000pt;}
.ws0{word-spacing:-23.848427pt;}
.ws2{word-spacing:-23.680000pt;}
.ws1c{word-spacing:-23.646720pt;}
.ws4{word-spacing:-18.048000pt;}
.ws3{word-spacing:-17.920000pt;}
.ws1f{word-spacing:-17.744640pt;}
.ws1e{word-spacing:-16.601707pt;}
.wsa{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.271573pt;}
.ws1a{word-spacing:-16.135573pt;}
.ws7{word-spacing:-16.097173pt;}
.wsb{word-spacing:-15.728640pt;}
.ws1b{word-spacing:-15.632640pt;}
.wsd{word-spacing:-14.767360pt;}
.wse{word-spacing:-14.672427pt;}
.ws5{word-spacing:-14.055680pt;}
.ws25{word-spacing:-13.568000pt;}
.ws23{word-spacing:-13.536000pt;}
.wsc{word-spacing:-13.534613pt;}
.ws24{word-spacing:-13.344000pt;}
.ws2c{word-spacing:-13.306880pt;}
.ws21{word-spacing:-13.248000pt;}
.ws27{word-spacing:-13.024000pt;}
.ws26{word-spacing:-12.896000pt;}
.ws14{word-spacing:-12.005120pt;}
.ws28{word-spacing:-11.920640pt;}
.ws2b{word-spacing:-11.759573pt;}
.ws1d{word-spacing:-11.316693pt;}
.ws16{word-spacing:-10.848000pt;}
.ws15{word-spacing:-10.832000pt;}
.ws9{word-spacing:-10.319360pt;}
.ws22{word-spacing:-9.184000pt;}
.ws20{word-spacing:-9.024000pt;}
.ws29{word-spacing:-7.689173pt;}
.ws2a{word-spacing:-7.472640pt;}
.ws1{word-spacing:0.000000pt;}
.ws18{word-spacing:0.688000pt;}
.ws17{word-spacing:0.704000pt;}
.ws13{word-spacing:35.141333pt;}
.ws19{word-spacing:63.888000pt;}
.ws12{word-spacing:83.728000pt;}
.ws10{word-spacing:83.781333pt;}
.ws11{word-spacing:83.888000pt;}
.wsf{word-spacing:108.069333pt;}
._7{margin-left:-16.117333pt;}
._9{margin-left:-14.677333pt;}
._29{margin-left:-12.201813pt;}
._8{margin-left:-9.429333pt;}
._2e{margin-left:-5.667413pt;}
._5{margin-left:-4.149333pt;}
._6{margin-left:-3.093333pt;}
._1{margin-left:-1.957760pt;}
._3{margin-left:-0.981120pt;}
._0{width:1.021440pt;}
._2{width:2.018347pt;}
._d{width:2.963413pt;}
._b{width:4.297600pt;}
._c{width:5.612160pt;}
._e{width:6.916480pt;}
._11{width:8.392960pt;}
._14{width:9.909760pt;}
._10{width:11.527680pt;}
._f{width:12.538880pt;}
._1b{width:13.600853pt;}
._18{width:15.308587pt;}
._16{width:16.725120pt;}
._17{width:17.878400pt;}
._23{width:18.836907pt;}
._13{width:20.072320pt;}
._12{width:21.134080pt;}
._15{width:22.448640pt;}
._19{width:24.199680pt;}
._1a{width:25.565227pt;}
._1e{width:26.897920pt;}
._1c{width:28.026880pt;}
._1d{width:29.728640pt;}
._1f{width:30.904320pt;}
._25{width:31.913600pt;}
._28{width:33.377067pt;}
._24{width:35.033600pt;}
._20{width:36.211200pt;}
._21{width:37.521280pt;}
._2f{width:39.037440pt;}
._30{width:40.792320pt;}
._27{width:43.549227pt;}
._26{width:44.448640pt;}
._2a{width:45.447040pt;}
._2b{width:46.358400pt;}
._32{width:50.155520pt;}
._31{width:51.735680pt;}
._2d{width:61.609600pt;}
._2c{width:62.524800pt;}
._4{width:616.762027pt;}
._22{width:631.146667pt;}
._a{width:799.648427pt;}
.fs9{font-size:16.000000pt;}
.fsc{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:4.000000pt;}
.yf2{bottom:4.160000pt;}
.y182{bottom:6.400000pt;}
.y17d{bottom:6.560000pt;}
.y17a{bottom:7.680000pt;}
.y183{bottom:10.080000pt;}
.y17e{bottom:10.240000pt;}
.y221{bottom:10.560000pt;}
.y227{bottom:12.160000pt;}
.y178{bottom:15.200000pt;}
.y10e{bottom:15.933333pt;}
.y176{bottom:17.280000pt;}
.y21f{bottom:17.440000pt;}
.y130{bottom:17.506667pt;}
.y12a{bottom:18.080000pt;}
.y23f{bottom:18.400000pt;}
.y236{bottom:19.034667pt;}
.y224{bottom:19.040000pt;}
.yed{bottom:21.920000pt;}
.yea{bottom:21.960000pt;}
.y179{bottom:22.880000pt;}
.y220{bottom:24.480000pt;}
.y237{bottom:25.914667pt;}
.y22a{bottom:25.920000pt;}
.y225{bottom:25.960000pt;}
.y17b{bottom:27.680000pt;}
.y12f{bottom:32.253333pt;}
.y235{bottom:32.794667pt;}
.y129{bottom:32.800000pt;}
.y231{bottom:32.840000pt;}
.y229{bottom:32.960000pt;}
.y223{bottom:33.000000pt;}
.y23e{bottom:34.880000pt;}
.y10c{bottom:36.226667pt;}
.y174{bottom:36.293333pt;}
.y238{bottom:39.674667pt;}
.y22e{bottom:39.680000pt;}
.y232{bottom:39.720000pt;}
.y22b{bottom:39.840000pt;}
.y226{bottom:39.880000pt;}
.y2{bottom:51.040000pt;}
.y21c{bottom:51.200000pt;}
.y13d{bottom:64.573333pt;}
.y158{bottom:65.213333pt;}
.y1{bottom:68.960000pt;}
.y105{bottom:75.813333pt;}
.y133{bottom:80.453333pt;}
.y13e{bottom:84.933333pt;}
.y159{bottom:85.573333pt;}
.y132{bottom:95.173333pt;}
.y1e8{bottom:98.720000pt;}
.ye8{bottom:100.160000pt;}
.y1e{bottom:101.120000pt;}
.y3d{bottom:103.200000pt;}
.ycf{bottom:103.520000pt;}
.y95{bottom:104.640000pt;}
.y13f{bottom:105.280000pt;}
.y15a{bottom:105.920000pt;}
.y10d{bottom:106.720000pt;}
.y103{bottom:109.440000pt;}
.y131{bottom:109.893333pt;}
.y19c{bottom:111.200000pt;}
.y106{bottom:115.386667pt;}
.y1e2{bottom:115.520000pt;}
.yaa{bottom:116.800000pt;}
.y13b{bottom:117.760000pt;}
.y234{bottom:117.792000pt;}
.y127{bottom:120.160000pt;}
.y1a0{bottom:120.640000pt;}
.y94{bottom:122.400000pt;}
.y21b{bottom:123.840000pt;}
.y140{bottom:125.626667pt;}
.y15b{bottom:126.266667pt;}
.ye7{bottom:127.840000pt;}
.y1d{bottom:128.640000pt;}
.yce{bottom:128.800000pt;}
.y23d{bottom:129.952000pt;}
.y3c{bottom:130.720000pt;}
.y1f0{bottom:131.520000pt;}
.y10b{bottom:132.346667pt;}
.y1c4{bottom:132.480000pt;}
.y5c{bottom:134.400000pt;}
.y102{bottom:134.720000pt;}
.y93{bottom:136.960000pt;}
.y19b{bottom:138.720000pt;}
.y21a{bottom:141.760000pt;}
.y23c{bottom:142.106667pt;}
.ya9{bottom:144.480000pt;}
.y13a{bottom:145.280000pt;}
.y126{bottom:145.440000pt;}
.y141{bottom:145.986667pt;}
.y15c{bottom:146.626667pt;}
.y1c{bottom:147.040000pt;}
.y19f{bottom:148.160000pt;}
.y1ef{bottom:148.480000pt;}
.y1c3{bottom:149.280000pt;}
.y92{bottom:151.520000pt;}
.ycd{bottom:154.080000pt;}
.y12e{bottom:154.173333pt;}
.y23b{bottom:154.426667pt;}
.ye6{bottom:155.360000pt;}
.y3b{bottom:158.400000pt;}
.y219{bottom:159.680000pt;}
.y101{bottom:160.000000pt;}
.y10a{bottom:160.640000pt;}
.y5b{bottom:162.080000pt;}
.y1e7{bottom:165.280000pt;}
.y1b{bottom:165.440000pt;}
.y91{bottom:166.080000pt;}
.y107{bottom:166.306667pt;}
.y142{bottom:166.333333pt;}
.y19a{bottom:166.400000pt;}
.y15d{bottom:166.973333pt;}
.y23a{bottom:167.066667pt;}
.y125{bottom:170.720000pt;}
.ya8{bottom:172.026667pt;}
.y139{bottom:172.986667pt;}
.y19e{bottom:175.866667pt;}
.y109{bottom:177.600000pt;}
.y218{bottom:177.626667pt;}
.y12d{bottom:178.146667pt;}
.y233{bottom:178.906667pt;}
.ycc{bottom:179.386667pt;}
.y90{bottom:180.666667pt;}
.y1e1{bottom:182.106667pt;}
.ye5{bottom:182.906667pt;}
.y1a{bottom:183.866667pt;}
.y100{bottom:185.306667pt;}
.y3a{bottom:185.946667pt;}
.y143{bottom:186.693333pt;}
.y15e{bottom:187.333333pt;}
.y5a{bottom:189.626667pt;}
.y12c{bottom:192.866667pt;}
.y199{bottom:193.946667pt;}
.y108{bottom:194.560000pt;}
.y8f{bottom:195.226667pt;}
.y217{bottom:195.546667pt;}
.y124{bottom:196.026667pt;}
.y1ee{bottom:198.106667pt;}
.y1c2{bottom:199.066667pt;}
.ya7{bottom:199.706667pt;}
.y138{bottom:200.506667pt;}
.y19{bottom:202.266667pt;}
.y19d{bottom:203.386667pt;}
.ycb{bottom:204.666667pt;}
.y134{bottom:204.866667pt;}
.y144{bottom:207.040000pt;}
.y12b{bottom:207.586667pt;}
.y15f{bottom:207.680000pt;}
.y8e{bottom:209.786667pt;}
.ye4{bottom:210.586667pt;}
.y216{bottom:213.466667pt;}
.y39{bottom:213.626667pt;}
.y1ed{bottom:215.066667pt;}
.y1c1{bottom:215.866667pt;}
.y59{bottom:217.306667pt;}
.y18{bottom:220.666667pt;}
.y123{bottom:221.306667pt;}
.y198{bottom:221.626667pt;}
.y8d{bottom:224.346667pt;}
.y137{bottom:226.106667pt;}
.ya6{bottom:227.226667pt;}
.y145{bottom:227.386667pt;}
.y160{bottom:228.026667pt;}
.yca{bottom:229.946667pt;}
.y215{bottom:231.386667pt;}
.y1e6{bottom:231.866667pt;}
.y1c0{bottom:232.826667pt;}
.yff{bottom:235.866667pt;}
.ye3{bottom:238.106667pt;}
.y8c{bottom:238.906667pt;}
.y10f{bottom:240.000000pt;}
.y230{bottom:240.026667pt;}
.y38{bottom:241.146667pt;}
.y58{bottom:244.826667pt;}
.y122{bottom:246.586667pt;}
.y146{bottom:247.746667pt;}
.y17{bottom:248.346667pt;}
.y161{bottom:248.386667pt;}
.y1e0{bottom:248.826667pt;}
.y136{bottom:249.146667pt;}
.y8b{bottom:253.466667pt;}
.ya5{bottom:254.906667pt;}
.yc9{bottom:255.226667pt;}
.yfe{bottom:261.306667pt;}
.y1bf{bottom:265.626667pt;}
.ye2{bottom:265.786667pt;}
.y214{bottom:267.066667pt;}
.y8a{bottom:268.026667pt;}
.y147{bottom:268.093333pt;}
.y162{bottom:268.733333pt;}
.y37{bottom:268.826667pt;}
.y135{bottom:270.746667pt;}
.y13c{bottom:271.680000pt;}
.y121{bottom:271.866667pt;}
.y57{bottom:272.506667pt;}
.y16{bottom:275.866667pt;}
.y197{bottom:276.826667pt;}
.yc8{bottom:280.506667pt;}
.y1ec{bottom:281.626667pt;}
.ya4{bottom:282.426667pt;}
.y89{bottom:282.586667pt;}
.y213{bottom:284.986667pt;}
.yfd{bottom:286.586667pt;}
.y148{bottom:288.453333pt;}
.y163{bottom:289.093333pt;}
.ye1{bottom:293.306667pt;}
.y36{bottom:296.346667pt;}
.y88{bottom:297.146667pt;}
.y120{bottom:297.306667pt;}
.y1df{bottom:298.586667pt;}
.y1be{bottom:299.386667pt;}
.y56{bottom:300.026667pt;}
.y22f{bottom:301.186667pt;}
.y212{bottom:302.906667pt;}
.y15{bottom:303.546667pt;}
.y196{bottom:304.346667pt;}
.yc7{bottom:305.786667pt;}
.y149{bottom:308.800000pt;}
.y164{bottom:309.440000pt;}
.ya3{bottom:310.106667pt;}
.y87{bottom:311.866667pt;}
.y1de{bottom:315.386667pt;}
.y211{bottom:320.826667pt;}
.ye0{bottom:320.986667pt;}
.y11f{bottom:322.586667pt;}
.y35{bottom:323.866667pt;}
.y86{bottom:326.426667pt;}
.y55{bottom:327.706667pt;}
.y14a{bottom:329.146667pt;}
.y165{bottom:329.786667pt;}
.y14{bottom:331.066667pt;}
.yc6{bottom:331.226667pt;}
.y195{bottom:331.866667pt;}
.y1bd{bottom:332.186667pt;}
.yfc{bottom:337.146667pt;}
.ya2{bottom:337.626667pt;}
.y210{bottom:338.746667pt;}
.y173{bottom:340.453333pt;}
.y85{bottom:340.986667pt;}
.y11e{bottom:347.866667pt;}
.y1e5{bottom:348.186667pt;}
.ydf{bottom:348.506667pt;}
.y1bc{bottom:349.146667pt;}
.y14b{bottom:349.506667pt;}
.y166{bottom:350.146667pt;}
.y54{bottom:355.226667pt;}
.y84{bottom:355.546667pt;}
.yc5{bottom:356.506667pt;}
.y20f{bottom:356.666667pt;}
.y13{bottom:358.746667pt;}
.y194{bottom:359.546667pt;}
.y34{bottom:360.666667pt;}
.y22d{bottom:362.306667pt;}
.yfb{bottom:362.426667pt;}
.y1dd{bottom:365.146667pt;}
.ya1{bottom:365.306667pt;}
.y1bb{bottom:365.946667pt;}
.y14c{bottom:369.853333pt;}
.y83{bottom:370.106667pt;}
.y167{bottom:370.493333pt;}
.y11d{bottom:373.146667pt;}
.yde{bottom:374.106667pt;}
.y20e{bottom:374.586667pt;}
.yc4{bottom:381.786667pt;}
.y33{bottom:381.946667pt;}
.y53{bottom:382.946667pt;}
.y82{bottom:384.706667pt;}
.y12{bottom:386.306667pt;}
.y193{bottom:387.106667pt;}
.yfa{bottom:387.746667pt;}
.y14d{bottom:390.213333pt;}
.y168{bottom:390.853333pt;}
.y20d{bottom:392.546667pt;}
.ya0{bottom:392.866667pt;}
.ydd{bottom:397.186667pt;}
.y1eb{bottom:397.986667pt;}
.y11c{bottom:398.466667pt;}
.y1ba{bottom:398.946667pt;}
.y81{bottom:399.266667pt;}
.yc3{bottom:407.106667pt;}
.y32{bottom:409.826667pt;}
.y52{bottom:410.466667pt;}
.y14e{bottom:410.560000pt;}
.y169{bottom:411.200000pt;}
.yf9{bottom:413.026667pt;}
.y80{bottom:413.826667pt;}
.y11{bottom:413.986667pt;}
.y192{bottom:414.786667pt;}
.y1dc{bottom:414.946667pt;}
.y1b9{bottom:415.746667pt;}
.y9f{bottom:420.546667pt;}
.ydc{bottom:422.146667pt;}
.y22c{bottom:423.453333pt;}
.y11b{bottom:423.746667pt;}
.y20c{bottom:428.226667pt;}
.y7f{bottom:428.386667pt;}
.y14f{bottom:430.906667pt;}
.yef{bottom:430.946667pt;}
.y16a{bottom:431.546667pt;}
.y1db{bottom:431.746667pt;}
.yc2{bottom:432.386667pt;}
.y1b8{bottom:432.546667pt;}
.yf8{bottom:437.346667pt;}
.y31{bottom:437.666667pt;}
.y51{bottom:438.146667pt;}
.y191{bottom:442.306667pt;}
.y7e{bottom:442.946667pt;}
.y10{bottom:445.826667pt;}
.y20b{bottom:446.146667pt;}
.y9e{bottom:448.066667pt;}
.y1da{bottom:448.546667pt;}
.y11a{bottom:449.026667pt;}
.y150{bottom:451.266667pt;}
.y16b{bottom:451.906667pt;}
.ydb{bottom:456.066667pt;}
.yc1{bottom:457.666667pt;}
.yf7{bottom:460.386667pt;}
.y20a{bottom:464.066667pt;}
.y1ea{bottom:464.546667pt;}
.y30{bottom:465.346667pt;}
.y1b7{bottom:465.506667pt;}
.y50{bottom:465.666667pt;}
.y7d{bottom:466.306667pt;}
.y190{bottom:469.026667pt;}
.y151{bottom:471.613333pt;}
.y16c{bottom:472.253333pt;}
.y119{bottom:474.306667pt;}
.y9d{bottom:475.746667pt;}
.y1d9{bottom:481.506667pt;}
.yf0{bottom:481.826667pt;}
.y209{bottom:481.986667pt;}
.y1b6{bottom:482.306667pt;}
.yf{bottom:482.626667pt;}
.yc0{bottom:482.946667pt;}
.yf6{bottom:483.266667pt;}
.y228{bottom:484.573333pt;}
.y7c{bottom:491.106667pt;}
.y152{bottom:491.973333pt;}
.y16d{bottom:492.613333pt;}
.y2f{bottom:493.186667pt;}
.y4f{bottom:493.346667pt;}
.yda{bottom:497.506667pt;}
.y1d8{bottom:498.306667pt;}
.y1b5{bottom:499.266667pt;}
.y118{bottom:499.586667pt;}
.y208{bottom:499.906667pt;}
.y9c{bottom:503.266667pt;}
.yf5{bottom:504.866667pt;}
.y104{bottom:505.920000pt;}
.y7b{bottom:507.906667pt;}
.ybf{bottom:508.226667pt;}
.y153{bottom:512.320000pt;}
.y16e{bottom:512.960000pt;}
.y1d7{bottom:515.266667pt;}
.y18f{bottom:516.226667pt;}
.y207{bottom:517.826667pt;}
.ye{bottom:519.426667pt;}
.y4e{bottom:520.866667pt;}
.y2e{bottom:521.026667pt;}
.y7a{bottom:524.546667pt;}
.y117{bottom:525.026667pt;}
.y9b{bottom:530.786667pt;}
.y1e9{bottom:531.266667pt;}
.yf3{bottom:531.746667pt;}
.y1b4{bottom:532.066667pt;}
.yd9{bottom:532.546667pt;}
.y154{bottom:532.666667pt;}
.y16f{bottom:533.306667pt;}
.ybe{bottom:533.506667pt;}
.y206{bottom:535.746667pt;}
.y18e{bottom:539.266667pt;}
.y79{bottom:541.346667pt;}
.y222{bottom:545.693333pt;}
.y4d{bottom:546.466667pt;}
.y1d6{bottom:548.066667pt;}
.y2d{bottom:548.866667pt;}
.y116{bottom:550.306667pt;}
.y155{bottom:553.026667pt;}
.y170{bottom:553.666667pt;}
.y18d{bottom:554.786667pt;}
.yd{bottom:556.226667pt;}
.y78{bottom:558.146667pt;}
.y9a{bottom:558.466667pt;}
.ybd{bottom:558.946667pt;}
.y18c{bottom:559.266667pt;}
.yd8{bottom:560.226667pt;}
.y1d5{bottom:564.866667pt;}
.yee{bottom:565.506667pt;}
.y1b3{bottom:565.826667pt;}
.y4c{bottom:569.506667pt;}
.y205{bottom:571.586667pt;}
.y156{bottom:573.373333pt;}
.y171{bottom:574.013333pt;}
.y77{bottom:574.786667pt;}
.y115{bottom:575.586667pt;}
.y2c{bottom:576.706667pt;}
.y1e4{bottom:581.826667pt;}
.y18b{bottom:582.626667pt;}
.ybc{bottom:584.226667pt;}
.y99{bottom:585.986667pt;}
.yd7{bottom:587.746667pt;}
.y204{bottom:589.506667pt;}
.y76{bottom:591.586667pt;}
.yc{bottom:593.026667pt;}
.y4b{bottom:593.506667pt;}
.y157{bottom:593.733333pt;}
.y172{bottom:594.373333pt;}
.y1d4{bottom:597.853333pt;}
.y1b2{bottom:598.653333pt;}
.y114{bottom:600.893333pt;}
.y2b{bottom:604.573333pt;}
.y98{bottom:605.693333pt;}
.y18a{bottom:606.013333pt;}
.y21e{bottom:606.853333pt;}
.y203{bottom:607.293333pt;}
.y75{bottom:608.413333pt;}
.ybb{bottom:609.533333pt;}
.y1d3{bottom:614.653333pt;}
.yf1{bottom:615.293333pt;}
.yd6{bottom:615.453333pt;}
.y1b1{bottom:615.613333pt;}
.y4a{bottom:619.773333pt;}
.y175{bottom:621.693333pt;}
.y74{bottom:625.053333pt;}
.y113{bottom:625.213333pt;}
.yb{bottom:625.533333pt;}
.y189{bottom:629.373333pt;}
.y1d2{bottom:631.613333pt;}
.y2a{bottom:632.413333pt;}
.yba{bottom:634.813333pt;}
.y73{bottom:641.853333pt;}
.yd5{bottom:642.973333pt;}
.y202{bottom:643.133333pt;}
.y112{bottom:648.093333pt;}
.y1b0{bottom:648.413333pt;}
.yec{bottom:649.373333pt;}
.y188{bottom:652.573333pt;}
.ya{bottom:653.053333pt;}
.y29{bottom:653.533333pt;}
.y239{bottom:653.733333pt;}
.y97{bottom:654.173333pt;}
.y72{bottom:658.653333pt;}
.yb9{bottom:660.093333pt;}
.y201{bottom:661.053333pt;}
.y1d1{bottom:664.413333pt;}
.y1af{bottom:665.213333pt;}
.y49{bottom:665.853333pt;}
.y21d{bottom:667.813333pt;}
.yd4{bottom:670.653333pt;}
.y111{bottom:671.133333pt;}
.y71{bottom:675.293333pt;}
.y187{bottom:675.933333pt;}
.y200{bottom:678.973333pt;}
.y9{bottom:680.733333pt;}
.y1d0{bottom:681.213333pt;}
.y96{bottom:681.853333pt;}
.y1ae{bottom:682.173333pt;}
.yb8{bottom:685.373333pt;}
.y70{bottom:692.093333pt;}
.y110{bottom:692.733333pt;}
.y128{bottom:694.240000pt;}
.y1ff{bottom:696.893333pt;}
.yd3{bottom:698.173333pt;}
.yf4{bottom:698.813333pt;}
.y186{bottom:699.293333pt;}
.y8{bottom:704.893333pt;}
.y28{bottom:706.333333pt;}
.y6f{bottom:708.893333pt;}
.y48{bottom:709.373333pt;}
.yb7{bottom:710.653333pt;}
.y1fe{bottom:714.813333pt;}
.y1ad{bottom:714.973333pt;}
.y185{bottom:722.653333pt;}
.y6e{bottom:725.693333pt;}
.yd2{bottom:725.853333pt;}
.y1cf{bottom:730.973333pt;}
.y1ac{bottom:731.933333pt;}
.y1fd{bottom:732.733333pt;}
.yb6{bottom:735.933333pt;}
.y47{bottom:737.053333pt;}
.y6d{bottom:742.333333pt;}
.y27{bottom:743.133333pt;}
.y184{bottom:746.013333pt;}
.y1ce{bottom:747.933333pt;}
.y1fc{bottom:750.653333pt;}
.yd1{bottom:753.373333pt;}
.y6c{bottom:759.133333pt;}
.yb5{bottom:761.213333pt;}
.y46{bottom:764.573333pt;}
.y1ab{bottom:764.733333pt;}
.y1fb{bottom:768.413333pt;}
.y181{bottom:769.373333pt;}
.y6b{bottom:775.933333pt;}
.yd0{bottom:777.693333pt;}
.y1cd{bottom:780.733333pt;}
.y1aa{bottom:781.693333pt;}
.ye9{bottom:784.573333pt;}
.y1fa{bottom:786.333333pt;}
.yb4{bottom:786.653333pt;}
.y26{bottom:787.133333pt;}
.y45{bottom:792.253333pt;}
.y6a{bottom:792.573333pt;}
.y1cc{bottom:797.693333pt;}
.y1a9{bottom:798.493333pt;}
.y1f9{bottom:804.253333pt;}
.y69{bottom:809.413333pt;}
.yb3{bottom:811.973333pt;}
.y1cb{bottom:814.533333pt;}
.y180{bottom:815.973333pt;}
.y44{bottom:819.813333pt;}
.y25{bottom:822.053333pt;}
.y1f8{bottom:822.213333pt;}
.y68{bottom:826.213333pt;}
.y1a8{bottom:831.333333pt;}
.yb2{bottom:837.253333pt;}
.y17f{bottom:839.333333pt;}
.y1f7{bottom:840.133333pt;}
.y67{bottom:842.853333pt;}
.y1ca{bottom:847.333333pt;}
.y43{bottom:847.493333pt;}
.y1a7{bottom:848.293333pt;}
.y24{bottom:854.213333pt;}
.y1f6{bottom:858.053333pt;}
.y66{bottom:859.653333pt;}
.yb1{bottom:862.533333pt;}
.y17c{bottom:862.693333pt;}
.y1c9{bottom:864.293333pt;}
.y1a6{bottom:865.093333pt;}
.y42{bottom:875.013333pt;}
.y1f5{bottom:875.973333pt;}
.y65{bottom:876.453333pt;}
.y1e3{bottom:881.093333pt;}
.y177{bottom:886.053333pt;}
.y23{bottom:886.373333pt;}
.yb0{bottom:887.813333pt;}
.y64{bottom:893.093333pt;}
.y1f4{bottom:893.893333pt;}
.y1c8{bottom:897.093333pt;}
.y1a5{bottom:898.053333pt;}
.y41{bottom:902.693333pt;}
.y63{bottom:909.893333pt;}
.y1f3{bottom:911.813333pt;}
.yaf{bottom:913.093333pt;}
.y1c7{bottom:914.053333pt;}
.y1a4{bottom:914.853333pt;}
.y22{bottom:918.693333pt;}
.y7{bottom:923.653333pt;}
.y62{bottom:926.693333pt;}
.y1f2{bottom:929.733333pt;}
.y40{bottom:930.213333pt;}
.y1c6{bottom:930.853333pt;}
.yae{bottom:938.373333pt;}
.y61{bottom:943.333333pt;}
.y6{bottom:946.533333pt;}
.y1f1{bottom:947.493333pt;}
.y1a3{bottom:947.653333pt;}
.y21{bottom:950.853333pt;}
.y3f{bottom:957.893333pt;}
.y60{bottom:960.133333pt;}
.yad{bottom:963.653333pt;}
.y1a2{bottom:964.613333pt;}
.y5{bottom:969.573333pt;}
.y5f{bottom:976.933333pt;}
.y1c5{bottom:980.613333pt;}
.y20{bottom:983.013333pt;}
.y3e{bottom:985.413333pt;}
.yac{bottom:988.933333pt;}
.y4{bottom:992.613333pt;}
.y5e{bottom:993.733333pt;}
.y1a1{bottom:997.413333pt;}
.y1f{bottom:1013.093333pt;}
.y240{bottom:1014.213333pt;}
.yab{bottom:1014.373333pt;}
.y3{bottom:1015.653333pt;}
.y5d{bottom:1016.293333pt;}
.h1c{height:16.687500pt;}
.hd{height:17.920000pt;}
.hc{height:18.080000pt;}
.h1b{height:22.560000pt;}
.h19{height:22.720000pt;}
.h1a{height:22.752000pt;}
.hb{height:35.840000pt;}
.ha{height:35.872000pt;}
.h18{height:40.160000pt;}
.h22{height:43.054688pt;}
.h1f{height:43.520000pt;}
.h24{height:44.722500pt;}
.hf{height:47.742188pt;}
.h20{height:50.062500pt;}
.h8{height:52.732500pt;}
.h17{height:52.813750pt;}
.h12{height:54.390938pt;}
.h3{height:55.402500pt;}
.h2{height:58.563750pt;}
.h23{height:60.480000pt;}
.h21{height:60.512000pt;}
.h7{height:61.410000pt;}
.h13{height:65.531250pt;}
.h4{height:66.750000pt;}
.h15{height:74.477812pt;}
.h6{height:78.097500pt;}
.h5{height:88.777500pt;}
.h10{height:93.075521pt;}
.h9{height:100.125000pt;}
.h11{height:138.248854pt;}
.h14{height:232.640000pt;}
.he{height:269.120000pt;}
.h16{height:655.200000pt;}
.h1d{height:793.760000pt;}
.h1e{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:37.152000pt;}
.w1e{width:105.952000pt;}
.w21{width:106.432000pt;}
.w13{width:106.592000pt;}
.w19{width:106.912000pt;}
.w4{width:107.680000pt;}
.w2a{width:109.792000pt;}
.wa{width:131.392000pt;}
.we{width:131.520000pt;}
.wb{width:131.680000pt;}
.wd{width:131.712000pt;}
.w29{width:140.026667pt;}
.w12{width:140.826667pt;}
.w2c{width:140.986667pt;}
.w15{width:141.146667pt;}
.w23{width:141.306667pt;}
.w18{width:141.786667pt;}
.w1b{width:143.226667pt;}
.w14{width:147.680000pt;}
.w6{width:147.706667pt;}
.w1a{width:147.840000pt;}
.w2b{width:149.760000pt;}
.w5{width:149.786667pt;}
.w27{width:150.400000pt;}
.w1f{width:150.560000pt;}
.w3{width:154.426667pt;}
.w1c{width:174.906667pt;}
.w2d{width:178.586667pt;}
.w16{width:178.906667pt;}
.w26{width:179.066667pt;}
.w1d{width:207.226667pt;}
.w17{width:207.386667pt;}
.w2e{width:212.186667pt;}
.w25{width:213.146667pt;}
.w22{width:213.626667pt;}
.w20{width:214.106667pt;}
.w28{width:222.586667pt;}
.w24{width:222.746667pt;}
.w8{width:440.640000pt;}
.w7{width:520.000000pt;}
.w9{width:549.440000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w11{width:1122.559983pt;}
.wf{width:1122.560000pt;}
.w10{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x7d{left:6.880000pt;}
.x7c{left:8.000000pt;}
.x6f{left:8.960000pt;}
.x25{left:10.400000pt;}
.x7b{left:11.360000pt;}
.x1a{left:12.320000pt;}
.x7f{left:13.760000pt;}
.x79{left:14.720000pt;}
.x73{left:15.680000pt;}
.x7e{left:16.960000pt;}
.x1f{left:18.240000pt;}
.x83{left:19.200000pt;}
.x22{left:20.160000pt;}
.x26{left:21.960000pt;}
.x1c{left:23.200000pt;}
.x82{left:24.160000pt;}
.x84{left:25.440000pt;}
.x77{left:27.072000pt;}
.x32{left:28.253333pt;}
.x1b{left:29.440000pt;}
.x24{left:30.920000pt;}
.x67{left:32.000000pt;}
.x5e{left:32.986667pt;}
.x8d{left:33.920000pt;}
.x68{left:34.874667pt;}
.x98{left:35.866667pt;}
.x1d{left:36.800000pt;}
.x66{left:38.400000pt;}
.x85{left:39.386667pt;}
.x20{left:40.480000pt;}
.x75{left:41.760000pt;}
.x31{left:43.200000pt;}
.x78{left:44.666667pt;}
.x91{left:46.400000pt;}
.x8b{left:47.840000pt;}
.x7a{left:48.826667pt;}
.x5c{left:50.266667pt;}
.x2a{left:52.320000pt;}
.x90{left:53.440000pt;}
.x99{left:54.560000pt;}
.x38{left:56.026667pt;}
.x37{left:57.306667pt;}
.x8a{left:58.906667pt;}
.x80{left:60.320000pt;}
.x57{left:61.826667pt;}
.x93{left:64.160000pt;}
.x8c{left:65.920000pt;}
.x97{left:67.040000pt;}
.x9a{left:70.240000pt;}
.x94{left:71.360000pt;}
.x81{left:72.960000pt;}
.x59{left:74.266667pt;}
.x51{left:75.266667pt;}
.x5d{left:76.480000pt;}
.x95{left:77.440000pt;}
.x5a{left:79.226667pt;}
.x58{left:80.346667pt;}
.x52{left:81.373333pt;}
.x50{left:83.013333pt;}
.x55{left:83.973333pt;}
.x9b{left:87.520000pt;}
.x56{left:88.733333pt;}
.x5b{left:91.360000pt;}
.x53{left:93.506667pt;}
.x6e{left:94.559983pt;}
.x60{left:95.840000pt;}
.x54{left:99.013333pt;}
.x2{left:113.471988pt;}
.x3f{left:121.760000pt;}
.x2b{left:123.933333pt;}
.x13{left:132.351988pt;}
.x29{left:136.800000pt;}
.x6b{left:139.066655pt;}
.x3d{left:144.480000pt;}
.x19{left:147.066667pt;}
.x34{left:153.826667pt;}
.x2c{left:156.706667pt;}
.x40{left:161.666667pt;}
.x41{left:167.066667pt;}
.x42{left:172.480000pt;}
.x36{left:175.840000pt;}
.x48{left:177.920000pt;}
.x43{left:183.333333pt;}
.x44{left:188.733333pt;}
.x2d{left:192.506667pt;}
.x45{left:194.146667pt;}
.x46{left:196.506667pt;}
.x49{left:204.986667pt;}
.x3b{left:208.133333pt;}
.x18{left:209.786655pt;}
.x7{left:214.426655pt;}
.x4a{left:226.626667pt;}
.x3c{left:227.653333pt;}
.x3a{left:228.933333pt;}
.x4b{left:232.066667pt;}
.x6{left:235.266655pt;}
.x70{left:236.666667pt;}
.x86{left:237.626667pt;}
.x61{left:239.520000pt;}
.x5{left:243.426655pt;}
.x8{left:246.306655pt;}
.x4e{left:248.293333pt;}
.x33{left:251.066667pt;}
.x4c{left:253.693333pt;}
.x5f{left:257.626667pt;}
.x4d{left:259.133333pt;}
.x2e{left:264.133333pt;}
.xa{left:276.066655pt;}
.x9{left:281.346655pt;}
.x47{left:288.573333pt;}
.x2f{left:299.933333pt;}
.x17{left:304.546655pt;}
.xb{left:306.626655pt;}
.x69{left:310.946655pt;}
.x14{left:313.986655pt;}
.x15{left:316.386655pt;}
.x10{left:317.826655pt;}
.x6a{left:319.906655pt;}
.xc{left:320.866655pt;}
.x27{left:323.426655pt;}
.xd{left:335.106655pt;}
.x62{left:337.666655pt;}
.x71{left:343.906667pt;}
.x87{left:345.186667pt;}
.x9c{left:346.466667pt;}
.x12{left:349.826655pt;}
.x6c{left:358.946655pt;}
.xf{left:360.706655pt;}
.x39{left:361.693333pt;}
.x63{left:378.466667pt;}
.x11{left:389.373322pt;}
.x3{left:396.893322pt;}
.x64{left:416.253333pt;}
.x4f{left:448.640000pt;}
.x30{left:479.013333pt;}
.x1e{left:489.693333pt;}
.x72{left:492.226667pt;}
.x88{left:493.666667pt;}
.x92{left:494.946667pt;}
.x9d{left:496.866667pt;}
.x23{left:519.933333pt;}
.x4{left:530.973322pt;}
.x21{left:539.973333pt;}
.x65{left:548.613333pt;}
.x35{left:617.893322pt;}
.x74{left:634.013333pt;}
.x8e{left:636.253333pt;}
.x89{left:637.533333pt;}
.x9e{left:638.493333pt;}
.x28{left:656.933322pt;}
.x16{left:665.573322pt;}
.x3e{left:671.973322pt;}
.xe{left:673.093322pt;}
.x1{left:680.453322pt;}
.x76{left:813.573333pt;}
.x8f{left:815.813333pt;}
.x96{left:816.773333pt;}
.x9f{left:817.733333pt;}
.x6d{left:1013.279983pt;}
}




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