
    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_9e73f4fd84192a62cb598e2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_2372d7bbf8eb1251d0a66a6f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_2bb6d728efb29c350bd35b39.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_5767f176b4429cbaff83d8c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_15d284e48d913fa45f1228a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_1e80fdb53f826dfc9e4115f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916016;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:ffa;src:url('chunks/assets/font_720f6e12175debc457bba1cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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;}
.m3{transform:matrix(0.152892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152892,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);}
.m2{transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304803,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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-3.546000px;}
.ls13{letter-spacing:-3.240000px;}
.ls15{letter-spacing:-0.867979px;}
.lsf{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.488238px;}
.ls19{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.206400px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.lsb{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.153600px;}
.ls3{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.503033px;}
.ls18{letter-spacing:0.537555px;}
.ls17{letter-spacing:0.626326px;}
.ls1d{letter-spacing:16.506720px;}
.ls1c{letter-spacing:46.026720px;}
.ls7{letter-spacing:67.770720px;}
.lsd{letter-spacing:68.346720px;}
.ls9{letter-spacing:107.946720px;}
.ls10{letter-spacing:108.090720px;}
.ls1{letter-spacing:110.970720px;}
.lsa{letter-spacing:111.546720px;}
.ls8{letter-spacing:111.690720px;}
.ls1b{letter-spacing:118.026720px;}
.lsc{letter-spacing:118.170720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.093600px;}
.ws5{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.871108px;}
.ws3{word-spacing:-14.733600px;}
.wse{word-spacing:-14.680200px;}
.ws11{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.386060px;}
.ws8{word-spacing:-11.700000px;}
.wsa{word-spacing:-11.127148px;}
.wsb{word-spacing:-11.096325px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:2.317899px;}
.wsd{word-spacing:5.572821px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._4{margin-left:-1171.774080px;}
._5{margin-left:-1166.086080px;}
._6{margin-left:-9.241920px;}
._9{margin-left:-6.094080px;}
._7{margin-left:-4.248480px;}
._8{margin-left:-2.319840px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._a{width:2.330640px;}
._c{width:3.394080px;}
._b{width:5.330880px;}
._10{width:7.166160px;}
._f{width:8.187120px;}
._e{width:9.501840px;}
._d{width:10.697040px;}
._12{width:11.906400px;}
._20{width:12.908160px;}
._18{width:13.924080px;}
._17{width:16.553520px;}
._1c{width:17.569440px;}
._14{width:18.579840px;}
._13{width:19.786080px;}
._16{width:21.072480px;}
._1a{width:22.170960px;}
._1b{width:23.462880px;}
._21{width:25.039440px;}
._25{width:26.832240px;}
._2a{width:28.243680px;}
._29{width:29.908320px;}
._28{width:31.755360px;}
._27{width:33.383040px;}
._15{width:35.377920px;}
._26{width:36.485760px;}
._34{width:37.506480px;}
._23{width:38.664720px;}
._22{width:39.919680px;}
._47{width:41.132640px;}
._43{width:42.645840px;}
._19{width:44.558160px;}
._3b{width:46.530240px;}
._44{width:48.345840px;}
._1f{width:49.421520px;}
._1e{width:50.616720px;}
._1d{width:51.669600px;}
._2e{width:54.560880px;}
._5b{width:56.198160px;}
._40{width:57.548880px;}
._24{width:58.923360px;}
._33{width:61.373520px;}
._53{width:64.062720px;}
._48{width:65.317680px;}
._4c{width:66.393360px;}
._61{width:67.875360px;}
._5d{width:69.632400px;}
._32{width:70.733040px;}
._4f{width:71.868480px;}
._42{width:73.265760px;}
._45{width:75.118320px;}
._46{width:78.442080px;}
._5e{width:83.461920px;}
._58{width:84.560400px;}
._3a{width:85.613280px;}
._55{width:88.780560px;}
._39{width:92.904000px;}
._37{width:95.197680px;}
._38{width:104.460480px;}
._3d{width:117.405600px;}
._60{width:124.657920px;}
._4a{width:126.011040px;}
._2d{width:127.109520px;}
._30{width:136.827600px;}
._54{width:139.696080px;}
._3c{width:140.734800px;}
._41{width:149.795520px;}
._4e{width:163.181760px;}
._56{width:170.256240px;}
._36{width:173.221440px;}
._2f{width:174.917520px;}
._4d{width:180.774000px;}
._59{width:183.320880px;}
._49{width:184.957200px;}
._35{width:190.873440px;}
._2b{width:193.323600px;}
._50{width:197.387280px;}
._4b{width:202.862400px;}
._3f{width:210.322320px;}
._57{width:211.706880px;}
._31{width:212.902080px;}
._5a{width:219.953760px;}
._5f{width:222.486480px;}
._52{width:229.754400px;}
._2c{width:236.865840px;}
._11{width:258.095520px;}
._51{width:266.387280px;}
._5c{width:306.366720px;}
._3e{width:337.165920px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs9{font-size:44.385300px;}
.fs8{font-size:44.508593px;}
.fsb{font-size:53.544238px;}
.fsc{font-size:54.000000px;}
.fsa{font-size:59.484431px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.yca{bottom:-17.460000px;}
.yce{bottom:-5.625000px;}
.y0{bottom:0.000000px;}
.y103{bottom:2.034340px;}
.yf0{bottom:2.342571px;}
.yff{bottom:2.962725px;}
.yfd{bottom:3.637135px;}
.y107{bottom:3.637136px;}
.y105{bottom:3.674124px;}
.y101{bottom:3.822076px;}
.yfb{bottom:3.920709px;}
.y1d9{bottom:5.108583px;}
.y1ce{bottom:5.211954px;}
.y1c8{bottom:5.315081px;}
.yc9{bottom:5.400000px;}
.y1c6{bottom:5.667943px;}
.y1cc{bottom:5.686342px;}
.y7{bottom:5.760000px;}
.y1ca{bottom:5.766948px;}
.y205{bottom:5.805000px;}
.yf2{bottom:5.831759px;}
.y1d4{bottom:5.849452px;}
.yd0{bottom:5.940000px;}
.yee{bottom:6.226297px;}
.yea{bottom:6.324926px;}
.yec{bottom:6.534527px;}
.yf9{bottom:7.520857px;}
.y142{bottom:7.560000px;}
.y1ff{bottom:8.460000px;}
.ye7{bottom:9.900000px;}
.ydd{bottom:10.080000px;}
.y13a{bottom:10.800000px;}
.y13d{bottom:10.830000px;}
.y9{bottom:10.980000px;}
.ye3{bottom:11.025000px;}
.yd2{bottom:11.160000px;}
.y8{bottom:11.700000px;}
.yd1{bottom:11.880000px;}
.y138{bottom:12.600000px;}
.y154{bottom:12.960000px;}
.yde{bottom:13.860000px;}
.y15d{bottom:14.940000px;}
.y15b{bottom:15.660000px;}
.y1d1{bottom:15.749778px;}
.y158{bottom:15.840000px;}
.y1d7{bottom:16.202719px;}
.y1ea{bottom:16.698561px;}
.ycd{bottom:17.460000px;}
.y201{bottom:18.360000px;}
.y1e7{bottom:19.280896px;}
.y1e4{bottom:21.877248px;}
.y152{bottom:22.860000px;}
.yc8{bottom:25.200000px;}
.y15a{bottom:25.560000px;}
.y19b{bottom:25.605000px;}
.y157{bottom:25.740000px;}
.y1a6{bottom:25.770000px;}
.y1f1{bottom:25.785000px;}
.yf7{bottom:25.802605px;}
.y1dd{bottom:26.887637px;}
.ydc{bottom:28.260000px;}
.y1a8{bottom:29.700000px;}
.y1d0{bottom:31.120027px;}
.y1d6{bottom:31.572968px;}
.y1e9{bottom:32.068810px;}
.y153{bottom:32.760000px;}
.y1e6{bottom:34.642894px;}
.y1a9{bottom:35.460000px;}
.y1f8{bottom:35.490000px;}
.y1f5{bottom:35.640000px;}
.y1a4{bottom:35.670000px;}
.y1e3{bottom:36.748356px;}
.ya{bottom:37.080000px;}
.ycc{bottom:37.440000px;}
.y200{bottom:38.160000px;}
.y1c3{bottom:40.129314px;}
.yc7{bottom:45.000000px;}
.y18c{bottom:45.360000px;}
.y1fa{bottom:45.390000px;}
.y19a{bottom:45.405000px;}
.y1a0{bottom:45.540000px;}
.y1a2{bottom:45.570000px;}
.y18e{bottom:45.585000px;}
.y1fe{bottom:48.240000px;}
.y1e2{bottom:52.132631px;}
.y6{bottom:54.180000px;}
.y1db{bottom:54.932721px;}
.y1ef{bottom:55.260000px;}
.y19d{bottom:55.440000px;}
.y1a3{bottom:55.470000px;}
.y1fc{bottom:58.140000px;}
.yd3{bottom:58.680000px;}
.yc6{bottom:64.980000px;}
.y1f0{bottom:65.160000px;}
.y18b{bottom:65.340000px;}
.y1a5{bottom:65.370000px;}
.y18f{bottom:65.385000px;}
.y1da{bottom:70.298846px;}
.y19c{bottom:75.240000px;}
.y1f7{bottom:75.270000px;}
.ycf{bottom:75.780000px;}
.y8b{bottom:80.640000px;}
.ya3{bottom:82.800000px;}
.yc5{bottom:84.810000px;}
.y18d{bottom:85.140000px;}
.y196{bottom:85.170000px;}
.y189{bottom:85.185000px;}
.y39{bottom:87.840000px;}
.y72{bottom:88.560000px;}
.y5f{bottom:89.280000px;}
.y1e0{bottom:93.607527px;}
.y194{bottom:95.040000px;}
.yf6{bottom:97.096490px;}
.y206{bottom:99.900000px;}
.y1de{bottom:100.372731px;}
.y8a{bottom:100.440000px;}
.ya2{bottom:102.600000px;}
.y191{bottom:104.940000px;}
.y1f9{bottom:104.970000px;}
.y19f{bottom:105.120000px;}
.y1ed{bottom:105.165000px;}
.y163{bottom:105.660000px;}
.y38{bottom:107.640000px;}
.y71{bottom:108.360000px;}
.y1df{bottom:108.969527px;}
.y5e{bottom:109.260000px;}
.yf5{bottom:109.703147px;}
.y235{bottom:111.780000px;}
.y247{bottom:112.500000px;}
.y203{bottom:114.840000px;}
.y198{bottom:115.020000px;}
.y1c4{bottom:117.079479px;}
.y89{bottom:120.240000px;}
.y13e{bottom:120.420000px;}
.ya1{bottom:122.400000px;}
.y1f6{bottom:124.740000px;}
.y1f3{bottom:124.770000px;}
.y19e{bottom:124.920000px;}
.y208{bottom:124.950000px;}
.y162{bottom:125.640000px;}
.y37{bottom:127.620000px;}
.y70{bottom:128.160000px;}
.y1bf{bottom:130.860000px;}
.y234{bottom:131.580000px;}
.y246{bottom:132.300000px;}
.y88{bottom:140.040000px;}
.ya0{bottom:142.200000px;}
.y207{bottom:144.750000px;}
.y161{bottom:145.440000px;}
.y36{bottom:147.420000px;}
.y6f{bottom:147.960000px;}
.y13c{bottom:150.660000px;}
.y1c1{bottom:151.293342px;}
.y233{bottom:151.380000px;}
.y245{bottom:152.310000px;}
.y190{bottom:152.670000px;}
.y87{bottom:159.870000px;}
.y9f{bottom:162.210000px;}
.y160{bottom:165.270000px;}
.y35{bottom:167.250000px;}
.y6e{bottom:167.790000px;}
.y1be{bottom:170.490000px;}
.y232{bottom:171.390000px;}
.y1d2{bottom:171.448785px;}
.y244{bottom:172.110000px;}
.yf4{bottom:177.046749px;}
.y86{bottom:179.850000px;}
.y13b{bottom:180.750000px;}
.y9e{bottom:182.010000px;}
.y15f{bottom:185.070000px;}
.y34{bottom:187.050000px;}
.y6d{bottom:187.770000px;}
.y1bd{bottom:190.470000px;}
.y231{bottom:191.190000px;}
.y243{bottom:191.910000px;}
.y85{bottom:199.650000px;}
.y9d{bottom:201.810000px;}
.y15e{bottom:204.870000px;}
.y33{bottom:206.850000px;}
.y6c{bottom:207.570000px;}
.y1bc{bottom:210.270000px;}
.y139{bottom:210.990000px;}
.y242{bottom:211.710000px;}
.y84{bottom:219.450000px;}
.y15c{bottom:219.810000px;}
.y9c{bottom:221.610000px;}
.y32{bottom:226.830000px;}
.y6b{bottom:227.370000px;}
.y1bb{bottom:230.070000px;}
.y230{bottom:230.790000px;}
.y241{bottom:231.510000px;}
.y9b{bottom:241.410000px;}
.y137{bottom:241.770000px;}
.y31{bottom:246.630000px;}
.y6a{bottom:247.170000px;}
.y1ba{bottom:249.870000px;}
.y159{bottom:250.410000px;}
.y22f{bottom:250.590000px;}
.y240{bottom:251.490000px;}
.y192{bottom:251.850000px;}
.y202{bottom:258.690000px;}
.y9a{bottom:261.390000px;}
.y30{bottom:266.430000px;}
.y69{bottom:266.970000px;}
.y1b9{bottom:269.670000px;}
.y22e{bottom:270.570000px;}
.y23f{bottom:271.290000px;}
.y99{bottom:281.190000px;}
.y136{bottom:281.730000px;}
.y2f{bottom:286.230000px;}
.ye8{bottom:287.310000px;}
.y1b8{bottom:289.650000px;}
.y156{bottom:290.010000px;}
.y22d{bottom:290.370000px;}
.y23e{bottom:291.090000px;}
.y176{bottom:291.630000px;}
.y135{bottom:301.710000px;}
.ye6{bottom:302.070000px;}
.y2e{bottom:306.030000px;}
.y1b7{bottom:309.450000px;}
.y22c{bottom:310.170000px;}
.y23d{bottom:310.890000px;}
.y175{bottom:311.430000px;}
.y134{bottom:321.510000px;}
.y2d{bottom:326.010000px;}
.y1b6{bottom:329.250000px;}
.y155{bottom:329.790000px;}
.y22b{bottom:329.970000px;}
.ye5{bottom:330.690000px;}
.y174{bottom:331.230000px;}
.y133{bottom:341.310000px;}
.y2c{bottom:345.810000px;}
.y11a{bottom:345.990000px;}
.y1b5{bottom:349.050000px;}
.y22a{bottom:349.770000px;}
.y23c{bottom:350.670000px;}
.y173{bottom:351.210000px;}
.y151{bottom:360.390000px;}
.ye4{bottom:360.930000px;}
.y132{bottom:361.110000px;}
.y2b{bottom:365.610000px;}
.y119{bottom:365.790000px;}
.y1b4{bottom:368.850000px;}
.y229{bottom:369.750000px;}
.y23b{bottom:370.470000px;}
.y188{bottom:370.830000px;}
.y172{bottom:371.010000px;}
.y131{bottom:380.910000px;}
.y2a{bottom:385.410000px;}
.y118{bottom:385.590000px;}
.y1b3{bottom:388.830000px;}
.y228{bottom:389.550000px;}
.y23a{bottom:390.270000px;}
.y171{bottom:390.810000px;}
.ye2{bottom:390.990000px;}
.y204{bottom:397.470000px;}
.y130{bottom:400.935000px;}
.y29{bottom:405.255000px;}
.y117{bottom:405.435000px;}
.ycb{bottom:405.615000px;}
.y1b2{bottom:408.675000px;}
.y227{bottom:409.395000px;}
.y239{bottom:410.115000px;}
.y170{bottom:410.655000px;}
.yc3{bottom:413.535000px;}
.y12f{bottom:420.735000px;}
.y150{bottom:421.095000px;}
.ye1{bottom:421.275000px;}
.y28{bottom:425.235000px;}
.y1b1{bottom:428.475000px;}
.y226{bottom:429.195000px;}
.y238{bottom:429.915000px;}
.y16f{bottom:430.455000px;}
.yc2{bottom:433.335000px;}
.y12e{bottom:440.535000px;}
.y14f{bottom:440.895000px;}
.y27{bottom:445.035000px;}
.y116{bottom:445.215000px;}
.y1b0{bottom:448.275000px;}
.y225{bottom:448.995000px;}
.y237{bottom:449.895000px;}
.y18a{bottom:450.255000px;}
.y16e{bottom:450.435000px;}
.ye0{bottom:451.335000px;}
.yc1{bottom:453.315000px;}
.y12d{bottom:460.335000px;}
.y14e{bottom:460.695000px;}
.y26{bottom:464.835000px;}
.y115{bottom:465.015000px;}
.y1af{bottom:468.075000px;}
.y224{bottom:468.975000px;}
.y236{bottom:469.695000px;}
.y16d{bottom:470.235000px;}
.yac{bottom:470.595000px;}
.y12c{bottom:480.135000px;}
.y14d{bottom:480.495000px;}
.ydf{bottom:481.575000px;}
.y25{bottom:484.635000px;}
.y114{bottom:484.815000px;}
.y1ae{bottom:488.055000px;}
.y223{bottom:488.775000px;}
.y5d{bottom:489.495000px;}
.yc0{bottom:489.855000px;}
.y16c{bottom:490.035000px;}
.y1fb{bottom:496.695000px;}
.y12b{bottom:500.115000px;}
.y14c{bottom:500.295000px;}
.y24{bottom:504.435000px;}
.y113{bottom:504.615000px;}
.y1ad{bottom:507.855000px;}
.y222{bottom:508.575000px;}
.y5c{bottom:509.295000px;}
.ybf{bottom:509.655000px;}
.y16b{bottom:509.835000px;}
.ydb{bottom:512.535000px;}
.y12a{bottom:519.915000px;}
.y14b{bottom:520.275000px;}
.y23{bottom:524.415000px;}
.y83{bottom:526.215000px;}
.y1ac{bottom:527.655000px;}
.y221{bottom:528.375000px;}
.y5b{bottom:529.095000px;}
.ybe{bottom:529.455000px;}
.y16a{bottom:529.635000px;}
.y129{bottom:539.715000px;}
.y14a{bottom:540.075000px;}
.y22{bottom:544.215000px;}
.y112{bottom:544.395000px;}
.y82{bottom:546.015000px;}
.y1ab{bottom:547.455000px;}
.y220{bottom:548.175000px;}
.y5a{bottom:549.075000px;}
.ybd{bottom:549.255000px;}
.y169{bottom:549.615000px;}
.y187{bottom:550.155000px;}
.y128{bottom:559.515000px;}
.y149{bottom:559.875000px;}
.y1fd{bottom:561.495000px;}
.y21{bottom:564.015000px;}
.y111{bottom:564.195000px;}
.y81{bottom:565.815000px;}
.y68{bottom:566.895000px;}
.y1aa{bottom:567.255000px;}
.y21f{bottom:568.155000px;}
.y59{bottom:568.875000px;}
.ybc{bottom:569.055000px;}
.y168{bottom:569.415000px;}
.y98{bottom:573.735000px;}
.y127{bottom:579.315000px;}
.y148{bottom:579.675000px;}
.y1a7{bottom:582.195000px;}
.y20{bottom:583.815000px;}
.y110{bottom:583.995000px;}
.yda{bottom:584.175000px;}
.y80{bottom:585.795000px;}
.y67{bottom:586.875000px;}
.y21e{bottom:587.955000px;}
.y58{bottom:588.675000px;}
.ybb{bottom:589.035000px;}
.y167{bottom:589.215000px;}
.y97{bottom:593.535000px;}
.y186{bottom:596.415000px;}
.y126{bottom:599.295000px;}
.y147{bottom:599.475000px;}
.y1f{bottom:603.615000px;}
.y10f{bottom:603.795000px;}
.yd9{bottom:603.975000px;}
.y7f{bottom:605.595000px;}
.y66{bottom:606.675000px;}
.y21d{bottom:607.755000px;}
.y57{bottom:608.475000px;}
.yba{bottom:608.835000px;}
.y166{bottom:609.015000px;}
.y96{bottom:613.515000px;}
.y185{bottom:616.215000px;}
.y125{bottom:619.095000px;}
.y1f2{bottom:621.075000px;}
.y10e{bottom:623.595000px;}
.yd8{bottom:623.775000px;}
.y7e{bottom:625.395000px;}
.y1e{bottom:625.755000px;}
.y65{bottom:626.475000px;}
.y21c{bottom:627.555000px;}
.y56{bottom:628.275000px;}
.yb9{bottom:628.635000px;}
.y165{bottom:628.815000px;}
.y95{bottom:633.315000px;}
.y184{bottom:636.015000px;}
.y124{bottom:638.895000px;}
.y1a1{bottom:642.315000px;}
.yd7{bottom:643.575000px;}
.y7d{bottom:645.195000px;}
.y1d{bottom:645.555000px;}
.y64{bottom:646.275000px;}
.y21b{bottom:647.355000px;}
.y55{bottom:648.255000px;}
.yb8{bottom:648.435000px;}
.y164{bottom:648.615000px;}
.y94{bottom:653.145000px;}
.y183{bottom:655.845000px;}
.y123{bottom:658.725000px;}
.yd6{bottom:663.405000px;}
.y7c{bottom:665.025000px;}
.y1c{bottom:665.385000px;}
.y63{bottom:666.105000px;}
.y21a{bottom:667.365000px;}
.y54{bottom:668.085000px;}
.yb7{bottom:668.265000px;}
.y93{bottom:672.945000px;}
.y182{bottom:675.825000px;}
.y122{bottom:678.525000px;}
.y10d{bottom:683.205000px;}
.yd5{bottom:683.385000px;}
.y7b{bottom:685.005000px;}
.y1b{bottom:685.365000px;}
.y62{bottom:686.085000px;}
.y219{bottom:687.165000px;}
.y53{bottom:687.885000px;}
.yb6{bottom:688.245000px;}
.y92{bottom:692.745000px;}
.y181{bottom:695.625000px;}
.y121{bottom:698.505000px;}
.y10c{bottom:703.005000px;}
.yd4{bottom:703.185000px;}
.y7a{bottom:704.805000px;}
.y1a{bottom:705.165000px;}
.y61{bottom:705.885000px;}
.y218{bottom:706.965000px;}
.y52{bottom:707.685000px;}
.yb5{bottom:708.045000px;}
.y91{bottom:712.725000px;}
.y180{bottom:715.425000px;}
.yab{bottom:717.945000px;}
.yf3{bottom:717.995993px;}
.y120{bottom:718.305000px;}
.y10b{bottom:722.805000px;}
.y79{bottom:724.605000px;}
.y19{bottom:724.965000px;}
.y60{bottom:725.685000px;}
.y217{bottom:726.765000px;}
.y51{bottom:727.485000px;}
.yb4{bottom:727.845000px;}
.y90{bottom:732.525000px;}
.y17f{bottom:735.225000px;}
.yaa{bottom:737.745000px;}
.y11f{bottom:738.105000px;}
.y1f4{bottom:740.085000px;}
.y197{bottom:741.525000px;}
.y10a{bottom:742.785000px;}
.y78{bottom:744.405000px;}
.y18{bottom:744.765000px;}
.y216{bottom:746.565000px;}
.y50{bottom:747.465000px;}
.yb3{bottom:747.645000px;}
.y8f{bottom:752.325000px;}
.y17e{bottom:755.025000px;}
.ya9{bottom:757.545000px;}
.y11e{bottom:757.905000px;}
.y109{bottom:762.585000px;}
.y77{bottom:764.205000px;}
.y17{bottom:764.565000px;}
.yfe{bottom:766.079995px;}
.y215{bottom:766.545000px;}
.y4f{bottom:767.265000px;}
.yb2{bottom:767.445000px;}
.y8e{bottom:772.125000px;}
.y17d{bottom:775.005000px;}
.ya8{bottom:777.345000px;}
.y11d{bottom:777.705000px;}
.y108{bottom:782.385000px;}
.y76{bottom:784.185000px;}
.y16{bottom:784.545000px;}
.y214{bottom:786.345000px;}
.y4e{bottom:787.065000px;}
.yb1{bottom:787.425000px;}
.y8d{bottom:791.925000px;}
.y17c{bottom:794.805000px;}
.ya7{bottom:797.325000px;}
.y11c{bottom:797.685000px;}
.y75{bottom:803.985000px;}
.y15{bottom:804.345000px;}
.y213{bottom:806.145000px;}
.y4d{bottom:806.865000px;}
.yb0{bottom:807.225000px;}
.y8c{bottom:811.905000px;}
.y17b{bottom:814.605000px;}
.ya6{bottom:817.125000px;}
.y11b{bottom:817.485000px;}
.y74{bottom:823.785000px;}
.y14{bottom:824.145000px;}
.yaf{bottom:824.505000px;}
.y212{bottom:825.945000px;}
.y4c{bottom:826.665000px;}
.y17a{bottom:834.405000px;}
.ya5{bottom:836.925000px;}
.y73{bottom:843.585000px;}
.y13{bottom:843.945000px;}
.y211{bottom:845.745000px;}
.y4b{bottom:846.645000px;}
.y104{bottom:846.712086px;}
.y179{bottom:854.205000px;}
.ya4{bottom:856.725000px;}
.y12{bottom:863.745000px;}
.y210{bottom:865.725000px;}
.y4a{bottom:866.445000px;}
.y178{bottom:874.185000px;}
.y1ec{bottom:878.865000px;}
.y199{bottom:880.485000px;}
.y20f{bottom:885.525000px;}
.y11{bottom:885.885000px;}
.y49{bottom:886.245000px;}
.y177{bottom:893.985000px;}
.y20e{bottom:905.370000px;}
.y10{bottom:905.730000px;}
.y48{bottom:906.090000px;}
.y1c0{bottom:908.955000px;}
.y106{bottom:911.810497px;}
.y1cb{bottom:914.144962px;}
.y1cd{bottom:915.630028px;}
.y1c7{bottom:917.115036px;}
.y20d{bottom:925.170000px;}
.y47{bottom:925.890000px;}
.yf{bottom:930.930000px;}
.yf8{bottom:934.003192px;}
.y102{bottom:939.181439px;}
.y1e1{bottom:941.866111px;}
.y20c{bottom:944.970000px;}
.y46{bottom:945.870000px;}
.ye{bottom:946.050000px;}
.y100{bottom:946.579009px;}
.y1d8{bottom:959.191633px;}
.y20b{bottom:964.950000px;}
.y45{bottom:965.670000px;}
.yd{bottom:967.290000px;}
.y193{bottom:979.710000px;}
.yf1{bottom:981.347466px;}
.y20a{bottom:984.750000px;}
.y44{bottom:985.470000px;}
.y1d5{bottom:987.902577px;}
.yc{bottom:990.690000px;}
.y1dc{bottom:997.802096px;}
.y1ee{bottom:998.070000px;}
.yfc{bottom:1001.320852px;}
.y1c2{bottom:1002.752216px;}
.y209{bottom:1004.550000px;}
.y43{bottom:1005.270000px;}
.y146{bottom:1019.310000px;}
.yb{bottom:1022.550000px;}
.y42{bottom:1025.070000px;}
.yef{bottom:1030.171304px;}
.y145{bottom:1039.110000px;}
.yfa{bottom:1041.267650px;}
.y41{bottom:1045.050000px;}
.y5{bottom:1050.630000px;}
.y1e5{bottom:1057.204036px;}
.y144{bottom:1058.910000px;}
.y1d3{bottom:1059.184079px;}
.yae{bottom:1064.670000px;}
.y40{bottom:1064.850000px;}
.yed{bottom:1068.638556px;}
.yc4{bottom:1076.910000px;}
.y143{bottom:1078.710000px;}
.y195{bottom:1078.890000px;}
.y4{bottom:1081.950000px;}
.yad{bottom:1084.470000px;}
.y3f{bottom:1084.650000px;}
.y1cf{bottom:1089.380044px;}
.y1e8{bottom:1090.370097px;}
.y141{bottom:1093.650000px;}
.y1eb{bottom:1097.970000px;}
.y3e{bottom:1104.450000px;}
.yeb{bottom:1106.366061px;}
.y3{bottom:1112.730000px;}
.y140{bottom:1117.770000px;}
.y3d{bottom:1124.250000px;}
.y2{bottom:1143.690000px;}
.y3c{bottom:1144.230000px;}
.y13f{bottom:1147.860000px;}
.y1c5{bottom:1148.781992px;}
.ye9{bottom:1149.271851px;}
.y1c9{bottom:1149.277028px;}
.y3b{bottom:1164.060000px;}
.y1{bottom:1177.560000px;}
.y3a{bottom:1193.400000px;}
.h1d{height:13.315607px;}
.h23{height:18.493883px;}
.h22{height:19.233638px;}
.h21{height:19.233640px;}
.h1e{height:19.973418px;}
.h1a{height:20.713172px;}
.h5{height:21.240000px;}
.h3f{height:21.285709px;}
.h11{height:21.420000px;}
.h38{height:22.275737px;}
.h3a{height:22.770753px;}
.h26{height:23.400000px;}
.h20{height:24.411938px;}
.ha{height:27.147656px;}
.h7{height:27.432422px;}
.h19{height:27.900000px;}
.h13{height:28.260000px;}
.h6{height:29.464453px;}
.h28{height:29.880000px;}
.h16{height:30.060000px;}
.h25{height:30.096000px;}
.h17{height:30.240000px;}
.h18{height:30.276000px;}
.h1c{height:30.991689px;}
.h1b{height:31.077777px;}
.h24{height:33.480000px;}
.h15{height:36.000000px;}
.h3c{height:37.386846px;}
.h2a{height:39.600000px;}
.h29{height:39.780000px;}
.h39{height:41.534539px;}
.h36{height:41.650720px;}
.h4{height:41.726953px;}
.hb{height:42.164648px;}
.hc{height:43.506914px;}
.h3{height:46.736719px;}
.h3b{height:47.026545px;}
.h3e{height:47.521562px;}
.h43{height:48.016579px;}
.hd{height:48.027656px;}
.h40{height:48.511590px;}
.h14{height:49.255313px;}
.h42{height:50.491660px;}
.h10{height:51.480000px;}
.h3d{height:51.481690px;}
.h9{height:53.224453px;}
.h27{height:54.036000px;}
.h34{height:59.400000px;}
.he{height:59.439023px;}
.h4a{height:59.580000px;}
.h4b{height:64.800000px;}
.h12{height:64.980000px;}
.h2{height:67.565039px;}
.h8{height:71.613281px;}
.h2d{height:79.416000px;}
.h41{height:83.657730px;}
.h37{height:91.577986px;}
.hf{height:98.856000px;}
.h2c{height:99.180000px;}
.h31{height:99.216000px;}
.h2f{height:118.980000px;}
.h48{height:119.016000px;}
.h45{height:119.196000px;}
.h49{height:124.380000px;}
.h47{height:138.780000px;}
.h33{height:138.960000px;}
.h4d{height:158.790000px;}
.h2b{height:178.590000px;}
.h30{height:198.390000px;}
.h2e{height:218.160000px;}
.h44{height:218.370000px;}
.h4c{height:237.990000px;}
.h32{height:238.170000px;}
.h46{height:257.790000px;}
.h35{height:269.100000px;}
.h1f{height:458.252326px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w26{width:16.560000px;}
.w24{width:20.700000px;}
.w15{width:43.292060px;}
.w14{width:44.193978px;}
.w2d{width:49.140000px;}
.w17{width:49.605485px;}
.w13{width:51.409321px;}
.w30{width:54.795123px;}
.w16{width:55.016993px;}
.w3{width:57.816000px;}
.w32{width:61.455302px;}
.w3a{width:61.455303px;}
.w33{width:61.758037px;}
.w31{width:62.060773px;}
.w34{width:62.363508px;}
.w39{width:63.877186px;}
.w1f{width:67.500000px;}
.w23{width:74.376000px;}
.w25{width:76.140000px;}
.w1d{width:78.660000px;}
.w1e{width:78.696000px;}
.w38{width:78.711224px;}
.w35{width:79.316695px;}
.w36{width:80.224902px;}
.w37{width:82.344050px;}
.w20{width:84.816000px;}
.w3c{width:86.582347px;}
.w10{width:88.387955px;}
.w3b{width:89.912437px;}
.w21{width:95.220000px;}
.w19{width:95.400000px;}
.w27{width:97.956000px;}
.w2a{width:98.100000px;}
.w7{width:103.356000px;}
.w8{width:105.480000px;}
.w18{width:110.196000px;}
.w2b{width:111.636000px;}
.w28{width:111.780000px;}
.w3d{width:114.336000px;}
.w3f{width:114.516000px;}
.w12{width:118.151246px;}
.wb{width:120.636000px;}
.w1c{width:129.996000px;}
.w1a{width:141.516000px;}
.wc{width:146.736000px;}
.wd{width:148.896000px;}
.w1b{width:150.690000px;}
.w3e{width:153.180000px;}
.w40{width:153.210000px;}
.w29{width:155.730000px;}
.w2c{width:155.910000px;}
.wa{width:160.050000px;}
.w2e{width:160.590000px;}
.we{width:168.658648px;}
.wf{width:169.560566px;}
.w22{width:177.690000px;}
.w6{width:328.575000px;}
.w2f{width:358.491277px;}
.w5{width:375.735000px;}
.w9{width:416.265000px;}
.w11{width:422.097598px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x59{left:4.112158px;}
.x5f{left:6.721232px;}
.x3{left:8.100000px;}
.x26{left:10.800000px;}
.x42{left:12.205956px;}
.x5d{left:15.086318px;}
.x37{left:17.061281px;}
.x5b{left:22.831301px;}
.x63{left:26.943458px;}
.x36{left:34.768936px;}
.x35{left:40.330763px;}
.x3f{left:43.930918px;}
.x38{left:45.546855px;}
.x68{left:47.050136px;}
.x1{left:54.179987px;}
.x45{left:57.059987px;}
.x34{left:58.624664px;}
.x12{left:59.939987px;}
.x2{left:62.100000px;}
.x29{left:63.576000px;}
.x52{left:67.139987px;}
.x2a{left:70.776000px;}
.x11{left:75.239987px;}
.x28{left:78.840000px;}
.x9{left:80.099987px;}
.x10{left:87.875987px;}
.x69{left:92.817431px;}
.xe{left:96.515987px;}
.xc{left:108.575987px;}
.x4{left:120.636000px;}
.x61{left:141.402692px;}
.x1d{left:143.495987px;}
.x5e{left:150.940627px;}
.x53{left:151.950000px;}
.x19{left:154.469987px;}
.x2e{left:157.350000px;}
.x65{left:159.667734px;}
.x1a{left:162.389987px;}
.x2b{left:164.010000px;}
.x66{left:166.327915px;}
.x67{left:169.104753px;}
.x13{left:171.389987px;}
.x27{left:187.965000px;}
.x62{left:194.231797px;}
.x39{left:195.526897px;}
.x3e{left:198.232661px;}
.x3a{left:225.208913px;}
.x3d{left:228.681304px;}
.x4c{left:231.690000px;}
.x14{left:236.729987px;}
.x3c{left:247.471257px;}
.x5c{left:248.724185px;}
.x3b{left:252.882764px;}
.x47{left:259.590000px;}
.x2f{left:262.830000px;}
.x60{left:265.374633px;}
.xa{left:275.834987px;}
.xd{left:295.634987px;}
.x2c{left:299.954987px;}
.x64{left:304.730247px;}
.x4e{left:306.075000px;}
.x57{left:309.940576px;}
.x4d{left:316.515000px;}
.x5a{left:320.546410px;}
.x4f{left:326.775000px;}
.x8{left:334.509000px;}
.x7{left:339.549000px;}
.x44{left:347.951036px;}
.x40{left:351.558699px;}
.x2d{left:353.234987px;}
.x58{left:354.984334px;}
.x31{left:383.475000px;}
.x33{left:384.929657px;}
.x48{left:401.115000px;}
.x50{left:402.915000px;}
.x6{left:413.529000px;}
.x1e{left:425.234987px;}
.x5{left:427.029000px;}
.xb{left:446.504987px;}
.x25{left:462.165000px;}
.xf{left:473.504987px;}
.x46{left:481.964987px;}
.x51{left:496.904987px;}
.x6c{left:500.504987px;}
.x41{left:502.178990px;}
.x43{left:504.884755px;}
.x15{left:515.984987px;}
.x56{left:522.645000px;}
.x6b{left:527.504987px;}
.x32{left:530.205000px;}
.x23{left:549.644987px;}
.x49{left:551.805000px;}
.x1f{left:555.584987px;}
.x24{left:562.964987px;}
.x54{left:571.605000px;}
.x1b{left:575.564987px;}
.x20{left:584.204987px;}
.x16{left:587.084987px;}
.x1c{left:588.704987px;}
.x18{left:612.824987px;}
.x17{left:656.249987px;}
.x21{left:677.489987px;}
.x30{left:679.110000px;}
.x4a{left:681.810000px;}
.x55{left:683.250000px;}
.x6a{left:685.950000px;}
.x4b{left:760.470000px;}
.x22{left:851.219987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-3.152000pt;}
.ls13{letter-spacing:-2.880000pt;}
.ls15{letter-spacing:-0.771537pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.433990pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.lsb{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.136533pt;}
.ls3{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.447141pt;}
.ls18{letter-spacing:0.477827pt;}
.ls17{letter-spacing:0.556734pt;}
.ls1d{letter-spacing:14.672640pt;}
.ls1c{letter-spacing:40.912640pt;}
.ls7{letter-spacing:60.240640pt;}
.lsd{letter-spacing:60.752640pt;}
.ls9{letter-spacing:95.952640pt;}
.ls10{letter-spacing:96.080640pt;}
.ls1{letter-spacing:98.640640pt;}
.lsa{letter-spacing:99.152640pt;}
.ls8{letter-spacing:99.280640pt;}
.ls1b{letter-spacing:104.912640pt;}
.lsc{letter-spacing:105.040640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.416533pt;}
.ws5{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.218763pt;}
.ws3{word-spacing:-13.096533pt;}
.wse{word-spacing:-13.049067pt;}
.ws11{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.898720pt;}
.ws8{word-spacing:-10.400000pt;}
.wsa{word-spacing:-9.890798pt;}
.wsb{word-spacing:-9.863400pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:2.060355pt;}
.wsd{word-spacing:4.953619pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._4{margin-left:-1041.576960pt;}
._5{margin-left:-1036.520960pt;}
._6{margin-left:-8.215040pt;}
._9{margin-left:-5.416960pt;}
._7{margin-left:-3.776427pt;}
._8{margin-left:-2.062080pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._a{width:2.071680pt;}
._c{width:3.016960pt;}
._b{width:4.738560pt;}
._10{width:6.369920pt;}
._f{width:7.277440pt;}
._e{width:8.446080pt;}
._d{width:9.508480pt;}
._12{width:10.583467pt;}
._20{width:11.473920pt;}
._18{width:12.376960pt;}
._17{width:14.714240pt;}
._1c{width:15.617280pt;}
._14{width:16.515413pt;}
._13{width:17.587627pt;}
._16{width:18.731093pt;}
._1a{width:19.707520pt;}
._1b{width:20.855893pt;}
._21{width:22.257280pt;}
._25{width:23.850880pt;}
._2a{width:25.105493pt;}
._29{width:26.585173pt;}
._28{width:28.226987pt;}
._27{width:29.673813pt;}
._15{width:31.447040pt;}
._26{width:32.431787pt;}
._34{width:33.339093pt;}
._23{width:34.368640pt;}
._22{width:35.484160pt;}
._47{width:36.562347pt;}
._43{width:37.907413pt;}
._19{width:39.607253pt;}
._3b{width:41.360213pt;}
._44{width:42.974080pt;}
._1f{width:43.930240pt;}
._1e{width:44.992640pt;}
._1d{width:45.928533pt;}
._2e{width:48.498560pt;}
._5b{width:49.953920pt;}
._40{width:51.154560pt;}
._24{width:52.376320pt;}
._33{width:54.554240pt;}
._53{width:56.944640pt;}
._48{width:58.060160pt;}
._4c{width:59.016320pt;}
._61{width:60.333653pt;}
._5d{width:61.895467pt;}
._32{width:62.873813pt;}
._4f{width:63.883093pt;}
._42{width:65.125120pt;}
._45{width:66.771840pt;}
._46{width:69.726293pt;}
._5e{width:74.188373pt;}
._58{width:75.164800pt;}
._3a{width:76.100693pt;}
._55{width:78.916053pt;}
._39{width:82.581333pt;}
._37{width:84.620160pt;}
._38{width:92.853760pt;}
._3d{width:104.360533pt;}
._60{width:110.807040pt;}
._4a{width:112.009813pt;}
._2d{width:112.986240pt;}
._30{width:121.624533pt;}
._54{width:124.174293pt;}
._3c{width:125.097600pt;}
._41{width:133.151573pt;}
._4e{width:145.050453pt;}
._56{width:151.338880pt;}
._36{width:153.974613pt;}
._2f{width:155.482240pt;}
._4d{width:160.688000pt;}
._59{width:162.951893pt;}
._49{width:164.406400pt;}
._35{width:169.665280pt;}
._2b{width:171.843200pt;}
._50{width:175.455360pt;}
._4b{width:180.322133pt;}
._3f{width:186.953173pt;}
._57{width:188.183893pt;}
._31{width:189.246293pt;}
._5a{width:195.514453pt;}
._5f{width:197.765760pt;}
._52{width:204.226133pt;}
._2c{width:210.547413pt;}
._11{width:229.418240pt;}
._51{width:236.788693pt;}
._5c{width:272.325973pt;}
._3e{width:299.703040pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs9{font-size:39.453600pt;}
.fs8{font-size:39.563193pt;}
.fsb{font-size:47.594879pt;}
.fsc{font-size:48.000000pt;}
.fsa{font-size:52.875050pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.yca{bottom:-15.520000pt;}
.yce{bottom:-5.000000pt;}
.y0{bottom:0.000000pt;}
.y103{bottom:1.808302pt;}
.yf0{bottom:2.082286pt;}
.yff{bottom:2.633533pt;}
.yfd{bottom:3.233009pt;}
.y107{bottom:3.233010pt;}
.y105{bottom:3.265888pt;}
.y101{bottom:3.397401pt;}
.yfb{bottom:3.485075pt;}
.y1d9{bottom:4.540962pt;}
.y1ce{bottom:4.632848pt;}
.y1c8{bottom:4.724516pt;}
.yc9{bottom:4.800000pt;}
.y1c6{bottom:5.038171pt;}
.y1cc{bottom:5.054527pt;}
.y7{bottom:5.120000pt;}
.y1ca{bottom:5.126176pt;}
.y205{bottom:5.160000pt;}
.yf2{bottom:5.183786pt;}
.y1d4{bottom:5.199513pt;}
.yd0{bottom:5.280000pt;}
.yee{bottom:5.534486pt;}
.yea{bottom:5.622157pt;}
.yec{bottom:5.808469pt;}
.yf9{bottom:6.685206pt;}
.y142{bottom:6.720000pt;}
.y1ff{bottom:7.520000pt;}
.ye7{bottom:8.800000pt;}
.ydd{bottom:8.960000pt;}
.y13a{bottom:9.600000pt;}
.y13d{bottom:9.626667pt;}
.y9{bottom:9.760000pt;}
.ye3{bottom:9.800000pt;}
.yd2{bottom:9.920000pt;}
.y8{bottom:10.400000pt;}
.yd1{bottom:10.560000pt;}
.y138{bottom:11.200000pt;}
.y154{bottom:11.520000pt;}
.yde{bottom:12.320000pt;}
.y15d{bottom:13.280000pt;}
.y15b{bottom:13.920000pt;}
.y1d1{bottom:13.999803pt;}
.y158{bottom:14.080000pt;}
.y1d7{bottom:14.402417pt;}
.y1ea{bottom:14.843165pt;}
.ycd{bottom:15.520000pt;}
.y201{bottom:16.320000pt;}
.y1e7{bottom:17.138574pt;}
.y1e4{bottom:19.446443pt;}
.y152{bottom:20.320000pt;}
.yc8{bottom:22.400000pt;}
.y15a{bottom:22.720000pt;}
.y19b{bottom:22.760000pt;}
.y157{bottom:22.880000pt;}
.y1a6{bottom:22.906667pt;}
.y1f1{bottom:22.920000pt;}
.yf7{bottom:22.935649pt;}
.y1dd{bottom:23.900121pt;}
.ydc{bottom:25.120000pt;}
.y1a8{bottom:26.400000pt;}
.y1d0{bottom:27.662247pt;}
.y1d6{bottom:28.064860pt;}
.y1e9{bottom:28.505609pt;}
.y153{bottom:29.120000pt;}
.y1e6{bottom:30.793684pt;}
.y1a9{bottom:31.520000pt;}
.y1f8{bottom:31.546667pt;}
.y1f5{bottom:31.680000pt;}
.y1a4{bottom:31.706667pt;}
.y1e3{bottom:32.665206pt;}
.ya{bottom:32.960000pt;}
.ycc{bottom:33.280000pt;}
.y200{bottom:33.920000pt;}
.y1c3{bottom:35.670502pt;}
.yc7{bottom:40.000000pt;}
.y18c{bottom:40.320000pt;}
.y1fa{bottom:40.346667pt;}
.y19a{bottom:40.360000pt;}
.y1a0{bottom:40.480000pt;}
.y1a2{bottom:40.506667pt;}
.y18e{bottom:40.520000pt;}
.y1fe{bottom:42.880000pt;}
.y1e2{bottom:46.340116pt;}
.y6{bottom:48.160000pt;}
.y1db{bottom:48.829085pt;}
.y1ef{bottom:49.120000pt;}
.y19d{bottom:49.280000pt;}
.y1a3{bottom:49.306667pt;}
.y1fc{bottom:51.680000pt;}
.yd3{bottom:52.160000pt;}
.yc6{bottom:57.760000pt;}
.y1f0{bottom:57.920000pt;}
.y18b{bottom:58.080000pt;}
.y1a5{bottom:58.106667pt;}
.y18f{bottom:58.120000pt;}
.y1da{bottom:62.487863pt;}
.y19c{bottom:66.880000pt;}
.y1f7{bottom:66.906667pt;}
.ycf{bottom:67.360000pt;}
.y8b{bottom:71.680000pt;}
.ya3{bottom:73.600000pt;}
.yc5{bottom:75.386667pt;}
.y18d{bottom:75.680000pt;}
.y196{bottom:75.706667pt;}
.y189{bottom:75.720000pt;}
.y39{bottom:78.080000pt;}
.y72{bottom:78.720000pt;}
.y5f{bottom:79.360000pt;}
.y1e0{bottom:83.206691pt;}
.y194{bottom:84.480000pt;}
.yf6{bottom:86.307991pt;}
.y206{bottom:88.800000pt;}
.y1de{bottom:89.220206pt;}
.y8a{bottom:89.280000pt;}
.ya2{bottom:91.200000pt;}
.y191{bottom:93.280000pt;}
.y1f9{bottom:93.306667pt;}
.y19f{bottom:93.440000pt;}
.y1ed{bottom:93.480000pt;}
.y163{bottom:93.920000pt;}
.y38{bottom:95.680000pt;}
.y71{bottom:96.320000pt;}
.y1df{bottom:96.861802pt;}
.y5e{bottom:97.120000pt;}
.yf5{bottom:97.513908pt;}
.y235{bottom:99.360000pt;}
.y247{bottom:100.000000pt;}
.y203{bottom:102.080000pt;}
.y198{bottom:102.240000pt;}
.y1c4{bottom:104.070648pt;}
.y89{bottom:106.880000pt;}
.y13e{bottom:107.040000pt;}
.ya1{bottom:108.800000pt;}
.y1f6{bottom:110.880000pt;}
.y1f3{bottom:110.906667pt;}
.y19e{bottom:111.040000pt;}
.y208{bottom:111.066667pt;}
.y162{bottom:111.680000pt;}
.y37{bottom:113.440000pt;}
.y70{bottom:113.920000pt;}
.y1bf{bottom:116.320000pt;}
.y234{bottom:116.960000pt;}
.y246{bottom:117.600000pt;}
.y88{bottom:124.480000pt;}
.ya0{bottom:126.400000pt;}
.y207{bottom:128.666667pt;}
.y161{bottom:129.280000pt;}
.y36{bottom:131.040000pt;}
.y6f{bottom:131.520000pt;}
.y13c{bottom:133.920000pt;}
.y1c1{bottom:134.482971pt;}
.y233{bottom:134.560000pt;}
.y245{bottom:135.386667pt;}
.y190{bottom:135.706667pt;}
.y87{bottom:142.106667pt;}
.y9f{bottom:144.186667pt;}
.y160{bottom:146.906667pt;}
.y35{bottom:148.666667pt;}
.y6e{bottom:149.146667pt;}
.y1be{bottom:151.546667pt;}
.y232{bottom:152.346667pt;}
.y1d2{bottom:152.398920pt;}
.y244{bottom:152.986667pt;}
.yf4{bottom:157.374888pt;}
.y86{bottom:159.866667pt;}
.y13b{bottom:160.666667pt;}
.y9e{bottom:161.786667pt;}
.y15f{bottom:164.506667pt;}
.y34{bottom:166.266667pt;}
.y6d{bottom:166.906667pt;}
.y1bd{bottom:169.306667pt;}
.y231{bottom:169.946667pt;}
.y243{bottom:170.586667pt;}
.y85{bottom:177.466667pt;}
.y9d{bottom:179.386667pt;}
.y15e{bottom:182.106667pt;}
.y33{bottom:183.866667pt;}
.y6c{bottom:184.506667pt;}
.y1bc{bottom:186.906667pt;}
.y139{bottom:187.546667pt;}
.y242{bottom:188.186667pt;}
.y84{bottom:195.066667pt;}
.y15c{bottom:195.386667pt;}
.y9c{bottom:196.986667pt;}
.y32{bottom:201.626667pt;}
.y6b{bottom:202.106667pt;}
.y1bb{bottom:204.506667pt;}
.y230{bottom:205.146667pt;}
.y241{bottom:205.786667pt;}
.y9b{bottom:214.586667pt;}
.y137{bottom:214.906667pt;}
.y31{bottom:219.226667pt;}
.y6a{bottom:219.706667pt;}
.y1ba{bottom:222.106667pt;}
.y159{bottom:222.586667pt;}
.y22f{bottom:222.746667pt;}
.y240{bottom:223.546667pt;}
.y192{bottom:223.866667pt;}
.y202{bottom:229.946667pt;}
.y9a{bottom:232.346667pt;}
.y30{bottom:236.826667pt;}
.y69{bottom:237.306667pt;}
.y1b9{bottom:239.706667pt;}
.y22e{bottom:240.506667pt;}
.y23f{bottom:241.146667pt;}
.y99{bottom:249.946667pt;}
.y136{bottom:250.426667pt;}
.y2f{bottom:254.426667pt;}
.ye8{bottom:255.386667pt;}
.y1b8{bottom:257.466667pt;}
.y156{bottom:257.786667pt;}
.y22d{bottom:258.106667pt;}
.y23e{bottom:258.746667pt;}
.y176{bottom:259.226667pt;}
.y135{bottom:268.186667pt;}
.ye6{bottom:268.506667pt;}
.y2e{bottom:272.026667pt;}
.y1b7{bottom:275.066667pt;}
.y22c{bottom:275.706667pt;}
.y23d{bottom:276.346667pt;}
.y175{bottom:276.826667pt;}
.y134{bottom:285.786667pt;}
.y2d{bottom:289.786667pt;}
.y1b6{bottom:292.666667pt;}
.y155{bottom:293.146667pt;}
.y22b{bottom:293.306667pt;}
.ye5{bottom:293.946667pt;}
.y174{bottom:294.426667pt;}
.y133{bottom:303.386667pt;}
.y2c{bottom:307.386667pt;}
.y11a{bottom:307.546667pt;}
.y1b5{bottom:310.266667pt;}
.y22a{bottom:310.906667pt;}
.y23c{bottom:311.706667pt;}
.y173{bottom:312.186667pt;}
.y151{bottom:320.346667pt;}
.ye4{bottom:320.826667pt;}
.y132{bottom:320.986667pt;}
.y2b{bottom:324.986667pt;}
.y119{bottom:325.146667pt;}
.y1b4{bottom:327.866667pt;}
.y229{bottom:328.666667pt;}
.y23b{bottom:329.306667pt;}
.y188{bottom:329.626667pt;}
.y172{bottom:329.786667pt;}
.y131{bottom:338.586667pt;}
.y2a{bottom:342.586667pt;}
.y118{bottom:342.746667pt;}
.y1b3{bottom:345.626667pt;}
.y228{bottom:346.266667pt;}
.y23a{bottom:346.906667pt;}
.y171{bottom:347.386667pt;}
.ye2{bottom:347.546667pt;}
.y204{bottom:353.306667pt;}
.y130{bottom:356.386667pt;}
.y29{bottom:360.226667pt;}
.y117{bottom:360.386667pt;}
.ycb{bottom:360.546667pt;}
.y1b2{bottom:363.266667pt;}
.y227{bottom:363.906667pt;}
.y239{bottom:364.546667pt;}
.y170{bottom:365.026667pt;}
.yc3{bottom:367.586667pt;}
.y12f{bottom:373.986667pt;}
.y150{bottom:374.306667pt;}
.ye1{bottom:374.466667pt;}
.y28{bottom:377.986667pt;}
.y1b1{bottom:380.866667pt;}
.y226{bottom:381.506667pt;}
.y238{bottom:382.146667pt;}
.y16f{bottom:382.626667pt;}
.yc2{bottom:385.186667pt;}
.y12e{bottom:391.586667pt;}
.y14f{bottom:391.906667pt;}
.y27{bottom:395.586667pt;}
.y116{bottom:395.746667pt;}
.y1b0{bottom:398.466667pt;}
.y225{bottom:399.106667pt;}
.y237{bottom:399.906667pt;}
.y18a{bottom:400.226667pt;}
.y16e{bottom:400.386667pt;}
.ye0{bottom:401.186667pt;}
.yc1{bottom:402.946667pt;}
.y12d{bottom:409.186667pt;}
.y14e{bottom:409.506667pt;}
.y26{bottom:413.186667pt;}
.y115{bottom:413.346667pt;}
.y1af{bottom:416.066667pt;}
.y224{bottom:416.866667pt;}
.y236{bottom:417.506667pt;}
.y16d{bottom:417.986667pt;}
.yac{bottom:418.306667pt;}
.y12c{bottom:426.786667pt;}
.y14d{bottom:427.106667pt;}
.ydf{bottom:428.066667pt;}
.y25{bottom:430.786667pt;}
.y114{bottom:430.946667pt;}
.y1ae{bottom:433.826667pt;}
.y223{bottom:434.466667pt;}
.y5d{bottom:435.106667pt;}
.yc0{bottom:435.426667pt;}
.y16c{bottom:435.586667pt;}
.y1fb{bottom:441.506667pt;}
.y12b{bottom:444.546667pt;}
.y14c{bottom:444.706667pt;}
.y24{bottom:448.386667pt;}
.y113{bottom:448.546667pt;}
.y1ad{bottom:451.426667pt;}
.y222{bottom:452.066667pt;}
.y5c{bottom:452.706667pt;}
.ybf{bottom:453.026667pt;}
.y16b{bottom:453.186667pt;}
.ydb{bottom:455.586667pt;}
.y12a{bottom:462.146667pt;}
.y14b{bottom:462.466667pt;}
.y23{bottom:466.146667pt;}
.y83{bottom:467.746667pt;}
.y1ac{bottom:469.026667pt;}
.y221{bottom:469.666667pt;}
.y5b{bottom:470.306667pt;}
.ybe{bottom:470.626667pt;}
.y16a{bottom:470.786667pt;}
.y129{bottom:479.746667pt;}
.y14a{bottom:480.066667pt;}
.y22{bottom:483.746667pt;}
.y112{bottom:483.906667pt;}
.y82{bottom:485.346667pt;}
.y1ab{bottom:486.626667pt;}
.y220{bottom:487.266667pt;}
.y5a{bottom:488.066667pt;}
.ybd{bottom:488.226667pt;}
.y169{bottom:488.546667pt;}
.y187{bottom:489.026667pt;}
.y128{bottom:497.346667pt;}
.y149{bottom:497.666667pt;}
.y1fd{bottom:499.106667pt;}
.y21{bottom:501.346667pt;}
.y111{bottom:501.506667pt;}
.y81{bottom:502.946667pt;}
.y68{bottom:503.906667pt;}
.y1aa{bottom:504.226667pt;}
.y21f{bottom:505.026667pt;}
.y59{bottom:505.666667pt;}
.ybc{bottom:505.826667pt;}
.y168{bottom:506.146667pt;}
.y98{bottom:509.986667pt;}
.y127{bottom:514.946667pt;}
.y148{bottom:515.266667pt;}
.y1a7{bottom:517.506667pt;}
.y20{bottom:518.946667pt;}
.y110{bottom:519.106667pt;}
.yda{bottom:519.266667pt;}
.y80{bottom:520.706667pt;}
.y67{bottom:521.666667pt;}
.y21e{bottom:522.626667pt;}
.y58{bottom:523.266667pt;}
.ybb{bottom:523.586667pt;}
.y167{bottom:523.746667pt;}
.y97{bottom:527.586667pt;}
.y186{bottom:530.146667pt;}
.y126{bottom:532.706667pt;}
.y147{bottom:532.866667pt;}
.y1f{bottom:536.546667pt;}
.y10f{bottom:536.706667pt;}
.yd9{bottom:536.866667pt;}
.y7f{bottom:538.306667pt;}
.y66{bottom:539.266667pt;}
.y21d{bottom:540.226667pt;}
.y57{bottom:540.866667pt;}
.yba{bottom:541.186667pt;}
.y166{bottom:541.346667pt;}
.y96{bottom:545.346667pt;}
.y185{bottom:547.746667pt;}
.y125{bottom:550.306667pt;}
.y1f2{bottom:552.066667pt;}
.y10e{bottom:554.306667pt;}
.yd8{bottom:554.466667pt;}
.y7e{bottom:555.906667pt;}
.y1e{bottom:556.226667pt;}
.y65{bottom:556.866667pt;}
.y21c{bottom:557.826667pt;}
.y56{bottom:558.466667pt;}
.yb9{bottom:558.786667pt;}
.y165{bottom:558.946667pt;}
.y95{bottom:562.946667pt;}
.y184{bottom:565.346667pt;}
.y124{bottom:567.906667pt;}
.y1a1{bottom:570.946667pt;}
.yd7{bottom:572.066667pt;}
.y7d{bottom:573.506667pt;}
.y1d{bottom:573.826667pt;}
.y64{bottom:574.466667pt;}
.y21b{bottom:575.426667pt;}
.y55{bottom:576.226667pt;}
.yb8{bottom:576.386667pt;}
.y164{bottom:576.546667pt;}
.y94{bottom:580.573333pt;}
.y183{bottom:582.973333pt;}
.y123{bottom:585.533333pt;}
.yd6{bottom:589.693333pt;}
.y7c{bottom:591.133333pt;}
.y1c{bottom:591.453333pt;}
.y63{bottom:592.093333pt;}
.y21a{bottom:593.213333pt;}
.y54{bottom:593.853333pt;}
.yb7{bottom:594.013333pt;}
.y93{bottom:598.173333pt;}
.y182{bottom:600.733333pt;}
.y122{bottom:603.133333pt;}
.y10d{bottom:607.293333pt;}
.yd5{bottom:607.453333pt;}
.y7b{bottom:608.893333pt;}
.y1b{bottom:609.213333pt;}
.y62{bottom:609.853333pt;}
.y219{bottom:610.813333pt;}
.y53{bottom:611.453333pt;}
.yb6{bottom:611.773333pt;}
.y92{bottom:615.773333pt;}
.y181{bottom:618.333333pt;}
.y121{bottom:620.893333pt;}
.y10c{bottom:624.893333pt;}
.yd4{bottom:625.053333pt;}
.y7a{bottom:626.493333pt;}
.y1a{bottom:626.813333pt;}
.y61{bottom:627.453333pt;}
.y218{bottom:628.413333pt;}
.y52{bottom:629.053333pt;}
.yb5{bottom:629.373333pt;}
.y91{bottom:633.533333pt;}
.y180{bottom:635.933333pt;}
.yab{bottom:638.173333pt;}
.yf3{bottom:638.218660pt;}
.y120{bottom:638.493333pt;}
.y10b{bottom:642.493333pt;}
.y79{bottom:644.093333pt;}
.y19{bottom:644.413333pt;}
.y60{bottom:645.053333pt;}
.y217{bottom:646.013333pt;}
.y51{bottom:646.653333pt;}
.yb4{bottom:646.973333pt;}
.y90{bottom:651.133333pt;}
.y17f{bottom:653.533333pt;}
.yaa{bottom:655.773333pt;}
.y11f{bottom:656.093333pt;}
.y1f4{bottom:657.853333pt;}
.y197{bottom:659.133333pt;}
.y10a{bottom:660.253333pt;}
.y78{bottom:661.693333pt;}
.y18{bottom:662.013333pt;}
.y216{bottom:663.613333pt;}
.y50{bottom:664.413333pt;}
.yb3{bottom:664.573333pt;}
.y8f{bottom:668.733333pt;}
.y17e{bottom:671.133333pt;}
.ya9{bottom:673.373333pt;}
.y11e{bottom:673.693333pt;}
.y109{bottom:677.853333pt;}
.y77{bottom:679.293333pt;}
.y17{bottom:679.613333pt;}
.yfe{bottom:680.959996pt;}
.y215{bottom:681.373333pt;}
.y4f{bottom:682.013333pt;}
.yb2{bottom:682.173333pt;}
.y8e{bottom:686.333333pt;}
.y17d{bottom:688.893333pt;}
.ya8{bottom:690.973333pt;}
.y11d{bottom:691.293333pt;}
.y108{bottom:695.453333pt;}
.y76{bottom:697.053333pt;}
.y16{bottom:697.373333pt;}
.y214{bottom:698.973333pt;}
.y4e{bottom:699.613333pt;}
.yb1{bottom:699.933333pt;}
.y8d{bottom:703.933333pt;}
.y17c{bottom:706.493333pt;}
.ya7{bottom:708.733333pt;}
.y11c{bottom:709.053333pt;}
.y75{bottom:714.653333pt;}
.y15{bottom:714.973333pt;}
.y213{bottom:716.573333pt;}
.y4d{bottom:717.213333pt;}
.yb0{bottom:717.533333pt;}
.y8c{bottom:721.693333pt;}
.y17b{bottom:724.093333pt;}
.ya6{bottom:726.333333pt;}
.y11b{bottom:726.653333pt;}
.y74{bottom:732.253333pt;}
.y14{bottom:732.573333pt;}
.yaf{bottom:732.893333pt;}
.y212{bottom:734.173333pt;}
.y4c{bottom:734.813333pt;}
.y17a{bottom:741.693333pt;}
.ya5{bottom:743.933333pt;}
.y73{bottom:749.853333pt;}
.y13{bottom:750.173333pt;}
.y211{bottom:751.773333pt;}
.y4b{bottom:752.573333pt;}
.y104{bottom:752.632965pt;}
.y179{bottom:759.293333pt;}
.ya4{bottom:761.533333pt;}
.y12{bottom:767.773333pt;}
.y210{bottom:769.533333pt;}
.y4a{bottom:770.173333pt;}
.y178{bottom:777.053333pt;}
.y1ec{bottom:781.213333pt;}
.y199{bottom:782.653333pt;}
.y20f{bottom:787.133333pt;}
.y11{bottom:787.453333pt;}
.y49{bottom:787.773333pt;}
.y177{bottom:794.653333pt;}
.y20e{bottom:804.773333pt;}
.y10{bottom:805.093333pt;}
.y48{bottom:805.413333pt;}
.y1c0{bottom:807.960000pt;}
.y106{bottom:810.498219pt;}
.y1cb{bottom:812.573299pt;}
.y1cd{bottom:813.893359pt;}
.y1c7{bottom:815.213365pt;}
.y20d{bottom:822.373333pt;}
.y47{bottom:823.013333pt;}
.yf{bottom:827.493333pt;}
.yf8{bottom:830.225059pt;}
.y102{bottom:834.827946pt;}
.y1e1{bottom:837.214321pt;}
.y20c{bottom:839.973333pt;}
.y46{bottom:840.773333pt;}
.ye{bottom:840.933333pt;}
.y100{bottom:841.403564pt;}
.y1d8{bottom:852.614785pt;}
.y20b{bottom:857.733333pt;}
.y45{bottom:858.373333pt;}
.yd{bottom:859.813333pt;}
.y193{bottom:870.853333pt;}
.yf1{bottom:872.308859pt;}
.y20a{bottom:875.333333pt;}
.y44{bottom:875.973333pt;}
.y1d5{bottom:878.135624pt;}
.yc{bottom:880.613333pt;}
.y1dc{bottom:886.935196pt;}
.y1ee{bottom:887.173333pt;}
.yfc{bottom:890.062980pt;}
.y1c2{bottom:891.335303pt;}
.y209{bottom:892.933333pt;}
.y43{bottom:893.573333pt;}
.y146{bottom:906.053333pt;}
.yb{bottom:908.933333pt;}
.y42{bottom:911.173333pt;}
.yef{bottom:915.707826pt;}
.y145{bottom:923.653333pt;}
.yfa{bottom:925.571244pt;}
.y41{bottom:928.933333pt;}
.y5{bottom:933.893333pt;}
.y1e5{bottom:939.736921pt;}
.y144{bottom:941.253333pt;}
.y1d3{bottom:941.496959pt;}
.yae{bottom:946.373333pt;}
.y40{bottom:946.533333pt;}
.yed{bottom:949.900939pt;}
.yc4{bottom:957.253333pt;}
.y143{bottom:958.853333pt;}
.y195{bottom:959.013333pt;}
.y4{bottom:961.733333pt;}
.yad{bottom:963.973333pt;}
.y3f{bottom:964.133333pt;}
.y1cf{bottom:968.337817pt;}
.y1e8{bottom:969.217864pt;}
.y141{bottom:972.133333pt;}
.y1eb{bottom:975.973333pt;}
.y3e{bottom:981.733333pt;}
.yeb{bottom:983.436499pt;}
.y3{bottom:989.093333pt;}
.y140{bottom:993.573333pt;}
.y3d{bottom:999.333333pt;}
.y2{bottom:1016.613333pt;}
.y3c{bottom:1017.093333pt;}
.y13f{bottom:1020.320000pt;}
.y1c5{bottom:1021.139548pt;}
.ye9{bottom:1021.574979pt;}
.y1c9{bottom:1021.579581pt;}
.y3b{bottom:1034.720000pt;}
.y1{bottom:1046.720000pt;}
.y3a{bottom:1060.800000pt;}
.h1d{height:11.836095pt;}
.h23{height:16.439007pt;}
.h22{height:17.096568pt;}
.h21{height:17.096569pt;}
.h1e{height:17.754149pt;}
.h1a{height:18.411709pt;}
.h5{height:18.880000pt;}
.h3f{height:18.920630pt;}
.h11{height:19.040000pt;}
.h38{height:19.800655pt;}
.h3a{height:20.240670pt;}
.h26{height:20.800000pt;}
.h20{height:21.699500pt;}
.ha{height:24.131250pt;}
.h7{height:24.384375pt;}
.h19{height:24.800000pt;}
.h13{height:25.120000pt;}
.h6{height:26.190625pt;}
.h28{height:26.560000pt;}
.h16{height:26.720000pt;}
.h25{height:26.752000pt;}
.h17{height:26.880000pt;}
.h18{height:26.912000pt;}
.h1c{height:27.548168pt;}
.h1b{height:27.624691pt;}
.h24{height:29.760000pt;}
.h15{height:32.000000pt;}
.h3c{height:33.232752pt;}
.h2a{height:35.200000pt;}
.h29{height:35.360000pt;}
.h39{height:36.919591pt;}
.h36{height:37.022862pt;}
.h4{height:37.090625pt;}
.hb{height:37.479688pt;}
.hc{height:38.672812pt;}
.h3{height:41.543750pt;}
.h3b{height:41.801373pt;}
.h3e{height:42.241388pt;}
.h43{height:42.681403pt;}
.hd{height:42.691250pt;}
.h40{height:43.121413pt;}
.h14{height:43.782500pt;}
.h42{height:44.881475pt;}
.h10{height:45.760000pt;}
.h3d{height:45.761502pt;}
.h9{height:47.310625pt;}
.h27{height:48.032000pt;}
.h34{height:52.800000pt;}
.he{height:52.834688pt;}
.h4a{height:52.960000pt;}
.h4b{height:57.600000pt;}
.h12{height:57.760000pt;}
.h2{height:60.057813pt;}
.h8{height:63.656250pt;}
.h2d{height:70.592000pt;}
.h41{height:74.362427pt;}
.h37{height:81.402654pt;}
.hf{height:87.872000pt;}
.h2c{height:88.160000pt;}
.h31{height:88.192000pt;}
.h2f{height:105.760000pt;}
.h48{height:105.792000pt;}
.h45{height:105.952000pt;}
.h49{height:110.560000pt;}
.h47{height:123.360000pt;}
.h33{height:123.520000pt;}
.h4d{height:141.146667pt;}
.h2b{height:158.746667pt;}
.h30{height:176.346667pt;}
.h2e{height:193.920000pt;}
.h44{height:194.106667pt;}
.h4c{height:211.546667pt;}
.h32{height:211.706667pt;}
.h46{height:229.146667pt;}
.h35{height:239.200000pt;}
.h1f{height:407.335401pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w26{width:14.720000pt;}
.w24{width:18.400000pt;}
.w15{width:38.481831pt;}
.w14{width:39.283536pt;}
.w2d{width:43.680000pt;}
.w17{width:44.093765pt;}
.w13{width:45.697174pt;}
.w30{width:48.706776pt;}
.w16{width:48.903994pt;}
.w3{width:51.392000pt;}
.w32{width:54.626935pt;}
.w3a{width:54.626936pt;}
.w33{width:54.896033pt;}
.w31{width:55.165131pt;}
.w34{width:55.434230pt;}
.w39{width:56.779721pt;}
.w1f{width:60.000000pt;}
.w23{width:66.112000pt;}
.w25{width:67.680000pt;}
.w1d{width:69.920000pt;}
.w1e{width:69.952000pt;}
.w38{width:69.965532pt;}
.w35{width:70.503729pt;}
.w36{width:71.311024pt;}
.w37{width:73.194711pt;}
.w20{width:75.392000pt;}
.w3c{width:76.962086pt;}
.w10{width:78.567071pt;}
.w3b{width:79.922166pt;}
.w21{width:84.640000pt;}
.w19{width:84.800000pt;}
.w27{width:87.072000pt;}
.w2a{width:87.200000pt;}
.w7{width:91.872000pt;}
.w8{width:93.760000pt;}
.w18{width:97.952000pt;}
.w2b{width:99.232000pt;}
.w28{width:99.360000pt;}
.w3d{width:101.632000pt;}
.w3f{width:101.792000pt;}
.w12{width:105.023330pt;}
.wb{width:107.232000pt;}
.w1c{width:115.552000pt;}
.w1a{width:125.792000pt;}
.wc{width:130.432000pt;}
.wd{width:132.352000pt;}
.w1b{width:133.946667pt;}
.w3e{width:136.160000pt;}
.w40{width:136.186667pt;}
.w29{width:138.426667pt;}
.w2c{width:138.586667pt;}
.wa{width:142.266667pt;}
.w2e{width:142.746667pt;}
.we{width:149.918798pt;}
.wf{width:150.720503pt;}
.w22{width:157.946667pt;}
.w6{width:292.066667pt;}
.w2f{width:318.658913pt;}
.w5{width:333.986667pt;}
.w9{width:370.013333pt;}
.w11{width:375.197865pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x59{left:3.655251pt;}
.x5f{left:5.974429pt;}
.x3{left:7.200000pt;}
.x26{left:9.600000pt;}
.x42{left:10.849739pt;}
.x5d{left:13.410061pt;}
.x37{left:15.165583pt;}
.x5b{left:20.294490pt;}
.x63{left:23.949741pt;}
.x36{left:30.905721pt;}
.x35{left:35.849567pt;}
.x3f{left:39.049705pt;}
.x38{left:40.486093pt;}
.x68{left:41.822343pt;}
.x1{left:48.159988pt;}
.x45{left:50.719988pt;}
.x34{left:52.110813pt;}
.x12{left:53.279988pt;}
.x2{left:55.200000pt;}
.x29{left:56.512000pt;}
.x52{left:59.679988pt;}
.x2a{left:62.912000pt;}
.x11{left:66.879988pt;}
.x28{left:70.080000pt;}
.x9{left:71.199988pt;}
.x10{left:78.111988pt;}
.x69{left:82.504383pt;}
.xe{left:85.791988pt;}
.xc{left:96.511988pt;}
.x4{left:107.232000pt;}
.x61{left:125.691281pt;}
.x1d{left:127.551988pt;}
.x5e{left:134.169446pt;}
.x53{left:135.066667pt;}
.x19{left:137.306655pt;}
.x2e{left:139.866667pt;}
.x65{left:141.926874pt;}
.x1a{left:144.346655pt;}
.x2b{left:145.786667pt;}
.x66{left:147.847035pt;}
.x67{left:150.315336pt;}
.x13{left:152.346655pt;}
.x27{left:167.080000pt;}
.x62{left:172.650486pt;}
.x39{left:173.801686pt;}
.x3e{left:176.206810pt;}
.x3a{left:200.185700pt;}
.x3d{left:203.272270pt;}
.x4c{left:205.946667pt;}
.x14{left:210.426655pt;}
.x3c{left:219.974450pt;}
.x5c{left:221.088165pt;}
.x3b{left:224.784679pt;}
.x47{left:230.746667pt;}
.x2f{left:233.626667pt;}
.x60{left:235.888562pt;}
.xa{left:245.186655pt;}
.xd{left:262.786655pt;}
.x2c{left:266.626655pt;}
.x64{left:270.871331pt;}
.x4e{left:272.066667pt;}
.x57{left:275.502735pt;}
.x4d{left:281.346667pt;}
.x5a{left:284.930142pt;}
.x4f{left:290.466667pt;}
.x8{left:297.341333pt;}
.x7{left:301.821333pt;}
.x44{left:309.289810pt;}
.x40{left:312.496622pt;}
.x2d{left:313.986655pt;}
.x58{left:315.541630pt;}
.x31{left:340.866667pt;}
.x33{left:342.159695pt;}
.x48{left:356.546667pt;}
.x50{left:358.146667pt;}
.x6{left:367.581333pt;}
.x1e{left:377.986655pt;}
.x5{left:379.581333pt;}
.xb{left:396.893322pt;}
.x25{left:410.813333pt;}
.xf{left:420.893322pt;}
.x46{left:428.413322pt;}
.x51{left:441.693322pt;}
.x6c{left:444.893322pt;}
.x41{left:446.381325pt;}
.x43{left:448.786449pt;}
.x15{left:458.653322pt;}
.x56{left:464.573333pt;}
.x6b{left:468.893322pt;}
.x32{left:471.293333pt;}
.x23{left:488.573322pt;}
.x49{left:490.493333pt;}
.x1f{left:493.853322pt;}
.x24{left:500.413322pt;}
.x54{left:508.093333pt;}
.x1b{left:511.613322pt;}
.x20{left:519.293322pt;}
.x16{left:521.853322pt;}
.x1c{left:523.293322pt;}
.x18{left:544.733322pt;}
.x17{left:583.333322pt;}
.x21{left:602.213322pt;}
.x30{left:603.653333pt;}
.x4a{left:606.053333pt;}
.x55{left:607.333333pt;}
.x6a{left:609.733333pt;}
.x4b{left:675.973333pt;}
.x22{left:756.639988pt;}
}




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