
    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_4f807cd556072e1a4a77d1da.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_d92f6e152ff62231109085cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_f83fe3e6e225133eb560393b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_c045746c7862567fbf3aa309.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995605;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_97eec77b955bc3081556c697.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.995605;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_0d0d40ff712921d029a79c57.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_54390cbc81758c13bc0750ee.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_fb0eec2303b9664dad7e113b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_a61652c79ff51f1ac79b9c41.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-6.240000px;}
.ls24{letter-spacing:-1.926000px;}
.ls7{letter-spacing:-1.440000px;}
.ls1d{letter-spacing:-1.422000px;}
.ls10{letter-spacing:-0.972000px;}
.ls8{letter-spacing:-0.942000px;}
.ls25{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.507000px;}
.ls6{letter-spacing:-0.486600px;}
.ls2a{letter-spacing:-0.485400px;}
.ls18{letter-spacing:-0.466800px;}
.ls1e{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.250800px;}
.ls19{letter-spacing:-0.020160px;}
.ls9{letter-spacing:-0.015600px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.015840px;}
.ls0{letter-spacing:0.020160px;}
.lsb{letter-spacing:0.020400px;}
.ls28{letter-spacing:0.250800px;}
.lse{letter-spacing:0.466800px;}
.ls1a{letter-spacing:0.486600px;}
.ls1{letter-spacing:0.519840px;}
.lsc{letter-spacing:0.665280px;}
.ls3{letter-spacing:0.720000px;}
.ls2{letter-spacing:1.080000px;}
.lsa{letter-spacing:1.692000px;}
.ls16{letter-spacing:9.106560px;}
.ls29{letter-spacing:11.269440px;}
.ls17{letter-spacing:13.426560px;}
.lsd{letter-spacing:26.386560px;}
.ls11{letter-spacing:26.398560px;}
.ls12{letter-spacing:32.146560px;}
.ls27{letter-spacing:35.749440px;}
.ls13{letter-spacing:36.466560px;}
.ls14{letter-spacing:39.346560px;}
.ls1f{letter-spacing:40.786560px;}
.ls20{letter-spacing:40.906560px;}
.ls15{letter-spacing:42.226560px;}
.ls26{letter-spacing:63.826560px;}
.ls23{letter-spacing:66.826560px;}
.ls22{letter-spacing:68.266560px;}
.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;}
}
.ws12{word-spacing:-60.480000px;}
.ws3{word-spacing:-54.720000px;}
.wsf{word-spacing:-15.606600px;}
.wsb{word-spacing:-15.586800px;}
.ws9{word-spacing:-15.140400px;}
.ws5{word-spacing:-15.120000px;}
.wse{word-spacing:-15.099840px;}
.wsd{word-spacing:-14.653200px;}
.ws0{word-spacing:-14.633400px;}
.ws10{word-spacing:-14.613000px;}
.wsc{word-spacing:-14.148000px;}
.ws1{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.572000px;}
.ws14{word-spacing:-13.194000px;}
.ws6{word-spacing:-12.600000px;}
.ws16{word-spacing:-12.545280px;}
.ws15{word-spacing:-12.130800px;}
.ws17{word-spacing:-11.895840px;}
.ws2{word-spacing:-11.880000px;}
.ws7{word-spacing:-11.864400px;}
.ws13{word-spacing:-11.629200px;}
.ws19{word-spacing:-11.394600px;}
.ws18{word-spacing:-11.160000px;}
.ws11{word-spacing:-8.880000px;}
.wsa{word-spacing:0.000000px;}
.ws4{word-spacing:29.773080px;}
._45{margin-left:-7.831049px;}
._29{margin-left:-6.612624px;}
._1d{margin-left:-4.992244px;}
._1a{margin-left:-3.625536px;}
._2{margin-left:-2.491917px;}
._0{margin-left:-1.451399px;}
._1{width:1.621678px;}
._3{width:3.128758px;}
._4{width:4.333917px;}
._22{width:5.399043px;}
._6{width:6.488496px;}
._5{width:7.715411px;}
._9{width:9.703721px;}
._14{width:10.933692px;}
._19{width:12.555444px;}
._21{width:13.779927px;}
._d{width:14.803972px;}
._e{width:15.927834px;}
._f{width:17.594637px;}
._10{width:18.697560px;}
._11{width:20.112140px;}
._24{width:21.302831px;}
._18{width:22.616801px;}
._17{width:24.108639px;}
._a{width:25.770313px;}
._b{width:27.528129px;}
._2e{width:28.544538px;}
._c{width:29.733337px;}
._26{width:30.965543px;}
._13{width:32.261452px;}
._12{width:33.656604px;}
._7{width:34.934758px;}
._2d{width:36.025670px;}
._8{width:37.069621px;}
._3c{width:38.080670px;}
._25{width:39.151870px;}
._1f{width:40.272863px;}
._20{width:41.585518px;}
._15{width:43.033537px;}
._16{width:44.456821px;}
._39{width:45.476818px;}
._28{width:46.532639px;}
._27{width:48.625920px;}
._2f{width:50.379719px;}
._3e{width:51.431035px;}
._34{width:52.436160px;}
._33{width:54.310919px;}
._2b{width:55.399559px;}
._2c{width:56.402882px;}
._2a{width:57.407757px;}
._32{width:59.740556px;}
._31{width:61.084679px;}
._1b{width:62.599442px;}
._1c{width:63.949443px;}
._36{width:65.523842px;}
._30{width:66.624716px;}
._3d{width:71.753762px;}
._38{width:72.914156px;}
._3b{width:74.450759px;}
._49{width:76.167360px;}
._1e{width:77.495900px;}
._23{width:79.240916px;}
._44{width:80.401439px;}
._42{width:82.215718px;}
._41{width:84.755878px;}
._43{width:93.744000px;}
._46{width:99.028679px;}
._47{width:102.041876px;}
._48{width:103.372678px;}
._37{width:109.347840px;}
._3a{width:157.680000px;}
._35{width:188.128556px;}
._40{width:189.483719px;}
._3f{width:190.947597px;}
._4a{width:192.546494px;}
.fc7{color:rgb(0,29,53);}
.fc6{color:rgb(61,68,82);}
.fc5{color:rgb(65,64,66);}
.fc3{color:rgb(51,51,255);}
.fc4{color:rgb(14,16,26);}
.fc2{color:rgb(14,16,26);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:18.720000px;}
.fs7{font-size:24.480000px;}
.fs6{font-size:30.240000px;}
.fs9{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs5{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:2.520000px;}
.y79{bottom:2.565000px;}
.y65{bottom:2.880000px;}
.y148{bottom:3.240000px;}
.y151{bottom:3.960000px;}
.y7{bottom:4.680000px;}
.y196{bottom:9.360000px;}
.y1e1{bottom:9.390000px;}
.y169{bottom:9.720000px;}
.y190{bottom:10.080000px;}
.y146{bottom:10.440000px;}
.y14f{bottom:10.800000px;}
.y4{bottom:10.836000px;}
.y8{bottom:13.716000px;}
.ya{bottom:16.200000px;}
.y16e{bottom:16.560000px;}
.y1e2{bottom:16.590000px;}
.y150{bottom:17.640000px;}
.y6{bottom:18.360000px;}
.y3{bottom:19.116000px;}
.y9{bottom:30.240000px;}
.y1db{bottom:30.285000px;}
.y5{bottom:32.400000px;}
.yb1{bottom:81.396000px;}
.y206{bottom:82.116000px;}
.y261{bottom:83.196000px;}
.y143{bottom:84.996000px;}
.ye8{bottom:86.436000px;}
.y1e8{bottom:86.796000px;}
.y1a6{bottom:87.876000px;}
.y231{bottom:88.236000px;}
.ya0{bottom:91.476000px;}
.y17a{bottom:92.916000px;}
.y228{bottom:96.516000px;}
.y260{bottom:96.876000px;}
.y3f{bottom:98.316000px;}
.yb0{bottom:99.396000px;}
.y205{bottom:100.116000px;}
.y142{bottom:103.356000px;}
.ye7{bottom:104.436000px;}
.y1e7{bottom:104.796000px;}
.y1a5{bottom:105.156000px;}
.y230{bottom:106.596000px;}
.y9f{bottom:109.476000px;}
.y179{bottom:110.916000px;}
.y3e{bottom:111.996000px;}
.y227{bottom:114.516000px;}
.yaf{bottom:117.756000px;}
.y204{bottom:118.116000px;}
.y141{bottom:121.356000px;}
.ye6{bottom:122.436000px;}
.y22f{bottom:124.596000px;}
.y3d{bottom:126.036000px;}
.y1e6{bottom:126.396000px;}
.y9e{bottom:127.836000px;}
.y178{bottom:128.916000px;}
.y226{bottom:132.552000px;}
.yae{bottom:135.792000px;}
.y203{bottom:136.512000px;}
.y25f{bottom:138.312000px;}
.y140{bottom:139.392000px;}
.y1a4{bottom:139.752000px;}
.ye5{bottom:140.472000px;}
.y117{bottom:140.832000px;}
.y22e{bottom:142.632000px;}
.y9d{bottom:145.872000px;}
.y177{bottom:150.555000px;}
.y3c{bottom:151.995000px;}
.y25e{bottom:152.355000px;}
.yad{bottom:153.795000px;}
.y202{bottom:154.515000px;}
.y1a3{bottom:156.675000px;}
.y13f{bottom:157.755000px;}
.ye4{bottom:158.835000px;}
.y1e5{bottom:160.275000px;}
.y22d{bottom:160.635000px;}
.y9c{bottom:163.875000px;}
.y3b{bottom:165.675000px;}
.y25d{bottom:166.035000px;}
.y225{bottom:168.915000px;}
.y176{bottom:169.995000px;}
.yac{bottom:172.155000px;}
.y201{bottom:172.515000px;}
.y1a2{bottom:173.955000px;}
.y13e{bottom:175.755000px;}
.ye3{bottom:176.835000px;}
.y22c{bottom:178.995000px;}
.y25c{bottom:179.715000px;}
.y3a{bottom:180.075000px;}
.y9b{bottom:182.235000px;}
.y175{bottom:184.755000px;}
.y224{bottom:186.915000px;}
.yab{bottom:190.155000px;}
.y200{bottom:190.515000px;}
.y1a1{bottom:191.235000px;}
.y13d{bottom:193.755000px;}
.ye2{bottom:194.835000px;}
.y116{bottom:195.195000px;}
.y39{bottom:196.995000px;}
.y9a{bottom:200.235000px;}
.y1e4{bottom:202.395000px;}
.y223{bottom:204.915000px;}
.y25b{bottom:207.435000px;}
.yaa{bottom:208.155000px;}
.y1a0{bottom:208.515000px;}
.y1ff{bottom:208.875000px;}
.y13c{bottom:212.115000px;}
.y38{bottom:212.475000px;}
.ye1{bottom:213.195000px;}
.y174{bottom:213.555000px;}
.y22b{bottom:214.995000px;}
.y99{bottom:218.235000px;}
.y25a{bottom:221.115000px;}
.y222{bottom:223.275000px;}
.y19f{bottom:225.795000px;}
.ya9{bottom:226.515000px;}
.y1fe{bottom:226.875000px;}
.y37{bottom:227.955000px;}
.y173{bottom:228.315000px;}
.y13b{bottom:230.115000px;}
.y1e3{bottom:230.835000px;}
.ye0{bottom:231.195000px;}
.y22a{bottom:233.355000px;}
.y115{bottom:234.795000px;}
.y259{bottom:235.155000px;}
.y98{bottom:236.595000px;}
.y221{bottom:241.275000px;}
.y19e{bottom:243.075000px;}
.y36{bottom:243.435000px;}
.ya8{bottom:244.515000px;}
.y1fd{bottom:244.875000px;}
.y13a{bottom:248.115000px;}
.y258{bottom:248.835000px;}
.ydf{bottom:249.195000px;}
.y229{bottom:251.355000px;}
.y97{bottom:254.595000px;}
.y172{bottom:257.115000px;}
.y35{bottom:258.915000px;}
.y1e0{bottom:259.275000px;}
.y19d{bottom:260.355000px;}
.y114{bottom:262.155000px;}
.ya7{bottom:262.515000px;}
.y139{bottom:266.505000px;}
.yde{bottom:267.585000px;}
.y171{bottom:271.905000px;}
.y96{bottom:272.625000px;}
.y34{bottom:274.425000px;}
.y257{bottom:276.585000px;}
.y220{bottom:277.665000px;}
.y113{bottom:280.185000px;}
.ya6{bottom:280.905000px;}
.y19c{bottom:281.985000px;}
.y138{bottom:284.505000px;}
.ydd{bottom:285.585000px;}
.y1fc{bottom:285.945000px;}
.y170{bottom:286.305000px;}
.y1df{bottom:287.745000px;}
.y256{bottom:290.265000px;}
.y95{bottom:290.985000px;}
.y21f{bottom:295.665000px;}
.y112{bottom:298.185000px;}
.ya5{bottom:298.905000px;}
.y1fb{bottom:300.705000px;}
.y16f{bottom:301.065000px;}
.y19b{bottom:301.425000px;}
.y137{bottom:302.505000px;}
.y1de{bottom:303.225000px;}
.ydc{bottom:303.585000px;}
.y255{bottom:303.945000px;}
.y33{bottom:308.625000px;}
.y94{bottom:308.985000px;}
.y21e{bottom:313.665000px;}
.y16d{bottom:315.825000px;}
.y111{bottom:316.545000px;}
.ya4{bottom:316.905000px;}
.y60{bottom:317.625000px;}
.y254{bottom:317.985000px;}
.y136{bottom:320.865000px;}
.ydb{bottom:321.945000px;}
.y93{bottom:326.985000px;}
.y1fa{bottom:329.145000px;}
.y1dd{bottom:331.665000px;}
.y21d{bottom:332.025000px;}
.y32{bottom:334.185000px;}
.y110{bottom:334.545000px;}
.ya3{bottom:334.905000px;}
.y5f{bottom:337.425000px;}
.y135{bottom:338.865000px;}
.yda{bottom:339.945000px;}
.y19a{bottom:344.265000px;}
.y16c{bottom:344.625000px;}
.y92{bottom:344.985000px;}
.y253{bottom:345.345000px;}
.y1dc{bottom:347.145000px;}
.y21c{bottom:350.025000px;}
.y10f{bottom:352.545000px;}
.ya2{bottom:353.265000px;}
.y134{bottom:356.865000px;}
.y5e{bottom:357.225000px;}
.yd9{bottom:357.945000px;}
.y16b{bottom:359.385000px;}
.y21b{bottom:368.025000px;}
.y10e{bottom:370.905000px;}
.y91{bottom:371.265000px;}
.y199{bottom:372.705000px;}
.y252{bottom:373.065000px;}
.y31{bottom:374.505000px;}
.y133{bottom:374.865000px;}
.y1da{bottom:375.585000px;}
.yd8{bottom:375.945000px;}
.y5d{bottom:377.025000px;}
.y21a{bottom:386.025000px;}
.y251{bottom:386.745000px;}
.y168{bottom:388.185000px;}
.y10d{bottom:388.905000px;}
.ya1{bottom:389.265000px;}
.y132{bottom:393.225000px;}
.yd7{bottom:394.305000px;}
.y5c{bottom:397.185000px;}
.y1f9{bottom:399.390000px;}
.y198{bottom:400.830000px;}
.y16a{bottom:402.630000px;}
.y219{bottom:404.430000px;}
.y10c{bottom:406.950000px;}
.y90{bottom:407.670000px;}
.y30{bottom:409.470000px;}
.y131{bottom:411.270000px;}
.yd6{bottom:412.350000px;}
.y250{bottom:414.510000px;}
.y197{bottom:415.590000px;}
.y5b{bottom:417.030000px;}
.y1d8{bottom:417.750000px;}
.y218{bottom:422.430000px;}
.y2f{bottom:424.950000px;}
.y8f{bottom:425.670000px;}
.y167{bottom:426.390000px;}
.y1f8{bottom:427.830000px;}
.y24f{bottom:428.190000px;}
.yd5{bottom:430.350000px;}
.y1d9{bottom:432.510000px;}
.y130{bottom:432.870000px;}
.y5a{bottom:436.830000px;}
.y2e{bottom:440.430000px;}
.y24e{bottom:442.230000px;}
.y10b{bottom:443.310000px;}
.y8e{bottom:443.670000px;}
.y195{bottom:444.030000px;}
.y166{bottom:447.630000px;}
.yd4{bottom:448.710000px;}
.y12f{bottom:450.150000px;}
.y2d{bottom:455.910000px;}
.y1d7{bottom:456.270000px;}
.y59{bottom:456.630000px;}
.y165{bottom:457.350000px;}
.y217{bottom:458.790000px;}
.y10a{bottom:461.310000px;}
.y8d{bottom:462.030000px;}
.yd3{bottom:466.710000px;}
.y24d{bottom:469.590000px;}
.y1f7{bottom:469.950000px;}
.y2c{bottom:471.390000px;}
.y194{bottom:472.110000px;}
.y164{bottom:475.710000px;}
.y58{bottom:476.430000px;}
.y216{bottom:476.790000px;}
.y1d6{bottom:477.150000px;}
.y12e{bottom:477.510000px;}
.y109{bottom:479.310000px;}
.y8c{bottom:480.030000px;}
.y24c{bottom:483.630000px;}
.yd2{bottom:484.710000px;}
.y2b{bottom:487.230000px;}
.y163{bottom:493.710000px;}
.y215{bottom:494.790000px;}
.y12d{bottom:495.510000px;}
.y57{bottom:496.230000px;}
.y24b{bottom:497.310000px;}
.y8b{bottom:498.030000px;}
.y193{bottom:500.550000px;}
.y1d5{bottom:501.990000px;}
.y2a{bottom:502.710000px;}
.yd1{bottom:503.070000px;}
.y108{bottom:505.590000px;}
.y24a{bottom:510.990000px;}
.y162{bottom:511.710000px;}
.y1f6{bottom:512.070000px;}
.y214{bottom:513.150000px;}
.y12c{bottom:513.510000px;}
.y56{bottom:516.030000px;}
.y8a{bottom:516.390000px;}
.y1d4{bottom:519.270000px;}
.yd0{bottom:521.070000px;}
.y29{bottom:523.950000px;}
.y249{bottom:525.030000px;}
.y192{bottom:528.990000px;}
.y161{bottom:530.070000px;}
.y213{bottom:531.150000px;}
.y12b{bottom:531.870000px;}
.y89{bottom:534.420000px;}
.y55{bottom:535.860000px;}
.y1d3{bottom:536.220000px;}
.y248{bottom:538.740000px;}
.ycf{bottom:539.100000px;}
.y28{bottom:539.820000px;}
.y1f5{bottom:540.540000px;}
.y107{bottom:541.980000px;}
.y18f{bottom:543.420000px;}
.y160{bottom:548.100000px;}
.y212{bottom:549.180000px;}
.y12a{bottom:549.900000px;}
.y88{bottom:552.420000px;}
.y1d2{bottom:553.500000px;}
.y1f4{bottom:554.940000px;}
.y27{bottom:555.300000px;}
.y54{bottom:555.660000px;}
.yce{bottom:557.460000px;}
.y191{bottom:558.180000px;}
.y106{bottom:559.980000px;}
.y15f{bottom:566.100000px;}
.y247{bottom:566.460000px;}
.y211{bottom:567.540000px;}
.y129{bottom:567.900000px;}
.y87{bottom:570.420000px;}
.y1d1{bottom:570.780000px;}
.y53{bottom:575.460000px;}
.y105{bottom:577.980000px;}
.y26{bottom:578.700000px;}
.y246{bottom:580.140000px;}
.y18e{bottom:581.580000px;}
.y1f2{bottom:583.380000px;}
.y15e{bottom:584.460000px;}
.y210{bottom:585.540000px;}
.y128{bottom:586.260000px;}
.y1d0{bottom:588.060000px;}
.y86{bottom:588.780000px;}
.ycd{bottom:593.460000px;}
.y245{bottom:593.820000px;}
.y52{bottom:595.620000px;}
.y104{bottom:596.340000px;}
.y25{bottom:596.700000px;}
.y1f3{bottom:598.140000px;}
.y15d{bottom:602.460000px;}
.y20f{bottom:603.540000px;}
.y127{bottom:604.260000px;}
.y1cf{bottom:605.340000px;}
.y85{bottom:606.780000px;}
.y244{bottom:607.500000px;}
.ycc{bottom:611.460000px;}
.y24{bottom:614.340000px;}
.y51{bottom:615.420000px;}
.y15c{bottom:620.460000px;}
.y1f1{bottom:621.540000px;}
.y126{bottom:622.260000px;}
.y1ce{bottom:622.620000px;}
.y84{bottom:624.780000px;}
.y18d{bottom:628.740000px;}
.ycb{bottom:629.820000px;}
.y23{bottom:632.340000px;}
.y50{bottom:635.220000px;}
.y15b{bottom:638.820000px;}
.y1cd{bottom:639.900000px;}
.y125{bottom:640.260000px;}
.y1f0{bottom:644.580000px;}
.y83{bottom:646.380000px;}
.y18c{bottom:646.740000px;}
.yca{bottom:647.820000px;}
.y243{bottom:648.900000px;}
.y22{bottom:649.980000px;}
.y103{bottom:650.340000px;}
.y4f{bottom:655.020000px;}
.y15a{bottom:656.820000px;}
.y1cc{bottom:657.180000px;}
.y20e{bottom:657.900000px;}
.y124{bottom:658.620000px;}
.y242{bottom:662.940000px;}
.y18b{bottom:664.740000px;}
.y82{bottom:665.850000px;}
.y21{bottom:668.010000px;}
.y102{bottom:668.730000px;}
.y1cb{bottom:674.490000px;}
.y4e{bottom:674.850000px;}
.y20d{bottom:675.930000px;}
.y123{bottom:676.650000px;}
.y81{bottom:680.610000px;}
.y18a{bottom:683.130000px;}
.yc9{bottom:684.210000px;}
.y20{bottom:685.650000px;}
.y101{bottom:686.730000px;}
.y241{bottom:690.330000px;}
.y1ca{bottom:691.770000px;}
.y159{bottom:692.850000px;}
.y20c{bottom:694.290000px;}
.y4d{bottom:694.650000px;}
.y80{bottom:695.010000px;}
.y189{bottom:701.130000px;}
.yc8{bottom:702.210000px;}
.y1f{bottom:703.650000px;}
.y240{bottom:704.370000px;}
.y100{bottom:704.730000px;}
.y1c9{bottom:709.050000px;}
.y7f{bottom:709.770000px;}
.y158{bottom:711.210000px;}
.y20b{bottom:712.290000px;}
.y122{bottom:713.010000px;}
.y4c{bottom:714.450000px;}
.y23f{bottom:718.050000px;}
.y188{bottom:719.130000px;}
.yc7{bottom:720.210000px;}
.y1e{bottom:721.650000px;}
.yff{bottom:723.090000px;}
.y7e{bottom:724.170000px;}
.y157{bottom:729.210000px;}
.y1c8{bottom:730.290000px;}
.y121{bottom:731.010000px;}
.y23e{bottom:731.730000px;}
.y4b{bottom:734.250000px;}
.y187{bottom:737.490000px;}
.y7d{bottom:738.570000px;}
.y1d{bottom:739.290000px;}
.yfe{bottom:741.090000px;}
.y23d{bottom:745.770000px;}
.y156{bottom:747.210000px;}
.y20a{bottom:748.650000px;}
.y120{bottom:749.010000px;}
.y1c7{bottom:750.090000px;}
.y7c{bottom:753.330000px;}
.y4a{bottom:754.050000px;}
.y186{bottom:755.490000px;}
.yc6{bottom:756.570000px;}
.y1c{bottom:757.290000px;}
.yfd{bottom:759.090000px;}
.y23c{bottom:759.450000px;}
.y1c6{bottom:764.490000px;}
.y155{bottom:765.570000px;}
.y209{bottom:766.650000px;}
.y11f{bottom:767.370000px;}
.y7b{bottom:767.730000px;}
.y23b{bottom:773.130000px;}
.y185{bottom:773.490000px;}
.y49{bottom:773.850000px;}
.yc5{bottom:774.570000px;}
.y1b{bottom:774.930000px;}
.yfc{bottom:777.450000px;}
.y7a{bottom:782.490000px;}
.y208{bottom:784.650000px;}
.y11e{bottom:785.370000px;}
.y154{bottom:787.170000px;}
.y184{bottom:791.850000px;}
.y1a{bottom:792.930000px;}
.y48{bottom:794.010000px;}
.yfb{bottom:795.450000px;}
.y78{bottom:796.890000px;}
.y23a{bottom:800.895000px;}
.y275{bottom:801.975000px;}
.y207{bottom:803.055000px;}
.y11d{bottom:803.415000px;}
.y153{bottom:806.655000px;}
.y183{bottom:809.895000px;}
.y19{bottom:810.975000px;}
.y77{bottom:811.695000px;}
.yfa{bottom:813.495000px;}
.y47{bottom:813.855000px;}
.y239{bottom:814.575000px;}
.y1c5{bottom:821.055000px;}
.y274{bottom:821.415000px;}
.y11c{bottom:821.775000px;}
.y152{bottom:822.135000px;}
.y182{bottom:827.895000px;}
.y18{bottom:828.615000px;}
.yc4{bottom:828.975000px;}
.yf9{bottom:831.855000px;}
.y46{bottom:833.655000px;}
.y76{bottom:835.095000px;}
.y1c4{bottom:835.815000px;}
.y11b{bottom:839.775000px;}
.y238{bottom:842.295000px;}
.y181{bottom:845.895000px;}
.y17{bottom:846.615000px;}
.yc3{bottom:846.975000px;}
.yf8{bottom:849.855000px;}
.y1c3{bottom:850.215000px;}
.y14e{bottom:852.735000px;}
.y273{bottom:853.095000px;}
.y45{bottom:853.455000px;}
.y237{bottom:855.975000px;}
.y11a{bottom:857.775000px;}
.y75{bottom:859.575000px;}
.y16{bottom:864.255000px;}
.y1c2{bottom:864.975000px;}
.yc2{bottom:865.335000px;}
.yf7{bottom:867.855000px;}
.y236{bottom:870.015000px;}
.y272{bottom:870.375000px;}
.y44{bottom:873.255000px;}
.y119{bottom:875.775000px;}
.y74{bottom:877.575000px;}
.y1c1{bottom:879.375000px;}
.y15{bottom:882.255000px;}
.yc1{bottom:883.335000px;}
.y235{bottom:883.695000px;}
.y271{bottom:887.655000px;}
.y43{bottom:893.055000px;}
.y1c0{bottom:893.775000px;}
.yf6{bottom:894.135000px;}
.y234{bottom:897.375000px;}
.y73{bottom:899.175000px;}
.y14{bottom:900.255000px;}
.yc0{bottom:901.335000px;}
.y270{bottom:904.935000px;}
.y233{bottom:911.415000px;}
.y118{bottom:912.135000px;}
.y42{bottom:912.855000px;}
.y13{bottom:917.895000px;}
.y72{bottom:918.615000px;}
.ybf{bottom:919.695000px;}
.y26f{bottom:922.215000px;}
.y232{bottom:925.095000px;}
.yf5{bottom:930.135000px;}
.y1bf{bottom:931.575000px;}
.y41{bottom:932.655000px;}
.y71{bottom:933.045000px;}
.y12{bottom:935.925000px;}
.y180{bottom:936.645000px;}
.ybe{bottom:937.725000px;}
.y26e{bottom:939.525000px;}
.y14d{bottom:941.325000px;}
.y70{bottom:947.805000px;}
.yf4{bottom:948.525000px;}
.y40{bottom:952.485000px;}
.y1be{bottom:952.845000px;}
.y11{bottom:953.565000px;}
.y17f{bottom:954.645000px;}
.ybd{bottom:955.725000px;}
.y26d{bottom:956.805000px;}
.y1bd{bottom:961.845000px;}
.y6f{bottom:962.205000px;}
.y1b2{bottom:966.165000px;}
.yf3{bottom:966.525000px;}
.y14c{bottom:970.485000px;}
.y26c{bottom:970.845000px;}
.y17e{bottom:973.005000px;}
.ybc{bottom:974.085000px;}
.y6e{bottom:976.605000px;}
.y1bc{bottom:979.125000px;}
.y1b1{bottom:983.445000px;}
.yf2{bottom:984.525000px;}
.y14b{bottom:984.885000px;}
.y10{bottom:988.125000px;}
.y26b{bottom:990.645000px;}
.y17d{bottom:991.005000px;}
.ybb{bottom:992.085000px;}
.y1bb{bottom:996.045000px;}
.y14a{bottom:999.285000px;}
.y6d{bottom:1000.365000px;}
.y1b0{bottom:1000.725000px;}
.yf1{bottom:1002.885000px;}
.y26a{bottom:1004.325000px;}
.y1ef{bottom:1009.005000px;}
.yba{bottom:1010.085000px;}
.y17c{bottom:1012.605000px;}
.y1ba{bottom:1013.325000px;}
.y149{bottom:1014.045000px;}
.y1af{bottom:1018.005000px;}
.y269{bottom:1018.365000px;}
.yf0{bottom:1020.885000px;}
.y6c{bottom:1024.485000px;}
.y1ee{bottom:1027.365000px;}
.yb9{bottom:1028.445000px;}
.yf{bottom:1029.525000px;}
.y17b{bottom:1029.885000px;}
.y1b9{bottom:1030.605000px;}
.y268{bottom:1032.045000px;}
.y1ae{bottom:1035.285000px;}
.yef{bottom:1038.885000px;}
.y6b{bottom:1042.845000px;}
.y147{bottom:1043.205000px;}
.y1ed{bottom:1045.365000px;}
.y267{bottom:1045.725000px;}
.yb8{bottom:1046.445000px;}
.y1b8{bottom:1047.885000px;}
.y1ad{bottom:1052.565000px;}
.yee{bottom:1057.245000px;}
.y266{bottom:1059.405000px;}
.y1ec{bottom:1063.365000px;}
.y6a{bottom:1064.445000px;}
.y1b7{bottom:1065.165000px;}
.y145{bottom:1068.090000px;}
.y1ac{bottom:1069.890000px;}
.ye{bottom:1070.970000px;}
.y265{bottom:1073.490000px;}
.yed{bottom:1075.290000px;}
.y1eb{bottom:1081.410000px;}
.yb7{bottom:1082.490000px;}
.y69{bottom:1083.930000px;}
.y1ab{bottom:1087.170000px;}
.y144{bottom:1089.690000px;}
.yec{bottom:1093.290000px;}
.y68{bottom:1098.330000px;}
.y1b6{bottom:1099.770000px;}
.yb6{bottom:1100.850000px;}
.y1ea{bottom:1103.370000px;}
.y1aa{bottom:1104.090000px;}
.yeb{bottom:1111.290000px;}
.yd{bottom:1112.370000px;}
.y67{bottom:1113.090000px;}
.y264{bottom:1114.890000px;}
.y1b5{bottom:1117.050000px;}
.yb5{bottom:1118.850000px;}
.y1e9{bottom:1120.650000px;}
.y1a9{bottom:1121.370000px;}
.y66{bottom:1127.490000px;}
.y263{bottom:1128.570000px;}
.yea{bottom:1129.650000px;}
.y1b4{bottom:1134.330000px;}
.yb4{bottom:1136.850000px;}
.y1a8{bottom:1138.650000px;}
.y64{bottom:1141.890000px;}
.y262{bottom:1142.250000px;}
.ye9{bottom:1147.650000px;}
.y1b3{bottom:1151.610000px;}
.yc{bottom:1153.770000px;}
.yb3{bottom:1155.210000px;}
.y1a7{bottom:1155.930000px;}
.y63{bottom:1165.650000px;}
.yb2{bottom:1173.210000px;}
.y62{bottom:1182.930000px;}
.y61{bottom:1200.210000px;}
.y2{bottom:1217.520000px;}
.y1{bottom:1234.800000px;}
.h21{height:13.208203px;}
.hf{height:13.680000px;}
.h12{height:13.716000px;}
.he{height:14.040000px;}
.h16{height:14.760000px;}
.h18{height:15.120000px;}
.h1a{height:17.272266px;}
.h14{height:21.336328px;}
.h1f{height:27.360000px;}
.h20{height:27.396000px;}
.h1e{height:27.720000px;}
.h22{height:27.756000px;}
.h1c{height:28.080000px;}
.h1d{height:28.440000px;}
.h1b{height:28.476000px;}
.h15{height:29.520000px;}
.h19{height:29.880000px;}
.h11{height:33.528516px;}
.h5{height:36.150469px;}
.h23{height:37.437188px;}
.hd{height:38.608594px;}
.ha{height:41.227031px;}
.h7{height:41.400000px;}
.h17{height:41.436000px;}
.h6{height:42.600937px;}
.h2{height:42.672656px;}
.h4{height:43.560000px;}
.h13{height:44.031094px;}
.h24{height:44.798906px;}
.h10{height:46.009688px;}
.hb{height:49.055625px;}
.h3{height:54.219375px;}
.h9{height:59.383125px;}
.h25{height:64.546875px;}
.hc{height:107.147812px;}
.h8{height:129.093750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w27{width:33.120000px;}
.w26{width:33.156000px;}
.w29{width:33.516000px;}
.w20{width:33.876000px;}
.w3c{width:34.596000px;}
.w28{width:36.000000px;}
.wb{width:39.240000px;}
.w8{width:39.276000px;}
.wa{width:39.600000px;}
.w3a{width:40.356000px;}
.w7{width:41.760000px;}
.w6{width:41.796000px;}
.wc{width:42.120000px;}
.wf{width:42.480000px;}
.we{width:42.516000px;}
.w25{width:42.840000px;}
.w9{width:44.280000px;}
.w2f{width:44.676000px;}
.w13{width:45.000000px;}
.w1e{width:45.360000px;}
.w1d{width:45.720000px;}
.w1f{width:45.756000px;}
.w21{width:46.440000px;}
.w18{width:47.520000px;}
.w10{width:47.556000px;}
.w17{width:50.760000px;}
.w39{width:54.720000px;}
.w3b{width:55.080000px;}
.w36{width:56.556000px;}
.w19{width:56.880000px;}
.w35{width:56.916000px;}
.w33{width:60.840000px;}
.w23{width:67.356000px;}
.w34{width:69.876000px;}
.w24{width:70.236000px;}
.w2a{width:73.476000px;}
.w2c{width:74.196000px;}
.w1c{width:79.956000px;}
.w16{width:90.036000px;}
.w38{width:90.396000px;}
.w1b{width:91.836000px;}
.w2e{width:95.076000px;}
.w15{width:95.796000px;}
.w2d{width:105.156000px;}
.w32{width:127.872000px;}
.w31{width:131.436000px;}
.w5{width:155.235000px;}
.wd{width:155.550000px;}
.w12{width:169.635000px;}
.w11{width:180.075000px;}
.w3{width:186.555000px;}
.w2b{width:190.515000px;}
.w2{width:267.945000px;}
.w30{width:370.950000px;}
.w37{width:415.230000px;}
.w14{width:468.930000px;}
.w1a{width:473.580000px;}
.w22{width:500.250000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.560000px;}
.x25{left:8.640000px;}
.x5a{left:9.720000px;}
.x5{left:10.800000px;}
.x31{left:11.880000px;}
.x30{left:12.960000px;}
.x3f{left:14.805000px;}
.x32{left:15.840000px;}
.x3e{left:17.640000px;}
.x4f{left:18.720000px;}
.x5e{left:19.830000px;}
.x51{left:20.880000px;}
.x52{left:22.680000px;}
.x57{left:23.760000px;}
.x5d{left:25.200000px;}
.x6e{left:26.640000px;}
.x5f{left:28.080000px;}
.x79{left:29.160000px;}
.x3d{left:30.645000px;}
.x42{left:32.445000px;}
.x6d{left:33.480000px;}
.x3b{left:34.605000px;}
.x38{left:35.685000px;}
.x6f{left:36.720000px;}
.x43{left:40.005000px;}
.x36{left:44.325000px;}
.x3c{left:45.405000px;}
.x3a{left:47.565000px;}
.x41{left:52.965000px;}
.x4{left:60.516000px;}
.x39{left:68.430000px;}
.xd{left:70.236000px;}
.x37{left:71.310000px;}
.x40{left:74.550000px;}
.x12{left:76.355987px;}
.xc{left:81.036000px;}
.x72{left:85.716000px;}
.x8a{left:91.475987px;}
.x7f{left:94.716000px;}
.x46{left:97.235987px;}
.x7e{left:99.035987px;}
.x7{left:100.476000px;}
.x60{left:102.275987px;}
.x71{left:110.915987px;}
.x49{left:115.596000px;}
.x15{left:116.676000px;}
.x45{left:119.555987px;}
.x47{left:121.355987px;}
.x9{left:123.156000px;}
.x8{left:124.596000px;}
.x54{left:128.952000px;}
.x73{left:131.112000px;}
.x23{left:133.632000px;}
.x44{left:137.951987px;}
.x80{left:151.995000px;}
.x68{left:166.395000px;}
.xe{left:177.915000px;}
.x81{left:179.355000px;}
.x48{left:186.914987px;}
.x33{left:204.194987px;}
.x55{left:214.998000px;}
.x4a{left:216.474000px;}
.x61{left:231.954000px;}
.x69{left:240.945000px;}
.x34{left:250.305000px;}
.x53{left:259.664987px;}
.x22{left:268.664987px;}
.x14{left:269.744987px;}
.x17{left:272.625000px;}
.x67{left:278.024987px;}
.x24{left:289.905000px;}
.x35{left:292.785000px;}
.x18{left:315.150000px;}
.x26{left:332.430000px;}
.x13{left:342.149987px;}
.x19{left:357.990000px;}
.x27{left:372.750000px;}
.xa{left:373.830000px;}
.xb{left:392.220000px;}
.x1a{left:400.500000px;}
.x28{left:412.740000px;}
.x6a{left:432.180000px;}
.x2{left:436.140000px;}
.x3{left:439.020000px;}
.x1b{left:442.980000px;}
.x11{left:446.579987px;}
.x29{left:453.060000px;}
.x10{left:457.380000px;}
.x7d{left:462.419987px;}
.x7c{left:466.739987px;}
.xf{left:468.180000px;}
.x7a{left:470.699987px;}
.x1{left:473.220000px;}
.x1c{left:482.970000px;}
.x88{left:484.409987px;}
.x6{left:485.490000px;}
.x70{left:489.449987px;}
.x2a{left:496.290000px;}
.x7b{left:499.889987px;}
.x74{left:502.770000px;}
.x6b{left:507.090000px;}
.x89{left:511.409987px;}
.x1d{left:527.970000px;}
.x87{left:534.809987px;}
.x8c{left:536.969987px;}
.x2b{left:539.490000px;}
.x86{left:563.249987px;}
.x77{left:564.330000px;}
.x8b{left:565.409987px;}
.x82{left:568.335000px;}
.x1e{left:570.495000px;}
.x4b{left:585.255000px;}
.x2c{left:587.775000px;}
.x56{left:603.255000px;}
.x1f{left:610.815000px;}
.x6c{left:612.975000px;}
.x84{left:623.775000px;}
.x62{left:629.895000px;}
.x2d{left:630.975000px;}
.x4e{left:633.495000px;}
.x75{left:634.935000px;}
.x5b{left:649.335000px;}
.x20{left:651.135000px;}
.x65{left:664.125000px;}
.x2e{left:674.205000px;}
.x4c{left:681.765000px;}
.x21{left:691.125000px;}
.x78{left:692.565000px;}
.x58{left:695.805000px;}
.x63{left:698.325000px;}
.x2f{left:717.405000px;}
.x85{left:720.645000px;}
.x50{left:730.005000px;}
.x66{left:735.045000px;}
.x5c{left:741.885000px;}
.x83{left:755.970000px;}
.x76{left:763.530000px;}
.x64{left:769.290000px;}
.x4d{left:772.530000px;}
.x59{left:776.490000px;}
.x8d{left:822.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-5.546667pt;}
.ls24{letter-spacing:-1.712000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls1d{letter-spacing:-1.264000pt;}
.ls10{letter-spacing:-0.864000pt;}
.ls8{letter-spacing:-0.837333pt;}
.ls25{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.450667pt;}
.ls6{letter-spacing:-0.432533pt;}
.ls2a{letter-spacing:-0.431467pt;}
.ls18{letter-spacing:-0.414933pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.222933pt;}
.ls19{letter-spacing:-0.017920pt;}
.ls9{letter-spacing:-0.013867pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.014080pt;}
.ls0{letter-spacing:0.017920pt;}
.lsb{letter-spacing:0.018133pt;}
.ls28{letter-spacing:0.222933pt;}
.lse{letter-spacing:0.414933pt;}
.ls1a{letter-spacing:0.432533pt;}
.ls1{letter-spacing:0.462080pt;}
.lsc{letter-spacing:0.591360pt;}
.ls3{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.960000pt;}
.lsa{letter-spacing:1.504000pt;}
.ls16{letter-spacing:8.094720pt;}
.ls29{letter-spacing:10.017280pt;}
.ls17{letter-spacing:11.934720pt;}
.lsd{letter-spacing:23.454720pt;}
.ls11{letter-spacing:23.465387pt;}
.ls12{letter-spacing:28.574720pt;}
.ls27{letter-spacing:31.777280pt;}
.ls13{letter-spacing:32.414720pt;}
.ls14{letter-spacing:34.974720pt;}
.ls1f{letter-spacing:36.254720pt;}
.ls20{letter-spacing:36.361387pt;}
.ls15{letter-spacing:37.534720pt;}
.ls26{letter-spacing:56.734720pt;}
.ls23{letter-spacing:59.401387pt;}
.ls22{letter-spacing:60.681387pt;}
.ws12{word-spacing:-53.760000pt;}
.ws3{word-spacing:-48.640000pt;}
.wsf{word-spacing:-13.872533pt;}
.wsb{word-spacing:-13.854933pt;}
.ws9{word-spacing:-13.458133pt;}
.ws5{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.422080pt;}
.wsd{word-spacing:-13.025067pt;}
.ws0{word-spacing:-13.007467pt;}
.ws10{word-spacing:-12.989333pt;}
.wsc{word-spacing:-12.576000pt;}
.ws1{word-spacing:-12.160000pt;}
.ws8{word-spacing:-12.064000pt;}
.ws14{word-spacing:-11.728000pt;}
.ws6{word-spacing:-11.200000pt;}
.ws16{word-spacing:-11.151360pt;}
.ws15{word-spacing:-10.782933pt;}
.ws17{word-spacing:-10.574080pt;}
.ws2{word-spacing:-10.560000pt;}
.ws7{word-spacing:-10.546133pt;}
.ws13{word-spacing:-10.337067pt;}
.ws19{word-spacing:-10.128533pt;}
.ws18{word-spacing:-9.920000pt;}
.ws11{word-spacing:-7.893333pt;}
.wsa{word-spacing:0.000000pt;}
.ws4{word-spacing:26.464960pt;}
._45{margin-left:-6.960933pt;}
._29{margin-left:-5.877888pt;}
._1d{margin-left:-4.437550pt;}
._1a{margin-left:-3.222699pt;}
._2{margin-left:-2.215037pt;}
._0{margin-left:-1.290132pt;}
._1{width:1.441492pt;}
._3{width:2.781118pt;}
._4{width:3.852371pt;}
._22{width:4.799149pt;}
._6{width:5.767552pt;}
._5{width:6.858143pt;}
._9{width:8.625530pt;}
._14{width:9.718838pt;}
._19{width:11.160395pt;}
._21{width:12.248824pt;}
._d{width:13.159086pt;}
._e{width:14.158075pt;}
._f{width:15.639677pt;}
._10{width:16.620053pt;}
._11{width:17.877458pt;}
._24{width:18.935849pt;}
._18{width:20.103823pt;}
._17{width:21.429902pt;}
._a{width:22.906945pt;}
._b{width:24.469448pt;}
._2e{width:25.372923pt;}
._c{width:26.429633pt;}
._26{width:27.524927pt;}
._13{width:28.676846pt;}
._12{width:29.916982pt;}
._7{width:31.053118pt;}
._2d{width:32.022818pt;}
._8{width:32.950775pt;}
._3c{width:33.849485pt;}
._25{width:34.801662pt;}
._1f{width:35.798100pt;}
._20{width:36.964905pt;}
._15{width:38.252033pt;}
._16{width:39.517175pt;}
._39{width:40.423838pt;}
._28{width:41.362346pt;}
._27{width:43.223040pt;}
._2f{width:44.781972pt;}
._3e{width:45.716476pt;}
._34{width:46.609920pt;}
._33{width:48.276372pt;}
._2b{width:49.244052pt;}
._2c{width:50.135895pt;}
._2a{width:51.029117pt;}
._32{width:53.102717pt;}
._31{width:54.297492pt;}
._1b{width:55.643948pt;}
._1c{width:56.843949pt;}
._36{width:58.243415pt;}
._30{width:59.221970pt;}
._3d{width:63.781122pt;}
._38{width:64.812583pt;}
._3b{width:66.178452pt;}
._49{width:67.704320pt;}
._1e{width:68.885244pt;}
._23{width:70.436370pt;}
._44{width:71.467946pt;}
._42{width:73.080638pt;}
._41{width:75.338558pt;}
._43{width:83.328000pt;}
._46{width:88.025492pt;}
._47{width:90.703890pt;}
._48{width:91.886825pt;}
._37{width:97.198080pt;}
._3a{width:140.160000pt;}
._35{width:167.225383pt;}
._40{width:168.429972pt;}
._3f{width:169.731197pt;}
._4a{width:171.152439pt;}
.fs8{font-size:16.640000pt;}
.fs7{font-size:21.760000pt;}
.fs6{font-size:26.880000pt;}
.fs9{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs5{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.240000pt;}
.y79{bottom:2.280000pt;}
.y65{bottom:2.560000pt;}
.y148{bottom:2.880000pt;}
.y151{bottom:3.520000pt;}
.y7{bottom:4.160000pt;}
.y196{bottom:8.320000pt;}
.y1e1{bottom:8.346667pt;}
.y169{bottom:8.640000pt;}
.y190{bottom:8.960000pt;}
.y146{bottom:9.280000pt;}
.y14f{bottom:9.600000pt;}
.y4{bottom:9.632000pt;}
.y8{bottom:12.192000pt;}
.ya{bottom:14.400000pt;}
.y16e{bottom:14.720000pt;}
.y1e2{bottom:14.746667pt;}
.y150{bottom:15.680000pt;}
.y6{bottom:16.320000pt;}
.y3{bottom:16.992000pt;}
.y9{bottom:26.880000pt;}
.y1db{bottom:26.920000pt;}
.y5{bottom:28.800000pt;}
.yb1{bottom:72.352000pt;}
.y206{bottom:72.992000pt;}
.y261{bottom:73.952000pt;}
.y143{bottom:75.552000pt;}
.ye8{bottom:76.832000pt;}
.y1e8{bottom:77.152000pt;}
.y1a6{bottom:78.112000pt;}
.y231{bottom:78.432000pt;}
.ya0{bottom:81.312000pt;}
.y17a{bottom:82.592000pt;}
.y228{bottom:85.792000pt;}
.y260{bottom:86.112000pt;}
.y3f{bottom:87.392000pt;}
.yb0{bottom:88.352000pt;}
.y205{bottom:88.992000pt;}
.y142{bottom:91.872000pt;}
.ye7{bottom:92.832000pt;}
.y1e7{bottom:93.152000pt;}
.y1a5{bottom:93.472000pt;}
.y230{bottom:94.752000pt;}
.y9f{bottom:97.312000pt;}
.y179{bottom:98.592000pt;}
.y3e{bottom:99.552000pt;}
.y227{bottom:101.792000pt;}
.yaf{bottom:104.672000pt;}
.y204{bottom:104.992000pt;}
.y141{bottom:107.872000pt;}
.ye6{bottom:108.832000pt;}
.y22f{bottom:110.752000pt;}
.y3d{bottom:112.032000pt;}
.y1e6{bottom:112.352000pt;}
.y9e{bottom:113.632000pt;}
.y178{bottom:114.592000pt;}
.y226{bottom:117.824000pt;}
.yae{bottom:120.704000pt;}
.y203{bottom:121.344000pt;}
.y25f{bottom:122.944000pt;}
.y140{bottom:123.904000pt;}
.y1a4{bottom:124.224000pt;}
.ye5{bottom:124.864000pt;}
.y117{bottom:125.184000pt;}
.y22e{bottom:126.784000pt;}
.y9d{bottom:129.664000pt;}
.y177{bottom:133.826667pt;}
.y3c{bottom:135.106667pt;}
.y25e{bottom:135.426667pt;}
.yad{bottom:136.706667pt;}
.y202{bottom:137.346667pt;}
.y1a3{bottom:139.266667pt;}
.y13f{bottom:140.226667pt;}
.ye4{bottom:141.186667pt;}
.y1e5{bottom:142.466667pt;}
.y22d{bottom:142.786667pt;}
.y9c{bottom:145.666667pt;}
.y3b{bottom:147.266667pt;}
.y25d{bottom:147.586667pt;}
.y225{bottom:150.146667pt;}
.y176{bottom:151.106667pt;}
.yac{bottom:153.026667pt;}
.y201{bottom:153.346667pt;}
.y1a2{bottom:154.626667pt;}
.y13e{bottom:156.226667pt;}
.ye3{bottom:157.186667pt;}
.y22c{bottom:159.106667pt;}
.y25c{bottom:159.746667pt;}
.y3a{bottom:160.066667pt;}
.y9b{bottom:161.986667pt;}
.y175{bottom:164.226667pt;}
.y224{bottom:166.146667pt;}
.yab{bottom:169.026667pt;}
.y200{bottom:169.346667pt;}
.y1a1{bottom:169.986667pt;}
.y13d{bottom:172.226667pt;}
.ye2{bottom:173.186667pt;}
.y116{bottom:173.506667pt;}
.y39{bottom:175.106667pt;}
.y9a{bottom:177.986667pt;}
.y1e4{bottom:179.906667pt;}
.y223{bottom:182.146667pt;}
.y25b{bottom:184.386667pt;}
.yaa{bottom:185.026667pt;}
.y1a0{bottom:185.346667pt;}
.y1ff{bottom:185.666667pt;}
.y13c{bottom:188.546667pt;}
.y38{bottom:188.866667pt;}
.ye1{bottom:189.506667pt;}
.y174{bottom:189.826667pt;}
.y22b{bottom:191.106667pt;}
.y99{bottom:193.986667pt;}
.y25a{bottom:196.546667pt;}
.y222{bottom:198.466667pt;}
.y19f{bottom:200.706667pt;}
.ya9{bottom:201.346667pt;}
.y1fe{bottom:201.666667pt;}
.y37{bottom:202.626667pt;}
.y173{bottom:202.946667pt;}
.y13b{bottom:204.546667pt;}
.y1e3{bottom:205.186667pt;}
.ye0{bottom:205.506667pt;}
.y22a{bottom:207.426667pt;}
.y115{bottom:208.706667pt;}
.y259{bottom:209.026667pt;}
.y98{bottom:210.306667pt;}
.y221{bottom:214.466667pt;}
.y19e{bottom:216.066667pt;}
.y36{bottom:216.386667pt;}
.ya8{bottom:217.346667pt;}
.y1fd{bottom:217.666667pt;}
.y13a{bottom:220.546667pt;}
.y258{bottom:221.186667pt;}
.ydf{bottom:221.506667pt;}
.y229{bottom:223.426667pt;}
.y97{bottom:226.306667pt;}
.y172{bottom:228.546667pt;}
.y35{bottom:230.146667pt;}
.y1e0{bottom:230.466667pt;}
.y19d{bottom:231.426667pt;}
.y114{bottom:233.026667pt;}
.ya7{bottom:233.346667pt;}
.y139{bottom:236.893333pt;}
.yde{bottom:237.853333pt;}
.y171{bottom:241.693333pt;}
.y96{bottom:242.333333pt;}
.y34{bottom:243.933333pt;}
.y257{bottom:245.853333pt;}
.y220{bottom:246.813333pt;}
.y113{bottom:249.053333pt;}
.ya6{bottom:249.693333pt;}
.y19c{bottom:250.653333pt;}
.y138{bottom:252.893333pt;}
.ydd{bottom:253.853333pt;}
.y1fc{bottom:254.173333pt;}
.y170{bottom:254.493333pt;}
.y1df{bottom:255.773333pt;}
.y256{bottom:258.013333pt;}
.y95{bottom:258.653333pt;}
.y21f{bottom:262.813333pt;}
.y112{bottom:265.053333pt;}
.ya5{bottom:265.693333pt;}
.y1fb{bottom:267.293333pt;}
.y16f{bottom:267.613333pt;}
.y19b{bottom:267.933333pt;}
.y137{bottom:268.893333pt;}
.y1de{bottom:269.533333pt;}
.ydc{bottom:269.853333pt;}
.y255{bottom:270.173333pt;}
.y33{bottom:274.333333pt;}
.y94{bottom:274.653333pt;}
.y21e{bottom:278.813333pt;}
.y16d{bottom:280.733333pt;}
.y111{bottom:281.373333pt;}
.ya4{bottom:281.693333pt;}
.y60{bottom:282.333333pt;}
.y254{bottom:282.653333pt;}
.y136{bottom:285.213333pt;}
.ydb{bottom:286.173333pt;}
.y93{bottom:290.653333pt;}
.y1fa{bottom:292.573333pt;}
.y1dd{bottom:294.813333pt;}
.y21d{bottom:295.133333pt;}
.y32{bottom:297.053333pt;}
.y110{bottom:297.373333pt;}
.ya3{bottom:297.693333pt;}
.y5f{bottom:299.933333pt;}
.y135{bottom:301.213333pt;}
.yda{bottom:302.173333pt;}
.y19a{bottom:306.013333pt;}
.y16c{bottom:306.333333pt;}
.y92{bottom:306.653333pt;}
.y253{bottom:306.973333pt;}
.y1dc{bottom:308.573333pt;}
.y21c{bottom:311.133333pt;}
.y10f{bottom:313.373333pt;}
.ya2{bottom:314.013333pt;}
.y134{bottom:317.213333pt;}
.y5e{bottom:317.533333pt;}
.yd9{bottom:318.173333pt;}
.y16b{bottom:319.453333pt;}
.y21b{bottom:327.133333pt;}
.y10e{bottom:329.693333pt;}
.y91{bottom:330.013333pt;}
.y199{bottom:331.293333pt;}
.y252{bottom:331.613333pt;}
.y31{bottom:332.893333pt;}
.y133{bottom:333.213333pt;}
.y1da{bottom:333.853333pt;}
.yd8{bottom:334.173333pt;}
.y5d{bottom:335.133333pt;}
.y21a{bottom:343.133333pt;}
.y251{bottom:343.773333pt;}
.y168{bottom:345.053333pt;}
.y10d{bottom:345.693333pt;}
.ya1{bottom:346.013333pt;}
.y132{bottom:349.533333pt;}
.yd7{bottom:350.493333pt;}
.y5c{bottom:353.053333pt;}
.y1f9{bottom:355.013333pt;}
.y198{bottom:356.293333pt;}
.y16a{bottom:357.893333pt;}
.y219{bottom:359.493333pt;}
.y10c{bottom:361.733333pt;}
.y90{bottom:362.373333pt;}
.y30{bottom:363.973333pt;}
.y131{bottom:365.573333pt;}
.yd6{bottom:366.533333pt;}
.y250{bottom:368.453333pt;}
.y197{bottom:369.413333pt;}
.y5b{bottom:370.693333pt;}
.y1d8{bottom:371.333333pt;}
.y218{bottom:375.493333pt;}
.y2f{bottom:377.733333pt;}
.y8f{bottom:378.373333pt;}
.y167{bottom:379.013333pt;}
.y1f8{bottom:380.293333pt;}
.y24f{bottom:380.613333pt;}
.yd5{bottom:382.533333pt;}
.y1d9{bottom:384.453333pt;}
.y130{bottom:384.773333pt;}
.y5a{bottom:388.293333pt;}
.y2e{bottom:391.493333pt;}
.y24e{bottom:393.093333pt;}
.y10b{bottom:394.053333pt;}
.y8e{bottom:394.373333pt;}
.y195{bottom:394.693333pt;}
.y166{bottom:397.893333pt;}
.yd4{bottom:398.853333pt;}
.y12f{bottom:400.133333pt;}
.y2d{bottom:405.253333pt;}
.y1d7{bottom:405.573333pt;}
.y59{bottom:405.893333pt;}
.y165{bottom:406.533333pt;}
.y217{bottom:407.813333pt;}
.y10a{bottom:410.053333pt;}
.y8d{bottom:410.693333pt;}
.yd3{bottom:414.853333pt;}
.y24d{bottom:417.413333pt;}
.y1f7{bottom:417.733333pt;}
.y2c{bottom:419.013333pt;}
.y194{bottom:419.653333pt;}
.y164{bottom:422.853333pt;}
.y58{bottom:423.493333pt;}
.y216{bottom:423.813333pt;}
.y1d6{bottom:424.133333pt;}
.y12e{bottom:424.453333pt;}
.y109{bottom:426.053333pt;}
.y8c{bottom:426.693333pt;}
.y24c{bottom:429.893333pt;}
.yd2{bottom:430.853333pt;}
.y2b{bottom:433.093333pt;}
.y163{bottom:438.853333pt;}
.y215{bottom:439.813333pt;}
.y12d{bottom:440.453333pt;}
.y57{bottom:441.093333pt;}
.y24b{bottom:442.053333pt;}
.y8b{bottom:442.693333pt;}
.y193{bottom:444.933333pt;}
.y1d5{bottom:446.213333pt;}
.y2a{bottom:446.853333pt;}
.yd1{bottom:447.173333pt;}
.y108{bottom:449.413333pt;}
.y24a{bottom:454.213333pt;}
.y162{bottom:454.853333pt;}
.y1f6{bottom:455.173333pt;}
.y214{bottom:456.133333pt;}
.y12c{bottom:456.453333pt;}
.y56{bottom:458.693333pt;}
.y8a{bottom:459.013333pt;}
.y1d4{bottom:461.573333pt;}
.yd0{bottom:463.173333pt;}
.y29{bottom:465.733333pt;}
.y249{bottom:466.693333pt;}
.y192{bottom:470.213333pt;}
.y161{bottom:471.173333pt;}
.y213{bottom:472.133333pt;}
.y12b{bottom:472.773333pt;}
.y89{bottom:475.040000pt;}
.y55{bottom:476.320000pt;}
.y1d3{bottom:476.640000pt;}
.y248{bottom:478.880000pt;}
.ycf{bottom:479.200000pt;}
.y28{bottom:479.840000pt;}
.y1f5{bottom:480.480000pt;}
.y107{bottom:481.760000pt;}
.y18f{bottom:483.040000pt;}
.y160{bottom:487.200000pt;}
.y212{bottom:488.160000pt;}
.y12a{bottom:488.800000pt;}
.y88{bottom:491.040000pt;}
.y1d2{bottom:492.000000pt;}
.y1f4{bottom:493.280000pt;}
.y27{bottom:493.600000pt;}
.y54{bottom:493.920000pt;}
.yce{bottom:495.520000pt;}
.y191{bottom:496.160000pt;}
.y106{bottom:497.760000pt;}
.y15f{bottom:503.200000pt;}
.y247{bottom:503.520000pt;}
.y211{bottom:504.480000pt;}
.y129{bottom:504.800000pt;}
.y87{bottom:507.040000pt;}
.y1d1{bottom:507.360000pt;}
.y53{bottom:511.520000pt;}
.y105{bottom:513.760000pt;}
.y26{bottom:514.400000pt;}
.y246{bottom:515.680000pt;}
.y18e{bottom:516.960000pt;}
.y1f2{bottom:518.560000pt;}
.y15e{bottom:519.520000pt;}
.y210{bottom:520.480000pt;}
.y128{bottom:521.120000pt;}
.y1d0{bottom:522.720000pt;}
.y86{bottom:523.360000pt;}
.ycd{bottom:527.520000pt;}
.y245{bottom:527.840000pt;}
.y52{bottom:529.440000pt;}
.y104{bottom:530.080000pt;}
.y25{bottom:530.400000pt;}
.y1f3{bottom:531.680000pt;}
.y15d{bottom:535.520000pt;}
.y20f{bottom:536.480000pt;}
.y127{bottom:537.120000pt;}
.y1cf{bottom:538.080000pt;}
.y85{bottom:539.360000pt;}
.y244{bottom:540.000000pt;}
.ycc{bottom:543.520000pt;}
.y24{bottom:546.080000pt;}
.y51{bottom:547.040000pt;}
.y15c{bottom:551.520000pt;}
.y1f1{bottom:552.480000pt;}
.y126{bottom:553.120000pt;}
.y1ce{bottom:553.440000pt;}
.y84{bottom:555.360000pt;}
.y18d{bottom:558.880000pt;}
.ycb{bottom:559.840000pt;}
.y23{bottom:562.080000pt;}
.y50{bottom:564.640000pt;}
.y15b{bottom:567.840000pt;}
.y1cd{bottom:568.800000pt;}
.y125{bottom:569.120000pt;}
.y1f0{bottom:572.960000pt;}
.y83{bottom:574.560000pt;}
.y18c{bottom:574.880000pt;}
.yca{bottom:575.840000pt;}
.y243{bottom:576.800000pt;}
.y22{bottom:577.760000pt;}
.y103{bottom:578.080000pt;}
.y4f{bottom:582.240000pt;}
.y15a{bottom:583.840000pt;}
.y1cc{bottom:584.160000pt;}
.y20e{bottom:584.800000pt;}
.y124{bottom:585.440000pt;}
.y242{bottom:589.280000pt;}
.y18b{bottom:590.880000pt;}
.y82{bottom:591.866667pt;}
.y21{bottom:593.786667pt;}
.y102{bottom:594.426667pt;}
.y1cb{bottom:599.546667pt;}
.y4e{bottom:599.866667pt;}
.y20d{bottom:600.826667pt;}
.y123{bottom:601.466667pt;}
.y81{bottom:604.986667pt;}
.y18a{bottom:607.226667pt;}
.yc9{bottom:608.186667pt;}
.y20{bottom:609.466667pt;}
.y101{bottom:610.426667pt;}
.y241{bottom:613.626667pt;}
.y1ca{bottom:614.906667pt;}
.y159{bottom:615.866667pt;}
.y20c{bottom:617.146667pt;}
.y4d{bottom:617.466667pt;}
.y80{bottom:617.786667pt;}
.y189{bottom:623.226667pt;}
.yc8{bottom:624.186667pt;}
.y1f{bottom:625.466667pt;}
.y240{bottom:626.106667pt;}
.y100{bottom:626.426667pt;}
.y1c9{bottom:630.266667pt;}
.y7f{bottom:630.906667pt;}
.y158{bottom:632.186667pt;}
.y20b{bottom:633.146667pt;}
.y122{bottom:633.786667pt;}
.y4c{bottom:635.066667pt;}
.y23f{bottom:638.266667pt;}
.y188{bottom:639.226667pt;}
.yc7{bottom:640.186667pt;}
.y1e{bottom:641.466667pt;}
.yff{bottom:642.746667pt;}
.y7e{bottom:643.706667pt;}
.y157{bottom:648.186667pt;}
.y1c8{bottom:649.146667pt;}
.y121{bottom:649.786667pt;}
.y23e{bottom:650.426667pt;}
.y4b{bottom:652.666667pt;}
.y187{bottom:655.546667pt;}
.y7d{bottom:656.506667pt;}
.y1d{bottom:657.146667pt;}
.yfe{bottom:658.746667pt;}
.y23d{bottom:662.906667pt;}
.y156{bottom:664.186667pt;}
.y20a{bottom:665.466667pt;}
.y120{bottom:665.786667pt;}
.y1c7{bottom:666.746667pt;}
.y7c{bottom:669.626667pt;}
.y4a{bottom:670.266667pt;}
.y186{bottom:671.546667pt;}
.yc6{bottom:672.506667pt;}
.y1c{bottom:673.146667pt;}
.yfd{bottom:674.746667pt;}
.y23c{bottom:675.066667pt;}
.y1c6{bottom:679.546667pt;}
.y155{bottom:680.506667pt;}
.y209{bottom:681.466667pt;}
.y11f{bottom:682.106667pt;}
.y7b{bottom:682.426667pt;}
.y23b{bottom:687.226667pt;}
.y185{bottom:687.546667pt;}
.y49{bottom:687.866667pt;}
.yc5{bottom:688.506667pt;}
.y1b{bottom:688.826667pt;}
.yfc{bottom:691.066667pt;}
.y7a{bottom:695.546667pt;}
.y208{bottom:697.466667pt;}
.y11e{bottom:698.106667pt;}
.y154{bottom:699.706667pt;}
.y184{bottom:703.866667pt;}
.y1a{bottom:704.826667pt;}
.y48{bottom:705.786667pt;}
.yfb{bottom:707.066667pt;}
.y78{bottom:708.346667pt;}
.y23a{bottom:711.906667pt;}
.y275{bottom:712.866667pt;}
.y207{bottom:713.826667pt;}
.y11d{bottom:714.146667pt;}
.y153{bottom:717.026667pt;}
.y183{bottom:719.906667pt;}
.y19{bottom:720.866667pt;}
.y77{bottom:721.506667pt;}
.yfa{bottom:723.106667pt;}
.y47{bottom:723.426667pt;}
.y239{bottom:724.066667pt;}
.y1c5{bottom:729.826667pt;}
.y274{bottom:730.146667pt;}
.y11c{bottom:730.466667pt;}
.y152{bottom:730.786667pt;}
.y182{bottom:735.906667pt;}
.y18{bottom:736.546667pt;}
.yc4{bottom:736.866667pt;}
.yf9{bottom:739.426667pt;}
.y46{bottom:741.026667pt;}
.y76{bottom:742.306667pt;}
.y1c4{bottom:742.946667pt;}
.y11b{bottom:746.466667pt;}
.y238{bottom:748.706667pt;}
.y181{bottom:751.906667pt;}
.y17{bottom:752.546667pt;}
.yc3{bottom:752.866667pt;}
.yf8{bottom:755.426667pt;}
.y1c3{bottom:755.746667pt;}
.y14e{bottom:757.986667pt;}
.y273{bottom:758.306667pt;}
.y45{bottom:758.626667pt;}
.y237{bottom:760.866667pt;}
.y11a{bottom:762.466667pt;}
.y75{bottom:764.066667pt;}
.y16{bottom:768.226667pt;}
.y1c2{bottom:768.866667pt;}
.yc2{bottom:769.186667pt;}
.yf7{bottom:771.426667pt;}
.y236{bottom:773.346667pt;}
.y272{bottom:773.666667pt;}
.y44{bottom:776.226667pt;}
.y119{bottom:778.466667pt;}
.y74{bottom:780.066667pt;}
.y1c1{bottom:781.666667pt;}
.y15{bottom:784.226667pt;}
.yc1{bottom:785.186667pt;}
.y235{bottom:785.506667pt;}
.y271{bottom:789.026667pt;}
.y43{bottom:793.826667pt;}
.y1c0{bottom:794.466667pt;}
.yf6{bottom:794.786667pt;}
.y234{bottom:797.666667pt;}
.y73{bottom:799.266667pt;}
.y14{bottom:800.226667pt;}
.yc0{bottom:801.186667pt;}
.y270{bottom:804.386667pt;}
.y233{bottom:810.146667pt;}
.y118{bottom:810.786667pt;}
.y42{bottom:811.426667pt;}
.y13{bottom:815.906667pt;}
.y72{bottom:816.546667pt;}
.ybf{bottom:817.506667pt;}
.y26f{bottom:819.746667pt;}
.y232{bottom:822.306667pt;}
.yf5{bottom:826.786667pt;}
.y1bf{bottom:828.066667pt;}
.y41{bottom:829.026667pt;}
.y71{bottom:829.373333pt;}
.y12{bottom:831.933333pt;}
.y180{bottom:832.573333pt;}
.ybe{bottom:833.533333pt;}
.y26e{bottom:835.133333pt;}
.y14d{bottom:836.733333pt;}
.y70{bottom:842.493333pt;}
.yf4{bottom:843.133333pt;}
.y40{bottom:846.653333pt;}
.y1be{bottom:846.973333pt;}
.y11{bottom:847.613333pt;}
.y17f{bottom:848.573333pt;}
.ybd{bottom:849.533333pt;}
.y26d{bottom:850.493333pt;}
.y1bd{bottom:854.973333pt;}
.y6f{bottom:855.293333pt;}
.y1b2{bottom:858.813333pt;}
.yf3{bottom:859.133333pt;}
.y14c{bottom:862.653333pt;}
.y26c{bottom:862.973333pt;}
.y17e{bottom:864.893333pt;}
.ybc{bottom:865.853333pt;}
.y6e{bottom:868.093333pt;}
.y1bc{bottom:870.333333pt;}
.y1b1{bottom:874.173333pt;}
.yf2{bottom:875.133333pt;}
.y14b{bottom:875.453333pt;}
.y10{bottom:878.333333pt;}
.y26b{bottom:880.573333pt;}
.y17d{bottom:880.893333pt;}
.ybb{bottom:881.853333pt;}
.y1bb{bottom:885.373333pt;}
.y14a{bottom:888.253333pt;}
.y6d{bottom:889.213333pt;}
.y1b0{bottom:889.533333pt;}
.yf1{bottom:891.453333pt;}
.y26a{bottom:892.733333pt;}
.y1ef{bottom:896.893333pt;}
.yba{bottom:897.853333pt;}
.y17c{bottom:900.093333pt;}
.y1ba{bottom:900.733333pt;}
.y149{bottom:901.373333pt;}
.y1af{bottom:904.893333pt;}
.y269{bottom:905.213333pt;}
.yf0{bottom:907.453333pt;}
.y6c{bottom:910.653333pt;}
.y1ee{bottom:913.213333pt;}
.yb9{bottom:914.173333pt;}
.yf{bottom:915.133333pt;}
.y17b{bottom:915.453333pt;}
.y1b9{bottom:916.093333pt;}
.y268{bottom:917.373333pt;}
.y1ae{bottom:920.253333pt;}
.yef{bottom:923.453333pt;}
.y6b{bottom:926.973333pt;}
.y147{bottom:927.293333pt;}
.y1ed{bottom:929.213333pt;}
.y267{bottom:929.533333pt;}
.yb8{bottom:930.173333pt;}
.y1b8{bottom:931.453333pt;}
.y1ad{bottom:935.613333pt;}
.yee{bottom:939.773333pt;}
.y266{bottom:941.693333pt;}
.y1ec{bottom:945.213333pt;}
.y6a{bottom:946.173333pt;}
.y1b7{bottom:946.813333pt;}
.y145{bottom:949.413333pt;}
.y1ac{bottom:951.013333pt;}
.ye{bottom:951.973333pt;}
.y265{bottom:954.213333pt;}
.yed{bottom:955.813333pt;}
.y1eb{bottom:961.253333pt;}
.yb7{bottom:962.213333pt;}
.y69{bottom:963.493333pt;}
.y1ab{bottom:966.373333pt;}
.y144{bottom:968.613333pt;}
.yec{bottom:971.813333pt;}
.y68{bottom:976.293333pt;}
.y1b6{bottom:977.573333pt;}
.yb6{bottom:978.533333pt;}
.y1ea{bottom:980.773333pt;}
.y1aa{bottom:981.413333pt;}
.yeb{bottom:987.813333pt;}
.yd{bottom:988.773333pt;}
.y67{bottom:989.413333pt;}
.y264{bottom:991.013333pt;}
.y1b5{bottom:992.933333pt;}
.yb5{bottom:994.533333pt;}
.y1e9{bottom:996.133333pt;}
.y1a9{bottom:996.773333pt;}
.y66{bottom:1002.213333pt;}
.y263{bottom:1003.173333pt;}
.yea{bottom:1004.133333pt;}
.y1b4{bottom:1008.293333pt;}
.yb4{bottom:1010.533333pt;}
.y1a8{bottom:1012.133333pt;}
.y64{bottom:1015.013333pt;}
.y262{bottom:1015.333333pt;}
.ye9{bottom:1020.133333pt;}
.y1b3{bottom:1023.653333pt;}
.yc{bottom:1025.573333pt;}
.yb3{bottom:1026.853333pt;}
.y1a7{bottom:1027.493333pt;}
.y63{bottom:1036.133333pt;}
.yb2{bottom:1042.853333pt;}
.y62{bottom:1051.493333pt;}
.y61{bottom:1066.853333pt;}
.y2{bottom:1082.240000pt;}
.y1{bottom:1097.600000pt;}
.h21{height:11.740625pt;}
.hf{height:12.160000pt;}
.h12{height:12.192000pt;}
.he{height:12.480000pt;}
.h16{height:13.120000pt;}
.h18{height:13.440000pt;}
.h1a{height:15.353125pt;}
.h14{height:18.965625pt;}
.h1f{height:24.320000pt;}
.h20{height:24.352000pt;}
.h1e{height:24.640000pt;}
.h22{height:24.672000pt;}
.h1c{height:24.960000pt;}
.h1d{height:25.280000pt;}
.h1b{height:25.312000pt;}
.h15{height:26.240000pt;}
.h19{height:26.560000pt;}
.h11{height:29.803125pt;}
.h5{height:32.133750pt;}
.h23{height:33.277500pt;}
.hd{height:34.318750pt;}
.ha{height:36.646250pt;}
.h7{height:36.800000pt;}
.h17{height:36.832000pt;}
.h6{height:37.867500pt;}
.h2{height:37.931250pt;}
.h4{height:38.720000pt;}
.h13{height:39.138750pt;}
.h24{height:39.821250pt;}
.h10{height:40.897500pt;}
.hb{height:43.605000pt;}
.h3{height:48.195000pt;}
.h9{height:52.785000pt;}
.h25{height:57.375000pt;}
.hc{height:95.242500pt;}
.h8{height:114.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w27{width:29.440000pt;}
.w26{width:29.472000pt;}
.w29{width:29.792000pt;}
.w20{width:30.112000pt;}
.w3c{width:30.752000pt;}
.w28{width:32.000000pt;}
.wb{width:34.880000pt;}
.w8{width:34.912000pt;}
.wa{width:35.200000pt;}
.w3a{width:35.872000pt;}
.w7{width:37.120000pt;}
.w6{width:37.152000pt;}
.wc{width:37.440000pt;}
.wf{width:37.760000pt;}
.we{width:37.792000pt;}
.w25{width:38.080000pt;}
.w9{width:39.360000pt;}
.w2f{width:39.712000pt;}
.w13{width:40.000000pt;}
.w1e{width:40.320000pt;}
.w1d{width:40.640000pt;}
.w1f{width:40.672000pt;}
.w21{width:41.280000pt;}
.w18{width:42.240000pt;}
.w10{width:42.272000pt;}
.w17{width:45.120000pt;}
.w39{width:48.640000pt;}
.w3b{width:48.960000pt;}
.w36{width:50.272000pt;}
.w19{width:50.560000pt;}
.w35{width:50.592000pt;}
.w33{width:54.080000pt;}
.w23{width:59.872000pt;}
.w34{width:62.112000pt;}
.w24{width:62.432000pt;}
.w2a{width:65.312000pt;}
.w2c{width:65.952000pt;}
.w1c{width:71.072000pt;}
.w16{width:80.032000pt;}
.w38{width:80.352000pt;}
.w1b{width:81.632000pt;}
.w2e{width:84.512000pt;}
.w15{width:85.152000pt;}
.w2d{width:93.472000pt;}
.w32{width:113.664000pt;}
.w31{width:116.832000pt;}
.w5{width:137.986667pt;}
.wd{width:138.266667pt;}
.w12{width:150.786667pt;}
.w11{width:160.066667pt;}
.w3{width:165.826667pt;}
.w2b{width:169.346667pt;}
.w2{width:238.173333pt;}
.w30{width:329.733333pt;}
.w37{width:369.093333pt;}
.w14{width:416.826667pt;}
.w1a{width:420.960000pt;}
.w22{width:444.666667pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.720000pt;}
.x25{left:7.680000pt;}
.x5a{left:8.640000pt;}
.x5{left:9.600000pt;}
.x31{left:10.560000pt;}
.x30{left:11.520000pt;}
.x3f{left:13.160000pt;}
.x32{left:14.080000pt;}
.x3e{left:15.680000pt;}
.x4f{left:16.640000pt;}
.x5e{left:17.626667pt;}
.x51{left:18.560000pt;}
.x52{left:20.160000pt;}
.x57{left:21.120000pt;}
.x5d{left:22.400000pt;}
.x6e{left:23.680000pt;}
.x5f{left:24.960000pt;}
.x79{left:25.920000pt;}
.x3d{left:27.240000pt;}
.x42{left:28.840000pt;}
.x6d{left:29.760000pt;}
.x3b{left:30.760000pt;}
.x38{left:31.720000pt;}
.x6f{left:32.640000pt;}
.x43{left:35.560000pt;}
.x36{left:39.400000pt;}
.x3c{left:40.360000pt;}
.x3a{left:42.280000pt;}
.x41{left:47.080000pt;}
.x4{left:53.792000pt;}
.x39{left:60.826667pt;}
.xd{left:62.432000pt;}
.x37{left:63.386667pt;}
.x40{left:66.266667pt;}
.x12{left:67.871988pt;}
.xc{left:72.032000pt;}
.x72{left:76.192000pt;}
.x8a{left:81.311988pt;}
.x7f{left:84.192000pt;}
.x46{left:86.431988pt;}
.x7e{left:88.031988pt;}
.x7{left:89.312000pt;}
.x60{left:90.911988pt;}
.x71{left:98.591988pt;}
.x49{left:102.752000pt;}
.x15{left:103.712000pt;}
.x45{left:106.271988pt;}
.x47{left:107.871988pt;}
.x9{left:109.472000pt;}
.x8{left:110.752000pt;}
.x54{left:114.624000pt;}
.x73{left:116.544000pt;}
.x23{left:118.784000pt;}
.x44{left:122.623988pt;}
.x80{left:135.106667pt;}
.x68{left:147.906667pt;}
.xe{left:158.146667pt;}
.x81{left:159.426667pt;}
.x48{left:166.146655pt;}
.x33{left:181.506655pt;}
.x55{left:191.109333pt;}
.x4a{left:192.421333pt;}
.x61{left:206.181333pt;}
.x69{left:214.173333pt;}
.x34{left:222.493333pt;}
.x53{left:230.813322pt;}
.x22{left:238.813322pt;}
.x14{left:239.773322pt;}
.x17{left:242.333333pt;}
.x67{left:247.133322pt;}
.x24{left:257.693333pt;}
.x35{left:260.253333pt;}
.x18{left:280.133333pt;}
.x26{left:295.493333pt;}
.x13{left:304.133322pt;}
.x19{left:318.213333pt;}
.x27{left:331.333333pt;}
.xa{left:332.293333pt;}
.xb{left:348.640000pt;}
.x1a{left:356.000000pt;}
.x28{left:366.880000pt;}
.x6a{left:384.160000pt;}
.x2{left:387.680000pt;}
.x3{left:390.240000pt;}
.x1b{left:393.760000pt;}
.x11{left:396.959988pt;}
.x29{left:402.720000pt;}
.x10{left:406.560000pt;}
.x7d{left:411.039988pt;}
.x7c{left:414.879988pt;}
.xf{left:416.160000pt;}
.x7a{left:418.399988pt;}
.x1{left:420.640000pt;}
.x1c{left:429.306667pt;}
.x88{left:430.586655pt;}
.x6{left:431.546667pt;}
.x70{left:435.066655pt;}
.x2a{left:441.146667pt;}
.x7b{left:444.346655pt;}
.x74{left:446.906667pt;}
.x6b{left:450.746667pt;}
.x89{left:454.586655pt;}
.x1d{left:469.306667pt;}
.x87{left:475.386655pt;}
.x8c{left:477.306655pt;}
.x2b{left:479.546667pt;}
.x86{left:500.666655pt;}
.x77{left:501.626667pt;}
.x8b{left:502.586655pt;}
.x82{left:505.186667pt;}
.x1e{left:507.106667pt;}
.x4b{left:520.226667pt;}
.x2c{left:522.466667pt;}
.x56{left:536.226667pt;}
.x1f{left:542.946667pt;}
.x6c{left:544.866667pt;}
.x84{left:554.466667pt;}
.x62{left:559.906667pt;}
.x2d{left:560.866667pt;}
.x4e{left:563.106667pt;}
.x75{left:564.386667pt;}
.x5b{left:577.186667pt;}
.x20{left:578.786667pt;}
.x65{left:590.333333pt;}
.x2e{left:599.293333pt;}
.x4c{left:606.013333pt;}
.x21{left:614.333333pt;}
.x78{left:615.613333pt;}
.x58{left:618.493333pt;}
.x63{left:620.733333pt;}
.x2f{left:637.693333pt;}
.x85{left:640.573333pt;}
.x50{left:648.893333pt;}
.x66{left:653.373333pt;}
.x5c{left:659.453333pt;}
.x83{left:671.973333pt;}
.x76{left:678.693333pt;}
.x64{left:683.813333pt;}
.x4d{left:686.693333pt;}
.x59{left:690.213333pt;}
.x8d{left:731.493322pt;}
}




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