
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_61f79a4ee5c52a67dc297e79.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_10bde7d4206ed87b79d9d236.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_6800f5b36a1c39c824ce6dcc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_07308d654d24b21ab7b661c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_11965176f0474007ceadddd4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_af758d44d734e8a91f18ba4c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_41d94271f71fddcc1e3e7abc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls5{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.370200px;}
.ls7{letter-spacing:-0.326400px;}
.ls14{letter-spacing:-0.253200px;}
.lsf{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.036000px;}
.ls8{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls10{letter-spacing:0.018720px;}
.ls9{letter-spacing:0.121200px;}
.ls13{letter-spacing:0.132600px;}
.ls4{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.206400px;}
.ls15{letter-spacing:0.209400px;}
.lsc{letter-spacing:0.211680px;}
.ls12{letter-spacing:0.255600px;}
.ls11{letter-spacing:0.343200px;}
.ls1{letter-spacing:0.351360px;}
.ls18{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.385800px;}
.lsd{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls1a{letter-spacing:47.466720px;}
.lse{letter-spacing:64.026720px;}
.ls17{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsc{word-spacing:-59.760000px;}
.wsa{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.572800px;}
.wse{word-spacing:-13.490400px;}
.ws10{word-spacing:-13.402800px;}
.ws13{word-spacing:-13.356600px;}
.ws11{word-spacing:-13.279800px;}
.wsd{word-spacing:-13.165920px;}
.ws4{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.ws14{word-spacing:-13.111200px;}
.wsb{word-spacing:-13.093920px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.wsf{word-spacing:-8.553600px;}
.ws12{word-spacing:-8.300400px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:2.552040px;}
._23{margin-left:-4.000613px;}
._9{margin-left:-2.618401px;}
._0{margin-left:-1.159200px;}
._2{width:1.180854px;}
._6{width:2.856641px;}
._7{width:4.175019px;}
._8{width:5.595638px;}
._1{width:7.497613px;}
._a{width:8.523442px;}
._5{width:10.189189px;}
._3{width:11.724679px;}
._4{width:13.211884px;}
._d{width:14.371092px;}
._e{width:15.372666px;}
._c{width:17.074638px;}
._b{width:18.167040px;}
._2a{width:19.362240px;}
._31{width:20.452266px;}
._29{width:21.513600px;}
._12{width:22.768560px;}
._2e{width:24.322320px;}
._10{width:25.816320px;}
._2c{width:28.505520px;}
._34{width:29.700720px;}
._2b{width:31.268826px;}
._25{width:32.987520px;}
._17{width:34.720560px;}
._32{width:36.931680px;}
._22{width:39.561120px;}
._20{width:40.816080px;}
._11{width:42.623226px;}
._2d{width:44.222400px;}
._19{width:46.971360px;}
._30{width:50.616720px;}
._33{width:52.199172px;}
._2f{width:64.002960px;}
._13{width:65.257920px;}
._18{width:67.827600px;}
._26{width:69.290532px;}
._1c{width:70.875360px;}
._1b{width:71.951040px;}
._16{width:76.447386px;}
._1a{width:84.859200px;}
._14{width:90.058320px;}
._1f{width:92.030400px;}
._15{width:93.524400px;}
._27{width:99.082080px;}
._28{width:100.590426px;}
._24{width:115.911786px;}
._f{width:119.818800px;}
._1d{width:124.958160px;}
._21{width:158.557626px;}
._1e{width:222.082506px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y147{bottom:7.734000px;}
.yb7{bottom:7.740000px;}
.y12b{bottom:7.770000px;}
.yb5{bottom:7.920000px;}
.y1dc{bottom:7.965000px;}
.y170{bottom:12.240000px;}
.y202{bottom:12.420000px;}
.y1cf{bottom:12.960000px;}
.y12e{bottom:13.140000px;}
.ydd{bottom:15.840000px;}
.y30d{bottom:16.740000px;}
.y13a{bottom:17.460000px;}
.y122{bottom:17.640000px;}
.y17f{bottom:17.685000px;}
.ye7{bottom:20.160000px;}
.yef{bottom:20.340000px;}
.y146{bottom:25.374000px;}
.yc2{bottom:25.380000px;}
.y12a{bottom:25.410000px;}
.y13f{bottom:25.425000px;}
.y297{bottom:25.554000px;}
.yc9{bottom:25.560000px;}
.ye6{bottom:25.590000px;}
.y140{bottom:25.605000px;}
.yd9{bottom:29.880000px;}
.y29a{bottom:30.054000px;}
.yee{bottom:30.060000px;}
.yc5{bottom:33.300000px;}
.y30c{bottom:34.374000px;}
.y12d{bottom:35.100000px;}
.y120{bottom:35.145000px;}
.y142{bottom:35.280000px;}
.y121{bottom:35.325000px;}
.y1bd{bottom:36.000000px;}
.y1bb{bottom:37.800000px;}
.y1ca{bottom:37.845000px;}
.y2c4{bottom:38.520000px;}
.y173{bottom:39.600000px;}
.y2bb{bottom:43.014000px;}
.yc1{bottom:43.020000px;}
.ye4{bottom:43.050000px;}
.y16c{bottom:43.065000px;}
.y20d{bottom:43.194000px;}
.ydc{bottom:43.200000px;}
.ye5{bottom:43.230000px;}
.y16d{bottom:43.245000px;}
.y248{bottom:47.514000px;}
.yd8{bottom:47.520000px;}
.y174{bottom:47.550000px;}
.y1c9{bottom:47.565000px;}
.y299{bottom:47.694000px;}
.yed{bottom:47.700000px;}
.y201{bottom:52.014000px;}
.y1f0{bottom:52.020000px;}
.y17b{bottom:52.740000px;}
.yea{bottom:52.920000px;}
.y30b{bottom:56.514000px;}
.y172{bottom:57.240000px;}
.y1bc{bottom:57.954000px;}
.y137{bottom:57.960000px;}
.y128{bottom:57.990000px;}
.y1a8{bottom:58.005000px;}
.y13d{bottom:58.140000px;}
.yca{bottom:58.185000px;}
.yc3{bottom:60.480000px;}
.yc0{bottom:60.660000px;}
.ye3{bottom:60.690000px;}
.y144{bottom:62.454000px;}
.yc7{bottom:62.685000px;}
.yda{bottom:64.980000px;}
.y20c{bottom:65.154000px;}
.yd7{bottom:65.160000px;}
.y1c8{bottom:65.205000px;}
.y310{bottom:69.480000px;}
.y296{bottom:69.654000px;}
.y1ef{bottom:69.660000px;}
.y124{bottom:70.380000px;}
.y1b9{bottom:70.425000px;}
.ye9{bottom:70.560000px;}
.y2{bottom:73.296000px;}
.y307{bottom:73.974000px;}
.y200{bottom:74.154000px;}
.y114{bottom:74.160000px;}
.y29{bottom:74.196000px;}
.y1ac{bottom:74.880000px;}
.y11d{bottom:75.645000px;}
.y30a{bottom:78.474000px;}
.y143{bottom:80.094000px;}
.y136{bottom:80.100000px;}
.y127{bottom:80.130000px;}
.y13c{bottom:80.145000px;}
.yc6{bottom:80.325000px;}
.yd6{bottom:82.620000px;}
.y247{bottom:82.794000px;}
.y2d8{bottom:82.800000px;}
.y2c5{bottom:87.120000px;}
.y20b{bottom:87.294000px;}
.y1e9{bottom:87.300000px;}
.ye1{bottom:88.020000px;}
.y30f{bottom:91.620000px;}
.y295{bottom:91.794000px;}
.y288{bottom:91.800000px;}
.y1ee{bottom:91.830000px;}
.ye8{bottom:92.520000px;}
.y1b8{bottom:92.565000px;}
.y169{bottom:93.285000px;}
.y12f{bottom:94.716000px;}
.y306{bottom:96.114000px;}
.y1ff{bottom:96.294000px;}
.y11c{bottom:97.785000px;}
.y246{bottom:100.434000px;}
.y1{bottom:101.376000px;}
.y17c{bottom:102.285000px;}
.y1b0{bottom:103.176000px;}
.y2ba{bottom:104.754000px;}
.y2d7{bottom:104.760000px;}
.y2c3{bottom:104.790000px;}
.y20a{bottom:104.934000px;}
.y26d{bottom:104.940000px;}
.yd4{bottom:105.660000px;}
.ye0{bottom:105.690000px;}
.y2b2{bottom:108.936000px;}
.y298{bottom:109.254000px;}
.y1e8{bottom:109.290000px;}
.y294{bottom:109.434000px;}
.y287{bottom:109.440000px;}
.y1ed{bottom:109.470000px;}
.y1c7{bottom:110.205000px;}
.y27b{bottom:112.716000px;}
.y2c2{bottom:113.754000px;}
.y28d{bottom:113.760000px;}
.y1fe{bottom:113.934000px;}
.y178{bottom:115.200000px;}
.y168{bottom:115.425000px;}
.y1f3{bottom:116.316000px;}
.y300{bottom:116.856000px;}
.yb3{bottom:117.756000px;}
.y21e{bottom:117.936000px;}
.y305{bottom:118.254000px;}
.y148{bottom:122.076000px;}
.y209{bottom:122.394000px;}
.y26c{bottom:122.400000px;}
.ybe{bottom:123.120000px;}
.yd3{bottom:123.300000px;}
.y16e{bottom:124.230000px;}
.y2ed{bottom:126.216000px;}
.y2a1{bottom:126.900000px;}
.ydf{bottom:127.650000px;}
.y290{bottom:129.816000px;}
.y339{bottom:130.176000px;}
.y27a{bottom:130.356000px;}
.y1bf{bottom:130.536000px;}
.y1fd{bottom:131.394000px;}
.y286{bottom:131.400000px;}
.y1e7{bottom:131.430000px;}
.y1a0{bottom:131.616000px;}
.yb2{bottom:135.396000px;}
.y304{bottom:135.894000px;}
.y28c{bottom:135.930000px;}
.y27{bottom:136.476000px;}
.y309{bottom:140.214000px;}
.ybd{bottom:140.760000px;}
.yfa{bottom:142.956000px;}
.y2ec{bottom:143.856000px;}
.y208{bottom:144.534000px;}
.y26b{bottom:144.540000px;}
.yd2{bottom:145.260000px;}
.y338{bottom:147.816000px;}
.y279{bottom:147.996000px;}
.y2e6{bottom:149.040000px;}
.y145{bottom:149.436000px;}
.yb1{bottom:153.030000px;}
.y1fc{bottom:153.534000px;}
.y1e6{bottom:153.570000px;}
.y26{bottom:153.930000px;}
.y364{bottom:154.650000px;}
.y1ce{bottom:157.530000px;}
.y303{bottom:157.854000px;}
.y1be{bottom:157.890000px;}
.y5b{bottom:159.690000px;}
.yf9{bottom:160.590000px;}
.y245{bottom:162.174000px;}
.y308{bottom:162.354000px;}
.y87{bottom:164.010000px;}
.y278{bottom:165.450000px;}
.y2b9{bottom:166.494000px;}
.y2d6{bottom:166.500000px;}
.y207{bottom:166.674000px;}
.y26a{bottom:166.680000px;}
.y19f{bottom:167.250000px;}
.y2eb{bottom:170.310000px;}
.yb0{bottom:170.490000px;}
.y1fb{bottom:171.174000px;}
.y1e5{bottom:171.210000px;}
.y25{bottom:171.570000px;}
.y363{bottom:172.290000px;}
.y234{bottom:175.134000px;}
.y293{bottom:175.674000px;}
.y5a{bottom:177.330000px;}
.y1cd{bottom:179.670000px;}
.y302{bottom:179.994000px;}
.y112{bottom:181.470000px;}
.y86{bottom:181.650000px;}
.y277{bottom:183.090000px;}
.y244{bottom:184.134000px;}
.y2d5{bottom:184.140000px;}
.y206{bottom:184.314000px;}
.y2a0{bottom:184.320000px;}
.y269{bottom:184.350000px;}
.y175{bottom:187.230000px;}
.yaf{bottom:188.130000px;}
.y2b8{bottom:188.634000px;}
.y2f8{bottom:188.670000px;}
.y1fa{bottom:188.814000px;}
.y134{bottom:191.019000px;}
.y233{bottom:192.819000px;}
.y2c1{bottom:193.134000px;}
.y1e4{bottom:193.170000px;}
.y292{bottom:193.359000px;}
.y13b{bottom:194.250000px;}
.y59{bottom:194.970000px;}
.yf8{bottom:196.050000px;}
.ybb{bottom:196.245000px;}
.y301{bottom:197.679000px;}
.y362{bottom:198.750000px;}
.y337{bottom:200.550000px;}
.y276{bottom:200.730000px;}
.y29f{bottom:201.780000px;}
.y205{bottom:201.819000px;}
.y1b7{bottom:202.710000px;}
.y19e{bottom:202.890000px;}
.yae{bottom:205.770000px;}
.y2ea{bottom:205.950000px;}
.y2a4{bottom:206.280000px;}
.y268{bottom:206.310000px;}
.y24{bottom:207.030000px;}
.y85{bottom:208.110000px;}
.y1c5{bottom:209.745000px;}
.y232{bottom:210.459000px;}
.y1ec{bottom:210.810000px;}
.y1f9{bottom:210.819000px;}
.y58{bottom:212.430000px;}
.y133{bottom:213.159000px;}
.yf7{bottom:213.690000px;}
.y1e3{bottom:215.310000px;}
.y2c0{bottom:215.319000px;}
.y361{bottom:216.390000px;}
.y111{bottom:216.930000px;}
.y336{bottom:218.190000px;}
.y275{bottom:218.370000px;}
.yba{bottom:218.385000px;}
.y29e{bottom:219.420000px;}
.y141{bottom:221.610000px;}
.y2e9{bottom:223.590000px;}
.y243{bottom:223.779000px;}
.y2a3{bottom:223.920000px;}
.y267{bottom:223.950000px;}
.y204{bottom:223.959000px;}
.y23{bottom:224.670000px;}
.y1f8{bottom:228.459000px;}
.y57{bottom:230.070000px;}
.y1a6{bottom:230.115000px;}
.yf6{bottom:231.330000px;}
.y231{bottom:232.419000px;}
.y2b7{bottom:232.779000px;}
.y1eb{bottom:232.950000px;}
.y132{bottom:235.119000px;}
.y335{bottom:235.830000px;}
.y176{bottom:236.925000px;}
.y2bf{bottom:237.279000px;}
.y1e2{bottom:237.450000px;}
.y19d{bottom:238.350000px;}
.yb9{bottom:240.345000px;}
.yad{bottom:241.230000px;}
.y29d{bottom:241.380000px;}
.y242{bottom:241.419000px;}
.y2a2{bottom:241.560000px;}
.y266{bottom:241.590000px;}
.y22{bottom:242.310000px;}
.y360{bottom:243.030000px;}
.y84{bottom:243.750000px;}
.y164{bottom:244.470000px;}
.y2f7{bottom:245.910000px;}
.y203{bottom:245.919000px;}
.y291{bottom:246.099000px;}
.y1b3{bottom:247.539000px;}
.yf5{bottom:248.790000px;}
.y13e{bottom:248.970000px;}
.y230{bottom:250.059000px;}
.y2fe{bottom:250.410000px;}
.y1f7{bottom:250.419000px;}
.y28b{bottom:250.590000px;}
.y1a5{bottom:252.075000px;}
.y110{bottom:252.570000px;}
.y334{bottom:253.290000px;}
.y274{bottom:253.830000px;}
.y17e{bottom:254.190000px;}
.y1ea{bottom:254.910000px;}
.y1e1{bottom:255.090000px;}
.y131{bottom:257.259000px;}
.yac{bottom:258.870000px;}
.y265{bottom:259.050000px;}
.y241{bottom:259.059000px;}
.y166{bottom:259.095000px;}
.y2be{bottom:259.419000px;}
.y21{bottom:259.950000px;}
.y35f{bottom:260.670000px;}
.y29c{bottom:263.520000px;}
.y2d4{bottom:263.550000px;}
.y56{bottom:265.710000px;}
.y2fd{bottom:268.050000px;}
.y1f6{bottom:268.059000px;}
.y1b2{bottom:269.499000px;}
.y83{bottom:270.390000px;}
.y333{bottom:270.930000px;}
.y273{bottom:271.470000px;}
.y22f{bottom:272.019000px;}
.y285{bottom:272.550000px;}
.y2b6{bottom:272.559000px;}
.y19c{bottom:273.990000px;}
.y1a4{bottom:274.215000px;}
.yf4{bottom:275.430000px;}
.y2e8{bottom:276.330000px;}
.yab{bottom:276.510000px;}
.y2e5{bottom:276.690000px;}
.y1e0{bottom:277.050000px;}
.y2bd{bottom:277.059000px;}
.y35e{bottom:278.130000px;}
.y130{bottom:279.399000px;}
.y163{bottom:279.930000px;}
.y240{bottom:281.019000px;}
.y25e{bottom:281.190000px;}
.y17d{bottom:281.595000px;}
.y55{bottom:283.350000px;}
.y2f6{bottom:285.690000px;}
.y1f5{bottom:285.699000px;}
.y20{bottom:286.770000px;}
.y11a{bottom:287.175000px;}
.y1ba{bottom:287.355000px;}
.y10f{bottom:288.210000px;}
.y332{bottom:288.570000px;}
.y28a{bottom:290.190000px;}
.y1b1{bottom:291.639000px;}
.yaa{bottom:293.970000px;}
.y135{bottom:294.015000px;}
.y22e{bottom:294.159000px;}
.y2b5{bottom:294.519000px;}
.y1df{bottom:294.690000px;}
.y2bc{bottom:294.699000px;}
.y2e4{bottom:298.650000px;}
.y54{bottom:300.810000px;}
.y25d{bottom:303.150000px;}
.y23f{bottom:303.159000px;}
.y1f4{bottom:303.339000px;}
.y35d{bottom:304.770000px;}
.y82{bottom:305.850000px;}
.y331{bottom:306.030000px;}
.y272{bottom:306.930000px;}
.y2f5{bottom:307.650000px;}
.y177{bottom:308.955000px;}
.y119{bottom:309.315000px;}
.y19b{bottom:309.675000px;}
.yf3{bottom:311.115000px;}
.ya9{bottom:311.655000px;}
.y22d{bottom:311.799000px;}
.y289{bottom:312.150000px;}
.y2b4{bottom:312.159000px;}
.y1de{bottom:312.330000px;}
.y1b4{bottom:314.715000px;}
.y162{bottom:315.615000px;}
.y53{bottom:318.495000px;}
.y2e3{bottom:320.790000px;}
.y23e{bottom:320.799000px;}
.y139{bottom:321.195000px;}
.y35c{bottom:322.455000px;}
.y10e{bottom:323.715000px;}
.y81{bottom:324.435000px;}
.y271{bottom:324.615000px;}
.y25c{bottom:325.290000px;}
.yf2{bottom:328.755000px;}
.y2e7{bottom:329.115000px;}
.ya8{bottom:329.295000px;}
.y2f4{bottom:329.790000px;}
.y2b3{bottom:329.799000px;}
.y22c{bottom:333.939000px;}
.y284{bottom:334.290000px;}
.y1f{bottom:335.415000px;}
.y52{bottom:336.135000px;}
.yd0{bottom:338.070000px;}
.y2e2{bottom:338.430000px;}
.y330{bottom:341.355000px;}
.y80{bottom:341.895000px;}
.y1b6{bottom:342.075000px;}
.y270{bottom:342.255000px;}
.y23d{bottom:342.939000px;}
.y19a{bottom:345.135000px;}
.yf1{bottom:346.215000px;}
.y25b{bottom:347.430000px;}
.y138{bottom:348.555000px;}
.y35b{bottom:348.915000px;}
.y161{bottom:351.255000px;}
.y2ff{bottom:351.435000px;}
.y2fc{bottom:351.930000px;}
.y51{bottom:353.595000px;}
.ya7{bottom:355.755000px;}
.y22b{bottom:355.899000px;}
.y2e1{bottom:356.070000px;}
.y283{bottom:356.430000px;}
.y32f{bottom:358.995000px;}
.y10d{bottom:359.355000px;}
.y26f{bottom:359.895000px;}
.ycf{bottom:360.210000px;}
.y7f{bottom:360.255000px;}
.y23c{bottom:360.579000px;}
.y2c7{bottom:362.055000px;}
.y2d3{bottom:365.070000px;}
.y35a{bottom:366.555000px;}
.y25a{bottom:369.390000px;}
.y1b5{bottom:369.435000px;}
.y2fb{bottom:369.570000px;}
.y50{bottom:371.235000px;}
.y17a{bottom:371.415000px;}
.y1e{bottom:372.495000px;}
.y22a{bottom:373.539000px;}
.y282{bottom:374.070000px;}
.y26e{bottom:377.355000px;}
.y2e0{bottom:378.030000px;}
.y23b{bottom:378.039000px;}
.y7e{bottom:378.795000px;}
.yf0{bottom:379.155000px;}
.ycc{bottom:379.875000px;}
.y199{bottom:380.775000px;}
.yce{bottom:382.170000px;}
.y2d2{bottom:382.530000px;}
.y359{bottom:384.195000px;}
.y160{bottom:386.715000px;}
.y2fa{bottom:387.030000px;}
.y4f{bottom:388.875000px;}
.y1d{bottom:390.135000px;}
.ya6{bottom:391.395000px;}
.y259{bottom:391.530000px;}
.y118{bottom:393.555000px;}
.y32e{bottom:394.455000px;}
.y10c{bottom:394.995000px;}
.y28f{bottom:395.175000px;}
.y229{bottom:395.679000px;}
.y7d{bottom:396.255000px;}
.y179{bottom:398.775000px;}
.y2df{bottom:400.170000px;}
.y23a{bottom:400.179000px;}
.ycd{bottom:404.310000px;}
.y2d1{bottom:404.670000px;}
.y2f0{bottom:406.155000px;}
.y4e{bottom:406.335000px;}
.y1c{bottom:407.595000px;}
.ya5{bottom:409.035000px;}
.y258{bottom:409.170000px;}
.y281{bottom:409.215000px;}
.y24c{bottom:410.295000px;}
.y358{bottom:410.655000px;}
.y32d{bottom:412.095000px;}
.y228{bottom:413.319000px;}
.y2f3{bottom:413.670000px;}
.y1a3{bottom:414.255000px;}
.y7c{bottom:414.795000px;}
.y198{bottom:416.415000px;}
.y239{bottom:417.819000px;}
.yec{bottom:419.655000px;}
.y12c{bottom:420.915000px;}
.y2de{bottom:422.130000px;}
.y15f{bottom:422.355000px;}
.y28e{bottom:422.535000px;}
.y4d{bottom:423.975000px;}
.y1b{bottom:425.235000px;}
.y2d0{bottom:426.630000px;}
.ya4{bottom:426.675000px;}
.y357{bottom:428.295000px;}
.y32c{bottom:429.735000px;}
.y10b{bottom:430.635000px;}
.y2f9{bottom:431.130000px;}
.y257{bottom:431.310000px;}
.y7b{bottom:433.155000px;}
.y227{bottom:435.279000px;}
.y2f2{bottom:435.630000px;}
.y1f2{bottom:439.095000px;}
.y2dd{bottom:439.770000px;}
.y238{bottom:439.779000px;}
.y4c{bottom:441.615000px;}
.y1a{bottom:442.875000px;}
.y165{bottom:443.775000px;}
.y356{bottom:445.935000px;}
.yeb{bottom:447.015000px;}
.y32b{bottom:447.195000px;}
.y129{bottom:448.275000px;}
.y2cf{bottom:448.770000px;}
.y264{bottom:448.995000px;}
.y280{bottom:449.895000px;}
.y197{bottom:452.055000px;}
.y226{bottom:452.919000px;}
.ya3{bottom:453.135000px;}
.y256{bottom:453.315000px;}
.y2dc{bottom:457.410000px;}
.y237{bottom:457.419000px;}
.y15e{bottom:457.995000px;}
.y2b1{bottom:458.175000px;}
.y4b{bottom:459.255000px;}
.y19{bottom:460.515000px;}
.y32a{bottom:464.835000px;}
.y10a{bottom:466.095000px;}
.y1f1{bottom:466.275000px;}
.y2ce{bottom:466.410000px;}
.y1af{bottom:469.005000px;}
.y7a{bottom:469.695000px;}
.y263{bottom:470.955000px;}
.y355{bottom:472.395000px;}
.y225{bottom:474.909000px;}
.y255{bottom:475.455000px;}
.y4a{bottom:476.715000px;}
.y236{bottom:479.409000px;}
.y2db{bottom:479.550000px;}
.y329{bottom:482.475000px;}
.y2cd{bottom:484.050000px;}
.y2b0{bottom:485.535000px;}
.y79{bottom:487.335000px;}
.y196{bottom:487.515000px;}
.ya2{bottom:488.595000px;}
.y354{bottom:490.035000px;}
.yde{bottom:491.835000px;}
.y224{bottom:492.549000px;}
.y123{bottom:493.125000px;}
.y15d{bottom:493.635000px;}
.y49{bottom:494.355000px;}
.y18{bottom:495.975000px;}
.y235{bottom:497.049000px;}
.y254{bottom:497.595000px;}
.y328{bottom:499.935000px;}
.y2da{bottom:501.555000px;}
.y109{bottom:501.735000px;}
.y78{bottom:504.795000px;}
.y2cc{bottom:506.055000px;}
.ya1{bottom:507.135000px;}
.y262{bottom:510.555000px;}
.y171{bottom:510.765000px;}
.y48{bottom:511.995000px;}
.y17{bottom:513.615000px;}
.y1ab{bottom:513.825000px;}
.y223{bottom:514.689000px;}
.y253{bottom:515.235000px;}
.y353{bottom:516.855000px;}
.y327{bottom:517.575000px;}
.y1cc{bottom:520.485000px;}
.y195{bottom:523.155000px;}
.y2d9{bottom:523.695000px;}
.y261{bottom:528.195000px;}
.y15c{bottom:529.095000px;}
.y47{bottom:529.455000px;}
.y16{bottom:531.255000px;}
.y77{bottom:531.435000px;}
.y252{bottom:532.695000px;}
.y126{bottom:532.725000px;}
.y2af{bottom:534.135000px;}
.y326{bottom:535.215000px;}
.y222{bottom:536.829000px;}
.y108{bottom:537.375000px;}
.y16f{bottom:538.125000px;}
.ya0{bottom:543.495000px;}
.y2cb{bottom:545.835000px;}
.y1cb{bottom:547.845000px;}
.y15{bottom:548.715000px;}
.y260{bottom:550.335000px;}
.y325{bottom:552.675000px;}
.y1ae{bottom:553.605000px;}
.y221{bottom:554.469000px;}
.y251{bottom:554.835000px;}
.ye2{bottom:558.795000px;}
.y125{bottom:560.085000px;}
.y9f{bottom:561.135000px;}
.y2ca{bottom:563.475000px;}
.y15b{bottom:564.735000px;}
.y46{bottom:565.095000px;}
.y352{bottom:565.275000px;}
.y14{bottom:566.355000px;}
.y76{bottom:566.895000px;}
.y2f1{bottom:567.975000px;}
.y2ae{bottom:569.775000px;}
.y324{bottom:570.315000px;}
.y220{bottom:571.929000px;}
.y25f{bottom:572.295000px;}
.y107{bottom:572.835000px;}
.y250{bottom:576.795000px;}
.y2c9{bottom:580.935000px;}
.y1ad{bottom:580.965000px;}
.y45{bottom:582.735000px;}
.y351{bottom:582.915000px;}
.y13{bottom:584.025000px;}
.y75{bottom:584.565000px;}
.y167{bottom:587.445000px;}
.y9e{bottom:587.985000px;}
.y21f{bottom:589.569000px;}
.y1c6{bottom:592.665000px;}
.y194{bottom:594.285000px;}
.y24f{bottom:594.435000px;}
.y2c8{bottom:598.575000px;}
.y44{bottom:600.225000px;}
.y15a{bottom:600.405000px;}
.y12{bottom:601.485000px;}
.y74{bottom:602.205000px;}
.y11b{bottom:605.085000px;}
.y323{bottom:605.625000px;}
.y1a7{bottom:608.325000px;}
.y106{bottom:608.505000px;}
.y24e{bottom:612.075000px;}
.y43{bottom:617.865000px;}
.y350{bottom:618.045000px;}
.y73{bottom:619.845000px;}
.y2ad{bottom:622.725000px;}
.y322{bottom:623.085000px;}
.y11{bottom:628.305000px;}
.y24d{bottom:629.715000px;}
.y193{bottom:629.925000px;}
.y11f{bottom:632.490000px;}
.y42{bottom:635.505000px;}
.y1aa{bottom:635.550000px;}
.y34f{bottom:635.685000px;}
.y159{bottom:635.865000px;}
.y9d{bottom:636.405000px;}
.y72{bottom:637.305000px;}
.yd1{bottom:638.925000px;}
.y2ac{bottom:640.185000px;}
.y321{bottom:640.725000px;}
.y105{bottom:644.145000px;}
.y16b{bottom:649.950000px;}
.y41{bottom:653.145000px;}
.y9c{bottom:654.045000px;}
.y71{bottom:654.945000px;}
.y320{bottom:658.365000px;}
.y11e{bottom:659.850000px;}
.y34e{bottom:662.505000px;}
.y1a9{bottom:662.910000px;}
.y192{bottom:665.565000px;}
.y2ab{bottom:666.825000px;}
.y40{bottom:670.605000px;}
.y9b{bottom:671.505000px;}
.y70{bottom:672.585000px;}
.ydb{bottom:674.205000px;}
.y31f{bottom:675.825000px;}
.y10{bottom:676.725000px;}
.y16a{bottom:677.310000px;}
.y104{bottom:679.605000px;}
.y36e{bottom:680.865000px;}
.y3f{bottom:688.245000px;}
.y9a{bottom:689.145000px;}
.y6f{bottom:690.225000px;}
.y31e{bottom:693.465000px;}
.y34d{bottom:699.765000px;}
.y191{bottom:701.025000px;}
.yd5{bottom:701.565000px;}
.y2aa{bottom:702.285000px;}
.y3e{bottom:705.885000px;}
.y99{bottom:706.785000px;}
.y158{bottom:707.145000px;}
.y36d{bottom:707.505000px;}
.y1a2{bottom:707.910000px;}
.y31d{bottom:711.105000px;}
.yf{bottom:712.545000px;}
.y103{bottom:715.245000px;}
.y6e{bottom:716.865000px;}
.y2a9{bottom:719.925000px;}
.y117{bottom:722.310000px;}
.y36c{bottom:725.145000px;}
.y21d{bottom:726.945000px;}
.y31c{bottom:728.565000px;}
.y98{bottom:733.245000px;}
.y1a1{bottom:735.270000px;}
.y190{bottom:736.665000px;}
.y2a8{bottom:737.565000px;}
.y3d{bottom:741.345000px;}
.y157{bottom:742.605000px;}
.y31b{bottom:746.205000px;}
.y34c{bottom:748.005000px;}
.ye{bottom:748.545000px;}
.y116{bottom:749.670000px;}
.y102{bottom:750.885000px;}
.y36b{bottom:751.605000px;}
.y21c{bottom:754.305000px;}
.y2a7{bottom:755.205000px;}
.y3c{bottom:758.985000px;}
.y31a{bottom:763.845000px;}
.y6d{bottom:765.285000px;}
.y34b{bottom:765.645000px;}
.y97{bottom:768.885000px;}
.y36a{bottom:769.245000px;}
.y18f{bottom:772.305000px;}
.y2a6{bottom:772.665000px;}
.y3b{bottom:776.625000px;}
.y156{bottom:778.245000px;}
.y319{bottom:781.485000px;}
.y6c{bottom:782.925000px;}
.y34a{bottom:783.285000px;}
.yd{bottom:784.545000px;}
.y96{bottom:786.525000px;}
.y369{bottom:786.885000px;}
.y2a5{bottom:790.305000px;}
.y115{bottom:798.270000px;}
.y349{bottom:800.925000px;}
.y21b{bottom:802.905000px;}
.yb8{bottom:804.345000px;}
.yc{bottom:806.325000px;}
.y18e{bottom:807.945000px;}
.y318{bottom:808.125000px;}
.y6b{bottom:809.385000px;}
.y3a{bottom:812.085000px;}
.y95{bottom:812.985000px;}
.y368{bottom:813.525000px;}
.y155{bottom:813.885000px;}
.yb{bottom:820.545000px;}
.y101{bottom:821.985000px;}
.y113{bottom:824.940000px;}
.y1dd{bottom:825.405000px;}
.y18d{bottom:825.585000px;}
.y39{bottom:829.725000px;}
.y367{bottom:831.165000px;}
.y154{bottom:831.525000px;}
.ycb{bottom:831.705000px;}
.y348{bottom:836.385000px;}
.y21a{bottom:838.545000px;}
.ya{bottom:842.325000px;}
.y18c{bottom:843.045000px;}
.y6a{bottom:845.025000px;}
.y38{bottom:847.365000px;}
.y94{bottom:848.625000px;}
.y153{bottom:849.165000px;}
.y1db{bottom:852.585000px;}
.y347{bottom:854.025000px;}
.y219{bottom:856.185000px;}
.y9{bottom:856.545000px;}
.y100{bottom:857.625000px;}
.y29b{bottom:858.390000px;}
.yc8{bottom:859.110000px;}
.y18b{bottom:860.730000px;}
.y69{bottom:862.710000px;}
.y37{bottom:864.870000px;}
.y152{bottom:866.670000px;}
.y346{bottom:871.710000px;}
.y218{bottom:873.870000px;}
.y317{bottom:874.230000px;}
.y93{bottom:875.310000px;}
.y8{bottom:878.370000px;}
.y27f{bottom:878.550000px;}
.y151{bottom:884.310000px;}
.y68{bottom:889.170000px;}
.y345{bottom:889.350000px;}
.y217{bottom:891.330000px;}
.y36{bottom:891.870000px;}
.yff{bottom:893.310000px;}
.y1da{bottom:901.410000px;}
.y366{bottom:901.770000px;}
.y150{bottom:901.950000px;}
.ybc{bottom:904.110000px;}
.y27e{bottom:905.910000px;}
.y344{bottom:906.810000px;}
.y216{bottom:908.970000px;}
.y316{bottom:909.330000px;}
.y7{bottom:910.590000px;}
.y92{bottom:910.770000px;}
.yfe{bottom:910.950000px;}
.y18a{bottom:913.830000px;}
.y14f{bottom:919.410000px;}
.y343{bottom:924.450000px;}
.y67{bottom:924.810000px;}
.y315{bottom:926.970000px;}
.y91{bottom:928.410000px;}
.y35{bottom:928.770000px;}
.y6{bottom:930.030000px;}
.y1c4{bottom:930.930000px;}
.y189{bottom:931.470000px;}
.y215{bottom:935.430000px;}
.y1d9{bottom:937.050000px;}
.y342{bottom:942.090000px;}
.y66{bottom:942.450000px;}
.y314{bottom:944.610000px;}
.y90{bottom:946.050000px;}
.y34{bottom:946.410000px;}
.y188{bottom:949.110000px;}
.y5{bottom:949.290000px;}
.y27d{bottom:954.510000px;}
.y1d8{bottom:954.690000px;}
.y14e{bottom:955.050000px;}
.yc4{bottom:956.850000px;}
.y341{bottom:959.550000px;}
.y65{bottom:960.090000px;}
.y313{bottom:962.070000px;}
.y8f{bottom:963.690000px;}
.y33{bottom:964.050000px;}
.y187{bottom:966.570000px;}
.y214{bottom:971.070000px;}
.y1d7{bottom:972.150000px;}
.y14d{bottom:972.690000px;}
.y340{bottom:977.190000px;}
.y64{bottom:977.550000px;}
.y312{bottom:979.710000px;}
.y2c6{bottom:980.070000px;}
.y8e{bottom:981.150000px;}
.y32{bottom:981.690000px;}
.ybf{bottom:984.210000px;}
.y4{bottom:987.630000px;}
.y213{bottom:988.710000px;}
.y1d6{bottom:989.790000px;}
.y14c{bottom:990.150000px;}
.y2ef{bottom:993.390000px;}
.y33f{bottom:994.830000px;}
.y63{bottom:995.190000px;}
.y311{bottom:997.350000px;}
.y8d{bottom:998.790000px;}
.y31{bottom:999.150000px;}
.y186{bottom:1001.850000px;}
.y212{bottom:1006.350000px;}
.y1d5{bottom:1007.430000px;}
.y14b{bottom:1007.790000px;}
.y3{bottom:1012.290000px;}
.y33e{bottom:1012.470000px;}
.y62{bottom:1012.830000px;}
.y8c{bottom:1016.430000px;}
.yfd{bottom:1016.790000px;}
.y1c3{bottom:1019.310000px;}
.y2ee{bottom:1020.750000px;}
.y211{bottom:1023.810000px;}
.y14a{bottom:1025.430000px;}
.y33d{bottom:1029.930000px;}
.y30e{bottom:1030.290000px;}
.y61{bottom:1030.470000px;}
.y1d4{bottom:1033.890000px;}
.yfc{bottom:1034.430000px;}
.y30{bottom:1034.790000px;}
.y1c2{bottom:1036.950000px;}
.y185{bottom:1037.310000px;}
.y210{bottom:1041.450000px;}
.y8b{bottom:1042.890000px;}
.y27c{bottom:1043.070000px;}
.y33c{bottom:1047.570000px;}
.y60{bottom:1047.930000px;}
.y149{bottom:1051.890000px;}
.y2f{bottom:1052.430000px;}
.y1c1{bottom:1054.590000px;}
.y184{bottom:1054.950000px;}
.y20f{bottom:1059.090000px;}
.y24b{bottom:1059.450000px;}
.y365{bottom:1060.890000px;}
.yb6{bottom:1064.310000px;}
.y5f{bottom:1065.570000px;}
.y1d3{bottom:1069.530000px;}
.yfb{bottom:1069.890000px;}
.y2e{bottom:1070.070000px;}
.y183{bottom:1072.590000px;}
.y33b{bottom:1074.390000px;}
.y8a{bottom:1078.530000px;}
.y5e{bottom:1083.210000px;}
.y24a{bottom:1086.810000px;}
.y1d2{bottom:1087.170000px;}
.y2d{bottom:1087.530000px;}
.y1c0{bottom:1090.050000px;}
.y182{bottom:1090.230000px;}
.yb4{bottom:1091.490000px;}
.y20e{bottom:1092.030000px;}
.y89{bottom:1096.170000px;}
.y5d{bottom:1100.670000px;}
.y1d1{bottom:1104.810000px;}
.y2c{bottom:1105.170000px;}
.y181{bottom:1107.690000px;}
.y88{bottom:1113.810000px;}
.y249{bottom:1113.990000px;}
.y33a{bottom:1122.630000px;}
.y2b{bottom:1122.810000px;}
.y5c{bottom:1127.490000px;}
.y1d0{bottom:1131.270000px;}
.y180{bottom:1134.360000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h25{height:2.505938px;}
.h10{height:26.460000px;}
.h3f{height:26.496000px;}
.hf{height:26.640000px;}
.h17{height:26.676000px;}
.h2{height:29.717578px;}
.h1c{height:34.560000px;}
.h6{height:35.477578px;}
.h20{height:38.880000px;}
.h23{height:39.060000px;}
.h3{height:39.468516px;}
.h4d{height:39.816000px;}
.h22{height:44.100000px;}
.h2c{height:44.136000px;}
.h16{height:44.280000px;}
.h36{height:48.600000px;}
.h7{height:50.597578px;}
.h8{height:51.998203px;}
.h14{height:52.020000px;}
.h2d{height:53.820000px;}
.h2a{height:53.856000px;}
.h30{height:54.000000px;}
.h3d{height:54.036000px;}
.h9{height:56.084062px;}
.h45{height:56.520000px;}
.h48{height:56.556000px;}
.h5{height:57.636562px;}
.he{height:59.614102px;}
.ha{height:60.960938px;}
.hd{height:61.423863px;}
.h1b{height:61.740000px;}
.h34{height:61.776000px;}
.hc{height:62.211094px;}
.h1f{height:66.240000px;}
.h38{height:66.276000px;}
.h41{height:66.420000px;}
.hb{height:68.956875px;}
.h3b{height:71.460000px;}
.h33{height:71.640000px;}
.h4{height:73.298672px;}
.h37{height:75.960000px;}
.h13{height:79.200000px;}
.h1e{height:79.416000px;}
.h44{height:83.916000px;}
.h40{height:93.600000px;}
.h2f{height:98.820000px;}
.h2b{height:98.856000px;}
.h15{height:99.036000px;}
.h1a{height:101.340000px;}
.h21{height:111.240000px;}
.h43{height:111.276000px;}
.h29{height:116.496000px;}
.h53{height:119.016000px;}
.h3c{height:120.996000px;}
.h57{height:123.516000px;}
.h47{height:128.916000px;}
.h3a{height:133.920000px;}
.h32{height:134.136000px;}
.h35{height:142.956000px;}
.h1d{height:146.376000px;}
.h12{height:159.300000px;}
.h19{height:163.980000px;}
.h49{height:198.390000px;}
.h46{height:228.450000px;}
.h56{height:233.850000px;}
.h39{height:255.630000px;}
.h11{height:259.050000px;}
.h50{height:264.630000px;}
.h31{height:277.815000px;}
.h3e{height:292.935000px;}
.h51{height:295.410000px;}
.h2e{height:298.110000px;}
.h42{height:310.350000px;}
.h4b{height:321.870000px;}
.h28{height:328.035000px;}
.h4a{height:330.870000px;}
.h52{height:348.510000px;}
.h18{height:423.030000px;}
.h24{height:424.470000px;}
.h4f{height:427.935000px;}
.h55{height:586.515000px;}
.h4c{height:608.295000px;}
.h54{height:617.295000px;}
.h4e{height:648.435000px;}
.h26{height:893.160000px;}
.h27{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:45.036000px;}
.w20{width:46.476000px;}
.w15{width:48.060000px;}
.w11{width:51.300000px;}
.w1e{width:52.380000px;}
.w1d{width:52.416000px;}
.w1c{width:52.560000px;}
.w10{width:53.460000px;}
.w14{width:56.700000px;}
.w3d{width:57.420000px;}
.we{width:59.940000px;}
.w3e{width:60.480000px;}
.w13{width:60.840000px;}
.w5e{width:61.200000px;}
.w5f{width:61.380000px;}
.w2d{width:62.460000px;}
.w5{width:63.000000px;}
.wb{width:63.036000px;}
.w19{width:63.216000px;}
.w53{width:63.396000px;}
.w12{width:65.196000px;}
.w4{width:66.276000px;}
.w26{width:66.456000px;}
.w4f{width:67.140000px;}
.w50{width:67.896000px;}
.w3f{width:68.076000px;}
.w55{width:68.400000px;}
.w4e{width:71.100000px;}
.w1f{width:72.900000px;}
.w52{width:73.260000px;}
.w1a{width:73.620000px;}
.w16{width:73.656000px;}
.w58{width:74.016000px;}
.w46{width:74.700000px;}
.wc{width:75.780000px;}
.w54{width:77.220000px;}
.w21{width:78.840000px;}
.w66{width:79.740000px;}
.w2e{width:80.100000px;}
.w34{width:81.900000px;}
.w47{width:81.936000px;}
.w42{width:83.556000px;}
.w64{width:84.240000px;}
.w45{width:84.276000px;}
.w27{width:85.680000px;}
.w32{width:85.716000px;}
.w36{width:86.616000px;}
.w2f{width:86.976000px;}
.w35{width:88.056000px;}
.w62{width:88.596000px;}
.w37{width:89.100000px;}
.w57{width:89.676000px;}
.w48{width:90.000000px;}
.w65{width:91.296000px;}
.w44{width:91.800000px;}
.w41{width:94.320000px;}
.w33{width:96.480000px;}
.w63{width:96.660000px;}
.w31{width:99.540000px;}
.w61{width:102.600000px;}
.w56{width:102.960000px;}
.wd{width:103.356000px;}
.w9{width:105.480000px;}
.w17{width:105.660000px;}
.w8{width:105.696000px;}
.w1b{width:111.996000px;}
.w43{width:114.120000px;}
.w18{width:126.036000px;}
.wa{width:126.756000px;}
.w30{width:127.440000px;}
.w40{width:132.300000px;}
.w4b{width:137.376000px;}
.w60{width:140.400000px;}
.w4c{width:146.340000px;}
.w3c{width:159.690000px;}
.w2c{width:164.730000px;}
.w5d{width:171.750000px;}
.w3a{width:178.590000px;}
.w2b{width:179.100000px;}
.w5c{width:181.620000px;}
.w51{width:183.960000px;}
.w2a{width:186.150000px;}
.w5b{width:191.910000px;}
.w4d{width:193.350000px;}
.w3b{width:206.640000px;}
.w7{width:307.695000px;}
.w39{width:320.430000px;}
.w5a{width:333.030000px;}
.w6{width:339.555000px;}
.w6d{width:353.775000px;}
.w71{width:357.555000px;}
.w29{width:359.490000px;}
.w6e{width:360.795000px;}
.w6a{width:362.955000px;}
.w68{width:364.035000px;}
.w69{width:391.065000px;}
.w6b{width:392.145000px;}
.w4a{width:392.430000px;}
.w6f{width:394.305000px;}
.w70{width:397.545000px;}
.w6c{width:401.325000px;}
.w49{width:478.515000px;}
.w28{width:531.435000px;}
.w38{width:546.555000px;}
.w59{width:546.735000px;}
.w67{width:755.820000px;}
.w3{width:778.680000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w25{width:1045.230000px;}
.w23{width:1262.250000px;}
.w24{width:1262.519981px;}
.w22{width:1262.520000px;}
.x0{left:0.000000px;}
.x1b{left:3.960000px;}
.x6{left:7.740000px;}
.x13{left:62.280000px;}
.x1{left:68.040000px;}
.x4{left:95.075987px;}
.x1a{left:107.999981px;}
.x48{left:111.275987px;}
.x5{left:122.075987px;}
.x7{left:135.756000px;}
.x1c{left:175.890000px;}
.x3a{left:183.450000px;}
.x30{left:191.370000px;}
.x26{left:196.230000px;}
.x8{left:199.470000px;}
.x2{left:210.989987px;}
.x15{left:253.650000px;}
.xf{left:260.130000px;}
.x1d{left:262.290000px;}
.x3b{left:273.270000px;}
.x31{left:282.090000px;}
.x27{left:286.050000px;}
.xa{left:305.895000px;}
.x37{left:356.070000px;}
.x10{left:360.075000px;}
.x12{left:363.315000px;}
.x41{left:376.590000px;}
.x2d{left:381.090000px;}
.x18{left:395.669981px;}
.xb{left:412.275000px;}
.x33{left:420.195000px;}
.x47{left:430.275000px;}
.x45{left:432.435000px;}
.x44{left:433.515000px;}
.x1f{left:449.175000px;}
.x17{left:460.365000px;}
.x16{left:466.305000px;}
.x46{left:470.805000px;}
.x11{left:478.185000px;}
.x38{left:498.135000px;}
.x9{left:539.745000px;}
.x24{left:546.375000px;}
.x42{left:563.295000px;}
.x34{left:567.255000px;}
.x2e{left:580.215000px;}
.xc{left:603.645000px;}
.x20{left:628.995000px;}
.x3d{left:648.255000px;}
.xd{left:667.410000px;}
.x39{left:670.935000px;}
.x29{left:672.915000px;}
.x25{left:717.945000px;}
.x43{left:740.265000px;}
.x14{left:741.930000px;}
.xe{left:744.090000px;}
.x2f{left:757.905000px;}
.x32{left:761.505000px;}
.x1e{left:794.445000px;}
.x3{left:800.429987px;}
.x3c{left:820.905000px;}
.x28{left:833.505000px;}
.x21{left:857.805000px;}
.x3e{left:882.825000px;}
.x2a{left:891.645000px;}
.x35{left:901.365000px;}
.x22{left:938.805000px;}
.x3f{left:944.925000px;}
.x2b{left:952.845000px;}
.x36{left:969.990000px;}
.x40{left:1013.550000px;}
.x2c{left:1021.650000px;}
.x23{left:1026.510000px;}
.x19{left:1129.829981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.329067pt;}
.ls7{letter-spacing:-0.290133pt;}
.ls14{letter-spacing:-0.225067pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.032000pt;}
.ls8{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls10{letter-spacing:0.016640pt;}
.ls9{letter-spacing:0.107733pt;}
.ls13{letter-spacing:0.117867pt;}
.ls4{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls15{letter-spacing:0.186133pt;}
.lsc{letter-spacing:0.188160pt;}
.ls12{letter-spacing:0.227200pt;}
.ls11{letter-spacing:0.305067pt;}
.ls1{letter-spacing:0.312320pt;}
.ls18{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.342933pt;}
.lsd{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:42.192640pt;}
.lse{letter-spacing:56.912640pt;}
.ls17{letter-spacing:72.272640pt;}
.wsc{word-spacing:-53.120000pt;}
.wsa{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.953600pt;}
.wse{word-spacing:-11.991467pt;}
.ws10{word-spacing:-11.913600pt;}
.ws13{word-spacing:-11.872533pt;}
.ws11{word-spacing:-11.804267pt;}
.wsd{word-spacing:-11.703040pt;}
.ws4{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.ws14{word-spacing:-11.654400pt;}
.wsb{word-spacing:-11.639040pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.wsf{word-spacing:-7.603200pt;}
.ws12{word-spacing:-7.378133pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:2.268480pt;}
._23{margin-left:-3.556100pt;}
._9{margin-left:-2.327468pt;}
._0{margin-left:-1.030400pt;}
._2{width:1.049648pt;}
._6{width:2.539236pt;}
._7{width:3.711128pt;}
._8{width:4.973901pt;}
._1{width:6.664545pt;}
._a{width:7.576393pt;}
._5{width:9.057057pt;}
._3{width:10.421937pt;}
._4{width:11.743897pt;}
._d{width:12.774304pt;}
._e{width:13.664592pt;}
._c{width:15.177456pt;}
._b{width:16.148480pt;}
._2a{width:17.210880pt;}
._31{width:18.179792pt;}
._29{width:19.123200pt;}
._12{width:20.238720pt;}
._2e{width:21.619840pt;}
._10{width:22.947840pt;}
._2c{width:25.338240pt;}
._34{width:26.400640pt;}
._2b{width:27.794512pt;}
._25{width:29.322240pt;}
._17{width:30.862720pt;}
._32{width:32.828160pt;}
._22{width:35.165440pt;}
._20{width:36.280960pt;}
._11{width:37.887312pt;}
._2d{width:39.308800pt;}
._19{width:41.752320pt;}
._30{width:44.992640pt;}
._33{width:46.399264pt;}
._2f{width:56.891520pt;}
._13{width:58.007040pt;}
._18{width:60.291200pt;}
._26{width:61.591584pt;}
._1c{width:63.000320pt;}
._1b{width:63.956480pt;}
._16{width:67.953232pt;}
._1a{width:75.430400pt;}
._14{width:80.051840pt;}
._1f{width:81.804800pt;}
._15{width:83.132800pt;}
._27{width:88.072960pt;}
._28{width:89.413712pt;}
._24{width:103.032699pt;}
._f{width:106.505600pt;}
._1d{width:111.073920pt;}
._21{width:140.940112pt;}
._1e{width:197.406672pt;}
.fs8{font-size:2.560000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y147{bottom:6.874667pt;}
.yb7{bottom:6.880000pt;}
.y12b{bottom:6.906667pt;}
.yb5{bottom:7.040000pt;}
.y1dc{bottom:7.080000pt;}
.y170{bottom:10.880000pt;}
.y202{bottom:11.040000pt;}
.y1cf{bottom:11.520000pt;}
.y12e{bottom:11.680000pt;}
.ydd{bottom:14.080000pt;}
.y30d{bottom:14.880000pt;}
.y13a{bottom:15.520000pt;}
.y122{bottom:15.680000pt;}
.y17f{bottom:15.720000pt;}
.ye7{bottom:17.920000pt;}
.yef{bottom:18.080000pt;}
.y146{bottom:22.554667pt;}
.yc2{bottom:22.560000pt;}
.y12a{bottom:22.586667pt;}
.y13f{bottom:22.600000pt;}
.y297{bottom:22.714667pt;}
.yc9{bottom:22.720000pt;}
.ye6{bottom:22.746667pt;}
.y140{bottom:22.760000pt;}
.yd9{bottom:26.560000pt;}
.y29a{bottom:26.714667pt;}
.yee{bottom:26.720000pt;}
.yc5{bottom:29.600000pt;}
.y30c{bottom:30.554667pt;}
.y12d{bottom:31.200000pt;}
.y120{bottom:31.240000pt;}
.y142{bottom:31.360000pt;}
.y121{bottom:31.400000pt;}
.y1bd{bottom:32.000000pt;}
.y1bb{bottom:33.600000pt;}
.y1ca{bottom:33.640000pt;}
.y2c4{bottom:34.240000pt;}
.y173{bottom:35.200000pt;}
.y2bb{bottom:38.234667pt;}
.yc1{bottom:38.240000pt;}
.ye4{bottom:38.266667pt;}
.y16c{bottom:38.280000pt;}
.y20d{bottom:38.394667pt;}
.ydc{bottom:38.400000pt;}
.ye5{bottom:38.426667pt;}
.y16d{bottom:38.440000pt;}
.y248{bottom:42.234667pt;}
.yd8{bottom:42.240000pt;}
.y174{bottom:42.266667pt;}
.y1c9{bottom:42.280000pt;}
.y299{bottom:42.394667pt;}
.yed{bottom:42.400000pt;}
.y201{bottom:46.234667pt;}
.y1f0{bottom:46.240000pt;}
.y17b{bottom:46.880000pt;}
.yea{bottom:47.040000pt;}
.y30b{bottom:50.234667pt;}
.y172{bottom:50.880000pt;}
.y1bc{bottom:51.514667pt;}
.y137{bottom:51.520000pt;}
.y128{bottom:51.546667pt;}
.y1a8{bottom:51.560000pt;}
.y13d{bottom:51.680000pt;}
.yca{bottom:51.720000pt;}
.yc3{bottom:53.760000pt;}
.yc0{bottom:53.920000pt;}
.ye3{bottom:53.946667pt;}
.y144{bottom:55.514667pt;}
.yc7{bottom:55.720000pt;}
.yda{bottom:57.760000pt;}
.y20c{bottom:57.914667pt;}
.yd7{bottom:57.920000pt;}
.y1c8{bottom:57.960000pt;}
.y310{bottom:61.760000pt;}
.y296{bottom:61.914667pt;}
.y1ef{bottom:61.920000pt;}
.y124{bottom:62.560000pt;}
.y1b9{bottom:62.600000pt;}
.ye9{bottom:62.720000pt;}
.y2{bottom:65.152000pt;}
.y307{bottom:65.754667pt;}
.y200{bottom:65.914667pt;}
.y114{bottom:65.920000pt;}
.y29{bottom:65.952000pt;}
.y1ac{bottom:66.560000pt;}
.y11d{bottom:67.240000pt;}
.y30a{bottom:69.754667pt;}
.y143{bottom:71.194667pt;}
.y136{bottom:71.200000pt;}
.y127{bottom:71.226667pt;}
.y13c{bottom:71.240000pt;}
.yc6{bottom:71.400000pt;}
.yd6{bottom:73.440000pt;}
.y247{bottom:73.594667pt;}
.y2d8{bottom:73.600000pt;}
.y2c5{bottom:77.440000pt;}
.y20b{bottom:77.594667pt;}
.y1e9{bottom:77.600000pt;}
.ye1{bottom:78.240000pt;}
.y30f{bottom:81.440000pt;}
.y295{bottom:81.594667pt;}
.y288{bottom:81.600000pt;}
.y1ee{bottom:81.626667pt;}
.ye8{bottom:82.240000pt;}
.y1b8{bottom:82.280000pt;}
.y169{bottom:82.920000pt;}
.y12f{bottom:84.192000pt;}
.y306{bottom:85.434667pt;}
.y1ff{bottom:85.594667pt;}
.y11c{bottom:86.920000pt;}
.y246{bottom:89.274667pt;}
.y1{bottom:90.112000pt;}
.y17c{bottom:90.920000pt;}
.y1b0{bottom:91.712000pt;}
.y2ba{bottom:93.114667pt;}
.y2d7{bottom:93.120000pt;}
.y2c3{bottom:93.146667pt;}
.y20a{bottom:93.274667pt;}
.y26d{bottom:93.280000pt;}
.yd4{bottom:93.920000pt;}
.ye0{bottom:93.946667pt;}
.y2b2{bottom:96.832000pt;}
.y298{bottom:97.114667pt;}
.y1e8{bottom:97.146667pt;}
.y294{bottom:97.274667pt;}
.y287{bottom:97.280000pt;}
.y1ed{bottom:97.306667pt;}
.y1c7{bottom:97.960000pt;}
.y27b{bottom:100.192000pt;}
.y2c2{bottom:101.114667pt;}
.y28d{bottom:101.120000pt;}
.y1fe{bottom:101.274667pt;}
.y178{bottom:102.400000pt;}
.y168{bottom:102.600000pt;}
.y1f3{bottom:103.392000pt;}
.y300{bottom:103.872000pt;}
.yb3{bottom:104.672000pt;}
.y21e{bottom:104.832000pt;}
.y305{bottom:105.114667pt;}
.y148{bottom:108.512000pt;}
.y209{bottom:108.794667pt;}
.y26c{bottom:108.800000pt;}
.ybe{bottom:109.440000pt;}
.yd3{bottom:109.600000pt;}
.y16e{bottom:110.426667pt;}
.y2ed{bottom:112.192000pt;}
.y2a1{bottom:112.800000pt;}
.ydf{bottom:113.466667pt;}
.y290{bottom:115.392000pt;}
.y339{bottom:115.712000pt;}
.y27a{bottom:115.872000pt;}
.y1bf{bottom:116.032000pt;}
.y1fd{bottom:116.794667pt;}
.y286{bottom:116.800000pt;}
.y1e7{bottom:116.826667pt;}
.y1a0{bottom:116.992000pt;}
.yb2{bottom:120.352000pt;}
.y304{bottom:120.794667pt;}
.y28c{bottom:120.826667pt;}
.y27{bottom:121.312000pt;}
.y309{bottom:124.634667pt;}
.ybd{bottom:125.120000pt;}
.yfa{bottom:127.072000pt;}
.y2ec{bottom:127.872000pt;}
.y208{bottom:128.474667pt;}
.y26b{bottom:128.480000pt;}
.yd2{bottom:129.120000pt;}
.y338{bottom:131.392000pt;}
.y279{bottom:131.552000pt;}
.y2e6{bottom:132.480000pt;}
.y145{bottom:132.832000pt;}
.yb1{bottom:136.026667pt;}
.y1fc{bottom:136.474667pt;}
.y1e6{bottom:136.506667pt;}
.y26{bottom:136.826667pt;}
.y364{bottom:137.466667pt;}
.y1ce{bottom:140.026667pt;}
.y303{bottom:140.314667pt;}
.y1be{bottom:140.346667pt;}
.y5b{bottom:141.946667pt;}
.yf9{bottom:142.746667pt;}
.y245{bottom:144.154667pt;}
.y308{bottom:144.314667pt;}
.y87{bottom:145.786667pt;}
.y278{bottom:147.066667pt;}
.y2b9{bottom:147.994667pt;}
.y2d6{bottom:148.000000pt;}
.y207{bottom:148.154667pt;}
.y26a{bottom:148.160000pt;}
.y19f{bottom:148.666667pt;}
.y2eb{bottom:151.386667pt;}
.yb0{bottom:151.546667pt;}
.y1fb{bottom:152.154667pt;}
.y1e5{bottom:152.186667pt;}
.y25{bottom:152.506667pt;}
.y363{bottom:153.146667pt;}
.y234{bottom:155.674667pt;}
.y293{bottom:156.154667pt;}
.y5a{bottom:157.626667pt;}
.y1cd{bottom:159.706667pt;}
.y302{bottom:159.994667pt;}
.y112{bottom:161.306667pt;}
.y86{bottom:161.466667pt;}
.y277{bottom:162.746667pt;}
.y244{bottom:163.674667pt;}
.y2d5{bottom:163.680000pt;}
.y206{bottom:163.834667pt;}
.y2a0{bottom:163.840000pt;}
.y269{bottom:163.866667pt;}
.y175{bottom:166.426667pt;}
.yaf{bottom:167.226667pt;}
.y2b8{bottom:167.674667pt;}
.y2f8{bottom:167.706667pt;}
.y1fa{bottom:167.834667pt;}
.y134{bottom:169.794667pt;}
.y233{bottom:171.394667pt;}
.y2c1{bottom:171.674667pt;}
.y1e4{bottom:171.706667pt;}
.y292{bottom:171.874667pt;}
.y13b{bottom:172.666667pt;}
.y59{bottom:173.306667pt;}
.yf8{bottom:174.266667pt;}
.ybb{bottom:174.440000pt;}
.y301{bottom:175.714667pt;}
.y362{bottom:176.666667pt;}
.y337{bottom:178.266667pt;}
.y276{bottom:178.426667pt;}
.y29f{bottom:179.360000pt;}
.y205{bottom:179.394667pt;}
.y1b7{bottom:180.186667pt;}
.y19e{bottom:180.346667pt;}
.yae{bottom:182.906667pt;}
.y2ea{bottom:183.066667pt;}
.y2a4{bottom:183.360000pt;}
.y268{bottom:183.386667pt;}
.y24{bottom:184.026667pt;}
.y85{bottom:184.986667pt;}
.y1c5{bottom:186.440000pt;}
.y232{bottom:187.074667pt;}
.y1ec{bottom:187.386667pt;}
.y1f9{bottom:187.394667pt;}
.y58{bottom:188.826667pt;}
.y133{bottom:189.474667pt;}
.yf7{bottom:189.946667pt;}
.y1e3{bottom:191.386667pt;}
.y2c0{bottom:191.394667pt;}
.y361{bottom:192.346667pt;}
.y111{bottom:192.826667pt;}
.y336{bottom:193.946667pt;}
.y275{bottom:194.106667pt;}
.yba{bottom:194.120000pt;}
.y29e{bottom:195.040000pt;}
.y141{bottom:196.986667pt;}
.y2e9{bottom:198.746667pt;}
.y243{bottom:198.914667pt;}
.y2a3{bottom:199.040000pt;}
.y267{bottom:199.066667pt;}
.y204{bottom:199.074667pt;}
.y23{bottom:199.706667pt;}
.y1f8{bottom:203.074667pt;}
.y57{bottom:204.506667pt;}
.y1a6{bottom:204.546667pt;}
.yf6{bottom:205.626667pt;}
.y231{bottom:206.594667pt;}
.y2b7{bottom:206.914667pt;}
.y1eb{bottom:207.066667pt;}
.y132{bottom:208.994667pt;}
.y335{bottom:209.626667pt;}
.y176{bottom:210.600000pt;}
.y2bf{bottom:210.914667pt;}
.y1e2{bottom:211.066667pt;}
.y19d{bottom:211.866667pt;}
.yb9{bottom:213.640000pt;}
.yad{bottom:214.426667pt;}
.y29d{bottom:214.560000pt;}
.y242{bottom:214.594667pt;}
.y2a2{bottom:214.720000pt;}
.y266{bottom:214.746667pt;}
.y22{bottom:215.386667pt;}
.y360{bottom:216.026667pt;}
.y84{bottom:216.666667pt;}
.y164{bottom:217.306667pt;}
.y2f7{bottom:218.586667pt;}
.y203{bottom:218.594667pt;}
.y291{bottom:218.754667pt;}
.y1b3{bottom:220.034667pt;}
.yf5{bottom:221.146667pt;}
.y13e{bottom:221.306667pt;}
.y230{bottom:222.274667pt;}
.y2fe{bottom:222.586667pt;}
.y1f7{bottom:222.594667pt;}
.y28b{bottom:222.746667pt;}
.y1a5{bottom:224.066667pt;}
.y110{bottom:224.506667pt;}
.y334{bottom:225.146667pt;}
.y274{bottom:225.626667pt;}
.y17e{bottom:225.946667pt;}
.y1ea{bottom:226.586667pt;}
.y1e1{bottom:226.746667pt;}
.y131{bottom:228.674667pt;}
.yac{bottom:230.106667pt;}
.y265{bottom:230.266667pt;}
.y241{bottom:230.274667pt;}
.y166{bottom:230.306667pt;}
.y2be{bottom:230.594667pt;}
.y21{bottom:231.066667pt;}
.y35f{bottom:231.706667pt;}
.y29c{bottom:234.240000pt;}
.y2d4{bottom:234.266667pt;}
.y56{bottom:236.186667pt;}
.y2fd{bottom:238.266667pt;}
.y1f6{bottom:238.274667pt;}
.y1b2{bottom:239.554667pt;}
.y83{bottom:240.346667pt;}
.y333{bottom:240.826667pt;}
.y273{bottom:241.306667pt;}
.y22f{bottom:241.794667pt;}
.y285{bottom:242.266667pt;}
.y2b6{bottom:242.274667pt;}
.y19c{bottom:243.546667pt;}
.y1a4{bottom:243.746667pt;}
.yf4{bottom:244.826667pt;}
.y2e8{bottom:245.626667pt;}
.yab{bottom:245.786667pt;}
.y2e5{bottom:245.946667pt;}
.y1e0{bottom:246.266667pt;}
.y2bd{bottom:246.274667pt;}
.y35e{bottom:247.226667pt;}
.y130{bottom:248.354667pt;}
.y163{bottom:248.826667pt;}
.y240{bottom:249.794667pt;}
.y25e{bottom:249.946667pt;}
.y17d{bottom:250.306667pt;}
.y55{bottom:251.866667pt;}
.y2f6{bottom:253.946667pt;}
.y1f5{bottom:253.954667pt;}
.y20{bottom:254.906667pt;}
.y11a{bottom:255.266667pt;}
.y1ba{bottom:255.426667pt;}
.y10f{bottom:256.186667pt;}
.y332{bottom:256.506667pt;}
.y28a{bottom:257.946667pt;}
.y1b1{bottom:259.234667pt;}
.yaa{bottom:261.306667pt;}
.y135{bottom:261.346667pt;}
.y22e{bottom:261.474667pt;}
.y2b5{bottom:261.794667pt;}
.y1df{bottom:261.946667pt;}
.y2bc{bottom:261.954667pt;}
.y2e4{bottom:265.466667pt;}
.y54{bottom:267.386667pt;}
.y25d{bottom:269.466667pt;}
.y23f{bottom:269.474667pt;}
.y1f4{bottom:269.634667pt;}
.y35d{bottom:270.906667pt;}
.y82{bottom:271.866667pt;}
.y331{bottom:272.026667pt;}
.y272{bottom:272.826667pt;}
.y2f5{bottom:273.466667pt;}
.y177{bottom:274.626667pt;}
.y119{bottom:274.946667pt;}
.y19b{bottom:275.266667pt;}
.yf3{bottom:276.546667pt;}
.ya9{bottom:277.026667pt;}
.y22d{bottom:277.154667pt;}
.y289{bottom:277.466667pt;}
.y2b4{bottom:277.474667pt;}
.y1de{bottom:277.626667pt;}
.y1b4{bottom:279.746667pt;}
.y162{bottom:280.546667pt;}
.y53{bottom:283.106667pt;}
.y2e3{bottom:285.146667pt;}
.y23e{bottom:285.154667pt;}
.y139{bottom:285.506667pt;}
.y35c{bottom:286.626667pt;}
.y10e{bottom:287.746667pt;}
.y81{bottom:288.386667pt;}
.y271{bottom:288.546667pt;}
.y25c{bottom:289.146667pt;}
.yf2{bottom:292.226667pt;}
.y2e7{bottom:292.546667pt;}
.ya8{bottom:292.706667pt;}
.y2f4{bottom:293.146667pt;}
.y2b3{bottom:293.154667pt;}
.y22c{bottom:296.834667pt;}
.y284{bottom:297.146667pt;}
.y1f{bottom:298.146667pt;}
.y52{bottom:298.786667pt;}
.yd0{bottom:300.506667pt;}
.y2e2{bottom:300.826667pt;}
.y330{bottom:303.426667pt;}
.y80{bottom:303.906667pt;}
.y1b6{bottom:304.066667pt;}
.y270{bottom:304.226667pt;}
.y23d{bottom:304.834667pt;}
.y19a{bottom:306.786667pt;}
.yf1{bottom:307.746667pt;}
.y25b{bottom:308.826667pt;}
.y138{bottom:309.826667pt;}
.y35b{bottom:310.146667pt;}
.y161{bottom:312.226667pt;}
.y2ff{bottom:312.386667pt;}
.y2fc{bottom:312.826667pt;}
.y51{bottom:314.306667pt;}
.ya7{bottom:316.226667pt;}
.y22b{bottom:316.354667pt;}
.y2e1{bottom:316.506667pt;}
.y283{bottom:316.826667pt;}
.y32f{bottom:319.106667pt;}
.y10d{bottom:319.426667pt;}
.y26f{bottom:319.906667pt;}
.ycf{bottom:320.186667pt;}
.y7f{bottom:320.226667pt;}
.y23c{bottom:320.514667pt;}
.y2c7{bottom:321.826667pt;}
.y2d3{bottom:324.506667pt;}
.y35a{bottom:325.826667pt;}
.y25a{bottom:328.346667pt;}
.y1b5{bottom:328.386667pt;}
.y2fb{bottom:328.506667pt;}
.y50{bottom:329.986667pt;}
.y17a{bottom:330.146667pt;}
.y1e{bottom:331.106667pt;}
.y22a{bottom:332.034667pt;}
.y282{bottom:332.506667pt;}
.y26e{bottom:335.426667pt;}
.y2e0{bottom:336.026667pt;}
.y23b{bottom:336.034667pt;}
.y7e{bottom:336.706667pt;}
.yf0{bottom:337.026667pt;}
.ycc{bottom:337.666667pt;}
.y199{bottom:338.466667pt;}
.yce{bottom:339.706667pt;}
.y2d2{bottom:340.026667pt;}
.y359{bottom:341.506667pt;}
.y160{bottom:343.746667pt;}
.y2fa{bottom:344.026667pt;}
.y4f{bottom:345.666667pt;}
.y1d{bottom:346.786667pt;}
.ya6{bottom:347.906667pt;}
.y259{bottom:348.026667pt;}
.y118{bottom:349.826667pt;}
.y32e{bottom:350.626667pt;}
.y10c{bottom:351.106667pt;}
.y28f{bottom:351.266667pt;}
.y229{bottom:351.714667pt;}
.y7d{bottom:352.226667pt;}
.y179{bottom:354.466667pt;}
.y2df{bottom:355.706667pt;}
.y23a{bottom:355.714667pt;}
.ycd{bottom:359.386667pt;}
.y2d1{bottom:359.706667pt;}
.y2f0{bottom:361.026667pt;}
.y4e{bottom:361.186667pt;}
.y1c{bottom:362.306667pt;}
.ya5{bottom:363.586667pt;}
.y258{bottom:363.706667pt;}
.y281{bottom:363.746667pt;}
.y24c{bottom:364.706667pt;}
.y358{bottom:365.026667pt;}
.y32d{bottom:366.306667pt;}
.y228{bottom:367.394667pt;}
.y2f3{bottom:367.706667pt;}
.y1a3{bottom:368.226667pt;}
.y7c{bottom:368.706667pt;}
.y198{bottom:370.146667pt;}
.y239{bottom:371.394667pt;}
.yec{bottom:373.026667pt;}
.y12c{bottom:374.146667pt;}
.y2de{bottom:375.226667pt;}
.y15f{bottom:375.426667pt;}
.y28e{bottom:375.586667pt;}
.y4d{bottom:376.866667pt;}
.y1b{bottom:377.986667pt;}
.y2d0{bottom:379.226667pt;}
.ya4{bottom:379.266667pt;}
.y357{bottom:380.706667pt;}
.y32c{bottom:381.986667pt;}
.y10b{bottom:382.786667pt;}
.y2f9{bottom:383.226667pt;}
.y257{bottom:383.386667pt;}
.y7b{bottom:385.026667pt;}
.y227{bottom:386.914667pt;}
.y2f2{bottom:387.226667pt;}
.y1f2{bottom:390.306667pt;}
.y2dd{bottom:390.906667pt;}
.y238{bottom:390.914667pt;}
.y4c{bottom:392.546667pt;}
.y1a{bottom:393.666667pt;}
.y165{bottom:394.466667pt;}
.y356{bottom:396.386667pt;}
.yeb{bottom:397.346667pt;}
.y32b{bottom:397.506667pt;}
.y129{bottom:398.466667pt;}
.y2cf{bottom:398.906667pt;}
.y264{bottom:399.106667pt;}
.y280{bottom:399.906667pt;}
.y197{bottom:401.826667pt;}
.y226{bottom:402.594667pt;}
.ya3{bottom:402.786667pt;}
.y256{bottom:402.946667pt;}
.y2dc{bottom:406.586667pt;}
.y237{bottom:406.594667pt;}
.y15e{bottom:407.106667pt;}
.y2b1{bottom:407.266667pt;}
.y4b{bottom:408.226667pt;}
.y19{bottom:409.346667pt;}
.y32a{bottom:413.186667pt;}
.y10a{bottom:414.306667pt;}
.y1f1{bottom:414.466667pt;}
.y2ce{bottom:414.586667pt;}
.y1af{bottom:416.893333pt;}
.y7a{bottom:417.506667pt;}
.y263{bottom:418.626667pt;}
.y355{bottom:419.906667pt;}
.y225{bottom:422.141333pt;}
.y255{bottom:422.626667pt;}
.y4a{bottom:423.746667pt;}
.y236{bottom:426.141333pt;}
.y2db{bottom:426.266667pt;}
.y329{bottom:428.866667pt;}
.y2cd{bottom:430.266667pt;}
.y2b0{bottom:431.586667pt;}
.y79{bottom:433.186667pt;}
.y196{bottom:433.346667pt;}
.ya2{bottom:434.306667pt;}
.y354{bottom:435.586667pt;}
.yde{bottom:437.186667pt;}
.y224{bottom:437.821333pt;}
.y123{bottom:438.333333pt;}
.y15d{bottom:438.786667pt;}
.y49{bottom:439.426667pt;}
.y18{bottom:440.866667pt;}
.y235{bottom:441.821333pt;}
.y254{bottom:442.306667pt;}
.y328{bottom:444.386667pt;}
.y2da{bottom:445.826667pt;}
.y109{bottom:445.986667pt;}
.y78{bottom:448.706667pt;}
.y2cc{bottom:449.826667pt;}
.ya1{bottom:450.786667pt;}
.y262{bottom:453.826667pt;}
.y171{bottom:454.013333pt;}
.y48{bottom:455.106667pt;}
.y17{bottom:456.546667pt;}
.y1ab{bottom:456.733333pt;}
.y223{bottom:457.501333pt;}
.y253{bottom:457.986667pt;}
.y353{bottom:459.426667pt;}
.y327{bottom:460.066667pt;}
.y1cc{bottom:462.653333pt;}
.y195{bottom:465.026667pt;}
.y2d9{bottom:465.506667pt;}
.y261{bottom:469.506667pt;}
.y15c{bottom:470.306667pt;}
.y47{bottom:470.626667pt;}
.y16{bottom:472.226667pt;}
.y77{bottom:472.386667pt;}
.y252{bottom:473.506667pt;}
.y126{bottom:473.533333pt;}
.y2af{bottom:474.786667pt;}
.y326{bottom:475.746667pt;}
.y222{bottom:477.181333pt;}
.y108{bottom:477.666667pt;}
.y16f{bottom:478.333333pt;}
.ya0{bottom:483.106667pt;}
.y2cb{bottom:485.186667pt;}
.y1cb{bottom:486.973333pt;}
.y15{bottom:487.746667pt;}
.y260{bottom:489.186667pt;}
.y325{bottom:491.266667pt;}
.y1ae{bottom:492.093333pt;}
.y221{bottom:492.861333pt;}
.y251{bottom:493.186667pt;}
.ye2{bottom:496.706667pt;}
.y125{bottom:497.853333pt;}
.y9f{bottom:498.786667pt;}
.y2ca{bottom:500.866667pt;}
.y15b{bottom:501.986667pt;}
.y46{bottom:502.306667pt;}
.y352{bottom:502.466667pt;}
.y14{bottom:503.426667pt;}
.y76{bottom:503.906667pt;}
.y2f1{bottom:504.866667pt;}
.y2ae{bottom:506.466667pt;}
.y324{bottom:506.946667pt;}
.y220{bottom:508.381333pt;}
.y25f{bottom:508.706667pt;}
.y107{bottom:509.186667pt;}
.y250{bottom:512.706667pt;}
.y2c9{bottom:516.386667pt;}
.y1ad{bottom:516.413333pt;}
.y45{bottom:517.986667pt;}
.y351{bottom:518.146667pt;}
.y13{bottom:519.133333pt;}
.y75{bottom:519.613333pt;}
.y167{bottom:522.173333pt;}
.y9e{bottom:522.653333pt;}
.y21f{bottom:524.061333pt;}
.y1c6{bottom:526.813333pt;}
.y194{bottom:528.253333pt;}
.y24f{bottom:528.386667pt;}
.y2c8{bottom:532.066667pt;}
.y44{bottom:533.533333pt;}
.y15a{bottom:533.693333pt;}
.y12{bottom:534.653333pt;}
.y74{bottom:535.293333pt;}
.y11b{bottom:537.853333pt;}
.y323{bottom:538.333333pt;}
.y1a7{bottom:540.733333pt;}
.y106{bottom:540.893333pt;}
.y24e{bottom:544.066667pt;}
.y43{bottom:549.213333pt;}
.y350{bottom:549.373333pt;}
.y73{bottom:550.973333pt;}
.y2ad{bottom:553.533333pt;}
.y322{bottom:553.853333pt;}
.y11{bottom:558.493333pt;}
.y24d{bottom:559.746667pt;}
.y193{bottom:559.933333pt;}
.y11f{bottom:562.213333pt;}
.y42{bottom:564.893333pt;}
.y1aa{bottom:564.933333pt;}
.y34f{bottom:565.053333pt;}
.y159{bottom:565.213333pt;}
.y9d{bottom:565.693333pt;}
.y72{bottom:566.493333pt;}
.yd1{bottom:567.933333pt;}
.y2ac{bottom:569.053333pt;}
.y321{bottom:569.533333pt;}
.y105{bottom:572.573333pt;}
.y16b{bottom:577.733333pt;}
.y41{bottom:580.573333pt;}
.y9c{bottom:581.373333pt;}
.y71{bottom:582.173333pt;}
.y320{bottom:585.213333pt;}
.y11e{bottom:586.533333pt;}
.y34e{bottom:588.893333pt;}
.y1a9{bottom:589.253333pt;}
.y192{bottom:591.613333pt;}
.y2ab{bottom:592.733333pt;}
.y40{bottom:596.093333pt;}
.y9b{bottom:596.893333pt;}
.y70{bottom:597.853333pt;}
.ydb{bottom:599.293333pt;}
.y31f{bottom:600.733333pt;}
.y10{bottom:601.533333pt;}
.y16a{bottom:602.053333pt;}
.y104{bottom:604.093333pt;}
.y36e{bottom:605.213333pt;}
.y3f{bottom:611.773333pt;}
.y9a{bottom:612.573333pt;}
.y6f{bottom:613.533333pt;}
.y31e{bottom:616.413333pt;}
.y34d{bottom:622.013333pt;}
.y191{bottom:623.133333pt;}
.yd5{bottom:623.613333pt;}
.y2aa{bottom:624.253333pt;}
.y3e{bottom:627.453333pt;}
.y99{bottom:628.253333pt;}
.y158{bottom:628.573333pt;}
.y36d{bottom:628.893333pt;}
.y1a2{bottom:629.253333pt;}
.y31d{bottom:632.093333pt;}
.yf{bottom:633.373333pt;}
.y103{bottom:635.773333pt;}
.y6e{bottom:637.213333pt;}
.y2a9{bottom:639.933333pt;}
.y117{bottom:642.053333pt;}
.y36c{bottom:644.573333pt;}
.y21d{bottom:646.173333pt;}
.y31c{bottom:647.613333pt;}
.y98{bottom:651.773333pt;}
.y1a1{bottom:653.573333pt;}
.y190{bottom:654.813333pt;}
.y2a8{bottom:655.613333pt;}
.y3d{bottom:658.973333pt;}
.y157{bottom:660.093333pt;}
.y31b{bottom:663.293333pt;}
.y34c{bottom:664.893333pt;}
.ye{bottom:665.373333pt;}
.y116{bottom:666.373333pt;}
.y102{bottom:667.453333pt;}
.y36b{bottom:668.093333pt;}
.y21c{bottom:670.493333pt;}
.y2a7{bottom:671.293333pt;}
.y3c{bottom:674.653333pt;}
.y31a{bottom:678.973333pt;}
.y6d{bottom:680.253333pt;}
.y34b{bottom:680.573333pt;}
.y97{bottom:683.453333pt;}
.y36a{bottom:683.773333pt;}
.y18f{bottom:686.493333pt;}
.y2a6{bottom:686.813333pt;}
.y3b{bottom:690.333333pt;}
.y156{bottom:691.773333pt;}
.y319{bottom:694.653333pt;}
.y6c{bottom:695.933333pt;}
.y34a{bottom:696.253333pt;}
.yd{bottom:697.373333pt;}
.y96{bottom:699.133333pt;}
.y369{bottom:699.453333pt;}
.y2a5{bottom:702.493333pt;}
.y115{bottom:709.573333pt;}
.y349{bottom:711.933333pt;}
.y21b{bottom:713.693333pt;}
.yb8{bottom:714.973333pt;}
.yc{bottom:716.733333pt;}
.y18e{bottom:718.173333pt;}
.y318{bottom:718.333333pt;}
.y6b{bottom:719.453333pt;}
.y3a{bottom:721.853333pt;}
.y95{bottom:722.653333pt;}
.y368{bottom:723.133333pt;}
.y155{bottom:723.453333pt;}
.yb{bottom:729.373333pt;}
.y101{bottom:730.653333pt;}
.y113{bottom:733.280000pt;}
.y1dd{bottom:733.693333pt;}
.y18d{bottom:733.853333pt;}
.y39{bottom:737.533333pt;}
.y367{bottom:738.813333pt;}
.y154{bottom:739.133333pt;}
.ycb{bottom:739.293333pt;}
.y348{bottom:743.453333pt;}
.y21a{bottom:745.373333pt;}
.ya{bottom:748.733333pt;}
.y18c{bottom:749.373333pt;}
.y6a{bottom:751.133333pt;}
.y38{bottom:753.213333pt;}
.y94{bottom:754.333333pt;}
.y153{bottom:754.813333pt;}
.y1db{bottom:757.853333pt;}
.y347{bottom:759.133333pt;}
.y219{bottom:761.053333pt;}
.y9{bottom:761.373333pt;}
.y100{bottom:762.333333pt;}
.y29b{bottom:763.013333pt;}
.yc8{bottom:763.653333pt;}
.y18b{bottom:765.093333pt;}
.y69{bottom:766.853333pt;}
.y37{bottom:768.773333pt;}
.y152{bottom:770.373333pt;}
.y346{bottom:774.853333pt;}
.y218{bottom:776.773333pt;}
.y317{bottom:777.093333pt;}
.y93{bottom:778.053333pt;}
.y8{bottom:780.773333pt;}
.y27f{bottom:780.933333pt;}
.y151{bottom:786.053333pt;}
.y68{bottom:790.373333pt;}
.y345{bottom:790.533333pt;}
.y217{bottom:792.293333pt;}
.y36{bottom:792.773333pt;}
.yff{bottom:794.053333pt;}
.y1da{bottom:801.253333pt;}
.y366{bottom:801.573333pt;}
.y150{bottom:801.733333pt;}
.ybc{bottom:803.653333pt;}
.y27e{bottom:805.253333pt;}
.y344{bottom:806.053333pt;}
.y216{bottom:807.973333pt;}
.y316{bottom:808.293333pt;}
.y7{bottom:809.413333pt;}
.y92{bottom:809.573333pt;}
.yfe{bottom:809.733333pt;}
.y18a{bottom:812.293333pt;}
.y14f{bottom:817.253333pt;}
.y343{bottom:821.733333pt;}
.y67{bottom:822.053333pt;}
.y315{bottom:823.973333pt;}
.y91{bottom:825.253333pt;}
.y35{bottom:825.573333pt;}
.y6{bottom:826.693333pt;}
.y1c4{bottom:827.493333pt;}
.y189{bottom:827.973333pt;}
.y215{bottom:831.493333pt;}
.y1d9{bottom:832.933333pt;}
.y342{bottom:837.413333pt;}
.y66{bottom:837.733333pt;}
.y314{bottom:839.653333pt;}
.y90{bottom:840.933333pt;}
.y34{bottom:841.253333pt;}
.y188{bottom:843.653333pt;}
.y5{bottom:843.813333pt;}
.y27d{bottom:848.453333pt;}
.y1d8{bottom:848.613333pt;}
.y14e{bottom:848.933333pt;}
.yc4{bottom:850.533333pt;}
.y341{bottom:852.933333pt;}
.y65{bottom:853.413333pt;}
.y313{bottom:855.173333pt;}
.y8f{bottom:856.613333pt;}
.y33{bottom:856.933333pt;}
.y187{bottom:859.173333pt;}
.y214{bottom:863.173333pt;}
.y1d7{bottom:864.133333pt;}
.y14d{bottom:864.613333pt;}
.y340{bottom:868.613333pt;}
.y64{bottom:868.933333pt;}
.y312{bottom:870.853333pt;}
.y2c6{bottom:871.173333pt;}
.y8e{bottom:872.133333pt;}
.y32{bottom:872.613333pt;}
.ybf{bottom:874.853333pt;}
.y4{bottom:877.893333pt;}
.y213{bottom:878.853333pt;}
.y1d6{bottom:879.813333pt;}
.y14c{bottom:880.133333pt;}
.y2ef{bottom:883.013333pt;}
.y33f{bottom:884.293333pt;}
.y63{bottom:884.613333pt;}
.y311{bottom:886.533333pt;}
.y8d{bottom:887.813333pt;}
.y31{bottom:888.133333pt;}
.y186{bottom:890.533333pt;}
.y212{bottom:894.533333pt;}
.y1d5{bottom:895.493333pt;}
.y14b{bottom:895.813333pt;}
.y3{bottom:899.813333pt;}
.y33e{bottom:899.973333pt;}
.y62{bottom:900.293333pt;}
.y8c{bottom:903.493333pt;}
.yfd{bottom:903.813333pt;}
.y1c3{bottom:906.053333pt;}
.y2ee{bottom:907.333333pt;}
.y211{bottom:910.053333pt;}
.y14a{bottom:911.493333pt;}
.y33d{bottom:915.493333pt;}
.y30e{bottom:915.813333pt;}
.y61{bottom:915.973333pt;}
.y1d4{bottom:919.013333pt;}
.yfc{bottom:919.493333pt;}
.y30{bottom:919.813333pt;}
.y1c2{bottom:921.733333pt;}
.y185{bottom:922.053333pt;}
.y210{bottom:925.733333pt;}
.y8b{bottom:927.013333pt;}
.y27c{bottom:927.173333pt;}
.y33c{bottom:931.173333pt;}
.y60{bottom:931.493333pt;}
.y149{bottom:935.013333pt;}
.y2f{bottom:935.493333pt;}
.y1c1{bottom:937.413333pt;}
.y184{bottom:937.733333pt;}
.y20f{bottom:941.413333pt;}
.y24b{bottom:941.733333pt;}
.y365{bottom:943.013333pt;}
.yb6{bottom:946.053333pt;}
.y5f{bottom:947.173333pt;}
.y1d3{bottom:950.693333pt;}
.yfb{bottom:951.013333pt;}
.y2e{bottom:951.173333pt;}
.y183{bottom:953.413333pt;}
.y33b{bottom:955.013333pt;}
.y8a{bottom:958.693333pt;}
.y5e{bottom:962.853333pt;}
.y24a{bottom:966.053333pt;}
.y1d2{bottom:966.373333pt;}
.y2d{bottom:966.693333pt;}
.y1c0{bottom:968.933333pt;}
.y182{bottom:969.093333pt;}
.yb4{bottom:970.213333pt;}
.y20e{bottom:970.693333pt;}
.y89{bottom:974.373333pt;}
.y5d{bottom:978.373333pt;}
.y1d1{bottom:982.053333pt;}
.y2c{bottom:982.373333pt;}
.y181{bottom:984.613333pt;}
.y88{bottom:990.053333pt;}
.y249{bottom:990.213333pt;}
.y33a{bottom:997.893333pt;}
.y2b{bottom:998.053333pt;}
.y5c{bottom:1002.213333pt;}
.y1d0{bottom:1005.573333pt;}
.y180{bottom:1008.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h25{height:2.227500pt;}
.h10{height:23.520000pt;}
.h3f{height:23.552000pt;}
.hf{height:23.680000pt;}
.h17{height:23.712000pt;}
.h2{height:26.415625pt;}
.h1c{height:30.720000pt;}
.h6{height:31.535625pt;}
.h20{height:34.560000pt;}
.h23{height:34.720000pt;}
.h3{height:35.083125pt;}
.h4d{height:35.392000pt;}
.h22{height:39.200000pt;}
.h2c{height:39.232000pt;}
.h16{height:39.360000pt;}
.h36{height:43.200000pt;}
.h7{height:44.975625pt;}
.h8{height:46.220625pt;}
.h14{height:46.240000pt;}
.h2d{height:47.840000pt;}
.h2a{height:47.872000pt;}
.h30{height:48.000000pt;}
.h3d{height:48.032000pt;}
.h9{height:49.852500pt;}
.h45{height:50.240000pt;}
.h48{height:50.272000pt;}
.h5{height:51.232500pt;}
.he{height:52.990313pt;}
.ha{height:54.187500pt;}
.hd{height:54.598989pt;}
.h1b{height:54.880000pt;}
.h34{height:54.912000pt;}
.hc{height:55.298750pt;}
.h1f{height:58.880000pt;}
.h38{height:58.912000pt;}
.h41{height:59.040000pt;}
.hb{height:61.295000pt;}
.h3b{height:63.520000pt;}
.h33{height:63.680000pt;}
.h4{height:65.154375pt;}
.h37{height:67.520000pt;}
.h13{height:70.400000pt;}
.h1e{height:70.592000pt;}
.h44{height:74.592000pt;}
.h40{height:83.200000pt;}
.h2f{height:87.840000pt;}
.h2b{height:87.872000pt;}
.h15{height:88.032000pt;}
.h1a{height:90.080000pt;}
.h21{height:98.880000pt;}
.h43{height:98.912000pt;}
.h29{height:103.552000pt;}
.h53{height:105.792000pt;}
.h3c{height:107.552000pt;}
.h57{height:109.792000pt;}
.h47{height:114.592000pt;}
.h3a{height:119.040000pt;}
.h32{height:119.232000pt;}
.h35{height:127.072000pt;}
.h1d{height:130.112000pt;}
.h12{height:141.600000pt;}
.h19{height:145.760000pt;}
.h49{height:176.346667pt;}
.h46{height:203.066667pt;}
.h56{height:207.866667pt;}
.h39{height:227.226667pt;}
.h11{height:230.266667pt;}
.h50{height:235.226667pt;}
.h31{height:246.946667pt;}
.h3e{height:260.386667pt;}
.h51{height:262.586667pt;}
.h2e{height:264.986667pt;}
.h42{height:275.866667pt;}
.h4b{height:286.106667pt;}
.h28{height:291.586667pt;}
.h4a{height:294.106667pt;}
.h52{height:309.786667pt;}
.h18{height:376.026667pt;}
.h24{height:377.306667pt;}
.h4f{height:380.386667pt;}
.h55{height:521.346667pt;}
.h4c{height:540.706667pt;}
.h54{height:548.706667pt;}
.h4e{height:576.386667pt;}
.h26{height:793.920000pt;}
.h27{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:40.032000pt;}
.w20{width:41.312000pt;}
.w15{width:42.720000pt;}
.w11{width:45.600000pt;}
.w1e{width:46.560000pt;}
.w1d{width:46.592000pt;}
.w1c{width:46.720000pt;}
.w10{width:47.520000pt;}
.w14{width:50.400000pt;}
.w3d{width:51.040000pt;}
.we{width:53.280000pt;}
.w3e{width:53.760000pt;}
.w13{width:54.080000pt;}
.w5e{width:54.400000pt;}
.w5f{width:54.560000pt;}
.w2d{width:55.520000pt;}
.w5{width:56.000000pt;}
.wb{width:56.032000pt;}
.w19{width:56.192000pt;}
.w53{width:56.352000pt;}
.w12{width:57.952000pt;}
.w4{width:58.912000pt;}
.w26{width:59.072000pt;}
.w4f{width:59.680000pt;}
.w50{width:60.352000pt;}
.w3f{width:60.512000pt;}
.w55{width:60.800000pt;}
.w4e{width:63.200000pt;}
.w1f{width:64.800000pt;}
.w52{width:65.120000pt;}
.w1a{width:65.440000pt;}
.w16{width:65.472000pt;}
.w58{width:65.792000pt;}
.w46{width:66.400000pt;}
.wc{width:67.360000pt;}
.w54{width:68.640000pt;}
.w21{width:70.080000pt;}
.w66{width:70.880000pt;}
.w2e{width:71.200000pt;}
.w34{width:72.800000pt;}
.w47{width:72.832000pt;}
.w42{width:74.272000pt;}
.w64{width:74.880000pt;}
.w45{width:74.912000pt;}
.w27{width:76.160000pt;}
.w32{width:76.192000pt;}
.w36{width:76.992000pt;}
.w2f{width:77.312000pt;}
.w35{width:78.272000pt;}
.w62{width:78.752000pt;}
.w37{width:79.200000pt;}
.w57{width:79.712000pt;}
.w48{width:80.000000pt;}
.w65{width:81.152000pt;}
.w44{width:81.600000pt;}
.w41{width:83.840000pt;}
.w33{width:85.760000pt;}
.w63{width:85.920000pt;}
.w31{width:88.480000pt;}
.w61{width:91.200000pt;}
.w56{width:91.520000pt;}
.wd{width:91.872000pt;}
.w9{width:93.760000pt;}
.w17{width:93.920000pt;}
.w8{width:93.952000pt;}
.w1b{width:99.552000pt;}
.w43{width:101.440000pt;}
.w18{width:112.032000pt;}
.wa{width:112.672000pt;}
.w30{width:113.280000pt;}
.w40{width:117.600000pt;}
.w4b{width:122.112000pt;}
.w60{width:124.800000pt;}
.w4c{width:130.080000pt;}
.w3c{width:141.946667pt;}
.w2c{width:146.426667pt;}
.w5d{width:152.666667pt;}
.w3a{width:158.746667pt;}
.w2b{width:159.200000pt;}
.w5c{width:161.440000pt;}
.w51{width:163.520000pt;}
.w2a{width:165.466667pt;}
.w5b{width:170.586667pt;}
.w4d{width:171.866667pt;}
.w3b{width:183.680000pt;}
.w7{width:273.506667pt;}
.w39{width:284.826667pt;}
.w5a{width:296.026667pt;}
.w6{width:301.826667pt;}
.w6d{width:314.466667pt;}
.w71{width:317.826667pt;}
.w29{width:319.546667pt;}
.w6e{width:320.706667pt;}
.w6a{width:322.626667pt;}
.w68{width:323.586667pt;}
.w69{width:347.613333pt;}
.w6b{width:348.573333pt;}
.w4a{width:348.826667pt;}
.w6f{width:350.493333pt;}
.w70{width:353.373333pt;}
.w6c{width:356.733333pt;}
.w49{width:425.346667pt;}
.w28{width:472.386667pt;}
.w38{width:485.826667pt;}
.w59{width:485.986667pt;}
.w67{width:671.840000pt;}
.w3{width:692.160000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w25{width:929.093333pt;}
.w23{width:1122.000000pt;}
.w24{width:1122.239983pt;}
.w22{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x1b{left:3.520000pt;}
.x6{left:6.880000pt;}
.x13{left:55.360000pt;}
.x1{left:60.480000pt;}
.x4{left:84.511988pt;}
.x1a{left:95.999983pt;}
.x48{left:98.911988pt;}
.x5{left:108.511988pt;}
.x7{left:120.672000pt;}
.x1c{left:156.346667pt;}
.x3a{left:163.066667pt;}
.x30{left:170.106667pt;}
.x26{left:174.426667pt;}
.x8{left:177.306667pt;}
.x2{left:187.546655pt;}
.x15{left:225.466667pt;}
.xf{left:231.226667pt;}
.x1d{left:233.146667pt;}
.x3b{left:242.906667pt;}
.x31{left:250.746667pt;}
.x27{left:254.266667pt;}
.xa{left:271.906667pt;}
.x37{left:316.506667pt;}
.x10{left:320.066667pt;}
.x12{left:322.946667pt;}
.x41{left:334.746667pt;}
.x2d{left:338.746667pt;}
.x18{left:351.706650pt;}
.xb{left:366.466667pt;}
.x33{left:373.506667pt;}
.x47{left:382.466667pt;}
.x45{left:384.386667pt;}
.x44{left:385.346667pt;}
.x1f{left:399.266667pt;}
.x17{left:409.213333pt;}
.x16{left:414.493333pt;}
.x46{left:418.493333pt;}
.x11{left:425.053333pt;}
.x38{left:442.786667pt;}
.x9{left:479.773333pt;}
.x24{left:485.666667pt;}
.x42{left:500.706667pt;}
.x34{left:504.226667pt;}
.x2e{left:515.746667pt;}
.xc{left:536.573333pt;}
.x20{left:559.106667pt;}
.x3d{left:576.226667pt;}
.xd{left:593.253333pt;}
.x39{left:596.386667pt;}
.x29{left:598.146667pt;}
.x25{left:638.173333pt;}
.x43{left:658.013333pt;}
.x14{left:659.493333pt;}
.xe{left:661.413333pt;}
.x2f{left:673.693333pt;}
.x32{left:676.893333pt;}
.x1e{left:706.173333pt;}
.x3{left:711.493322pt;}
.x3c{left:729.693333pt;}
.x28{left:740.893333pt;}
.x21{left:762.493333pt;}
.x3e{left:784.733333pt;}
.x2a{left:792.573333pt;}
.x35{left:801.213333pt;}
.x22{left:834.493333pt;}
.x3f{left:839.933333pt;}
.x2b{left:846.973333pt;}
.x36{left:862.213333pt;}
.x40{left:900.933333pt;}
.x2c{left:908.133333pt;}
.x23{left:912.453333pt;}
.x19{left:1004.293317pt;}
}




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