
    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_1316d1a87db9061c96215c9b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.687500;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_8cb2e094775d8807af7c78f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148438;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_cf7c3e5e06410654300718ac.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_f196a2707a4df6c64e006909.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3078550b874061ca2747ecbc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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_9cbc5a4fb261da74712dcb31.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.051771px;}
.ls2{letter-spacing:20.539246px;}
.ls1{letter-spacing:26.269200px;}
.ls4{letter-spacing:26.299247px;}
.ls3{letter-spacing:28.459246px;}
.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;}
}
.wsb{word-spacing:-72.004500px;}
.ws8{word-spacing:-27.963234px;}
.ws4{word-spacing:-26.284284px;}
.ws3{word-spacing:-24.599394px;}
.ws11{word-spacing:-23.758434px;}
.ws5{word-spacing:-22.465404px;}
.ws7{word-spacing:-21.566844px;}
.ws10{word-spacing:-21.077085px;}
.wsf{word-spacing:-21.025314px;}
.ws12{word-spacing:-20.668284px;}
.ws1{word-spacing:-18.646524px;}
.wsc{word-spacing:-0.704252px;}
.wsa{word-spacing:-0.359950px;}
.ws6{word-spacing:-0.207443px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:0.000072px;}
.ws13{word-spacing:0.118857px;}
.ws0{word-spacing:1.161828px;}
.wsd{word-spacing:23.484608px;}
.wse{word-spacing:72.151437px;}
._2d{margin-left:-7.423110px;}
._22{margin-left:-6.267969px;}
._1e{margin-left:-5.247917px;}
._16{margin-left:-4.198912px;}
._7{margin-left:-2.894009px;}
._1{margin-left:-1.265774px;}
._0{width:1.737455px;}
._5{width:2.872113px;}
._4{width:4.105039px;}
._3{width:5.246936px;}
._8{width:6.690761px;}
._e{width:7.857194px;}
._a{width:8.991697px;}
._b{width:10.708568px;}
._f{width:12.149991px;}
._10{width:13.517657px;}
._9{width:14.708664px;}
._1d{width:15.756545px;}
._d{width:16.875502px;}
._c{width:18.597995px;}
._2{width:19.630691px;}
._27{width:20.707199px;}
._17{width:21.724261px;}
._6{width:23.192124px;}
._1c{width:24.261359px;}
._38{width:25.382091px;}
._21{width:27.398333px;}
._20{width:28.566940px;}
._13{width:29.668924px;}
._14{width:30.990873px;}
._1f{width:32.792701px;}
._31{width:34.360527px;}
._28{width:35.719331px;}
._29{width:36.770618px;}
._61{width:38.068361px;}
._26{width:39.133849px;}
._1a{width:41.002468px;}
._19{width:42.746180px;}
._11{width:44.582588px;}
._12{width:45.938017px;}
._15{width:47.072979px;}
._23{width:48.272267px;}
._33{width:50.307726px;}
._2e{width:52.237740px;}
._2f{width:53.315985px;}
._2b{width:54.711832px;}
._30{width:57.919020px;}
._65{width:59.780318px;}
._1b{width:61.897973px;}
._25{width:63.661547px;}
._5f{width:85.806392px;}
._71{width:87.839082px;}
._42{width:92.158236px;}
._6f{width:102.940081px;}
._70{width:126.648499px;}
._59{width:129.958430px;}
._5a{width:131.182755px;}
._5e{width:132.823967px;}
._6c{width:136.239066px;}
._6b{width:137.816901px;}
._57{width:148.798161px;}
._3e{width:153.396027px;}
._58{width:154.510984px;}
._2a{width:155.521548px;}
._49{width:165.113856px;}
._43{width:168.051964px;}
._7a{width:182.445579px;}
._73{width:188.494641px;}
._41{width:192.564958px;}
._46{width:195.424447px;}
._69{width:200.464447px;}
._34{width:205.060902px;}
._3b{width:210.065091px;}
._45{width:211.984447px;}
._3a{width:217.811277px;}
._3d{width:223.229411px;}
._7c{width:229.955373px;}
._4d{width:241.095626px;}
._7d{width:245.220777px;}
._7b{width:248.893007px;}
._4a{width:257.172839px;}
._77{width:269.246981px;}
._75{width:290.647448px;}
._50{width:300.282528px;}
._6e{width:313.128201px;}
._4e{width:320.254568px;}
._68{width:329.015018px;}
._40{width:336.522467px;}
._32{width:350.197978px;}
._67{width:364.889893px;}
._64{width:373.630663px;}
._3c{width:384.473497px;}
._39{width:421.109162px;}
._60{width:423.664448px;}
._66{width:453.342739px;}
._62{width:468.428715px;}
._52{width:512.794560px;}
._53{width:520.415055px;}
._4b{width:550.309832px;}
._2c{width:562.004379px;}
._56{width:590.535128px;}
._5c{width:606.958551px;}
._54{width:630.056074px;}
._48{width:638.224447px;}
._5d{width:644.704447px;}
._4c{width:646.227932px;}
._55{width:655.504448px;}
._63{width:665.054505px;}
._47{width:669.023663px;}
._3f{width:731.556027px;}
._76{width:739.001550px;}
._6a{width:749.876203px;}
._51{width:768.718161px;}
._5b{width:822.789804px;}
._6d{width:908.079988px;}
._44{width:945.628990px;}
._37{width:974.697426px;}
._24{width:976.190357px;}
._4f{width:1035.664447px;}
._36{width:1089.897426px;}
._35{width:1106.518140px;}
._72{width:1121.304186px;}
._79{width:1329.502603px;}
._78{width:1410.324439px;}
._18{width:1439.814752px;}
._74{width:1625.311806px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(74,134,232);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs3{font-size:59.764500px;}
.fs0{font-size:66.244500px;}
.fs7{font-size:69.124498px;}
.fs6{font-size:69.124500px;}
.fs4{font-size:72.004500px;}
.fs9{font-size:77.764500px;}
.fs8{font-size:81.364500px;}
.fs2{font-size:84.244500px;}
.fs1{font-size:95.764500px;}
.y0{bottom:0.000000px;}
.y221{bottom:3.599928px;}
.y2c{bottom:88.200000px;}
.y229{bottom:92.520000px;}
.y2c0{bottom:93.240150px;}
.y27f{bottom:97.020150px;}
.y152{bottom:97.560000px;}
.y1ea{bottom:98.100000px;}
.yfc{bottom:100.440000px;}
.y111{bottom:100.800000px;}
.y1a3{bottom:102.240150px;}
.y2b{bottom:106.200000px;}
.y273{bottom:108.000150px;}
.y13a{bottom:112.860000px;}
.y28d{bottom:113.040150px;}
.y2a1{bottom:113.220000px;}
.y25b{bottom:115.020000px;}
.y178{bottom:116.460000px;}
.y2b3{bottom:120.420000px;}
.y1a2{bottom:123.120150px;}
.y2a{bottom:124.380000px;}
.y1e9{bottom:126.540000px;}
.yd8{bottom:127.080150px;}
.y110{bottom:128.520000px;}
.y2ea{bottom:129.600150px;}
.y151{bottom:130.140000px;}
.y1a5{bottom:130.680150px;}
.y240{bottom:131.040000px;}
.y2ac{bottom:131.220000px;}
.y2bf{bottom:131.220150px;}
.y297{bottom:133.020000px;}
.y27e{bottom:135.180150px;}
.y66{bottom:138.060000px;}
.y9f{bottom:138.420000px;}
.y125{bottom:139.140000px;}
.yea{bottom:142.020000px;}
.yc2{bottom:142.380000px;}
.y139{bottom:145.440000px;}
.y272{bottom:145.980150px;}
.y1e8{bottom:147.420000px;}
.y226{bottom:149.040000px;}
.y177{bottom:149.220000px;}
.y28c{bottom:151.020150px;}
.y2a0{bottom:151.200000px;}
.y2e9{bottom:151.200150px;}
.y1a1{bottom:151.380150px;}
.y1a4{bottom:151.560150px;}
.y25a{bottom:153.000000px;}
.y4c{bottom:153.180000px;}
.y1eb{bottom:154.800000px;}
.y2b2{bottom:158.400000px;}
.y1a6{bottom:158.940150px;}
.y374{bottom:159.120150px;}
.y29{bottom:160.560150px;}
.y364{bottom:162.000000px;}
.y150{bottom:162.720000px;}
.yd7{bottom:165.060000px;}
.y24f{bottom:169.020000px;}
.y23f{bottom:169.200000px;}
.y2be{bottom:169.200150px;}
.y225{bottom:169.920000px;}
.y296{bottom:171.000000px;}
.y2e8{bottom:172.980150px;}
.y27d{bottom:173.340150px;}
.y1e7{bottom:175.680000px;}
.y65{bottom:176.040000px;}
.y30b{bottom:176.220000px;}
.y9e{bottom:176.400000px;}
.y124{bottom:177.120150px;}
.y28{bottom:178.740150px;}
.ye9{bottom:180.180000px;}
.yc1{bottom:180.360150px;}
.y176{bottom:181.800000px;}
.y4b{bottom:182.160000px;}
.y271{bottom:183.960150px;}
.y19f{bottom:187.200150px;}
.y28b{bottom:189.000150px;}
.y29f{bottom:189.180000px;}
.y224{bottom:190.620000px;}
.y2a5{bottom:191.340000px;}
.y259{bottom:191.340150px;}
.y373{bottom:191.700150px;}
.y8e{bottom:193.140000px;}
.y14f{bottom:195.300000px;}
.y2b1{bottom:196.380000px;}
.y1e6{bottom:196.560000px;}
.y27{bottom:196.740150px;}
.y30a{bottom:198.000000px;}
.y363{bottom:201.960150px;}
.yd6{bottom:203.040000px;}
.y1ec{bottom:203.940000px;}
.y189{bottom:205.560000px;}
.y164{bottom:206.280000px;}
.y24e{bottom:207.000150px;}
.y23e{bottom:207.180000px;}
.y19e{bottom:208.080150px;}
.y295{bottom:209.160000px;}
.y4a{bottom:211.140000px;}
.y27c{bottom:211.320150px;}
.y223{bottom:211.500000px;}
.y2e7{bottom:212.580150px;}
.y64{bottom:214.020000px;}
.y9d{bottom:214.380000px;}
.yfb{bottom:214.560000px;}
.y26{bottom:215.100150px;}
.ye8{bottom:218.160000px;}
.y7b{bottom:218.520000px;}
.y309{bottom:219.780000px;}
.y32f{bottom:221.040000px;}
.y270{bottom:222.120150px;}
.y138{bottom:222.660000px;}
.y28a{bottom:227.160150px;}
.y29e{bottom:227.340000px;}
.y14e{bottom:227.880000px;}
.y258{bottom:229.320150px;}
.y8d{bottom:231.120000px;}
.y1e3{bottom:232.200000px;}
.y227{bottom:232.380000px;}
.y2b0{bottom:234.360000px;}
.y2e6{bottom:234.360150px;}
.yc0{bottom:236.340150px;}
.y188{bottom:238.140000px;}
.y163{bottom:238.860000px;}
.y222{bottom:239.760000px;}
.y21f{bottom:239.760150px;}
.y49{bottom:239.940000px;}
.yd5{bottom:241.020000px;}
.y362{bottom:242.100150px;}
.y25{bottom:244.440000px;}
.y23d{bottom:245.160000px;}
.y24d{bottom:245.160150px;}
.y2ab{bottom:245.340000px;}
.y294{bottom:247.140000px;}
.y2a4{bottom:247.320000px;}
.y63{bottom:252.180000px;}
.y9c{bottom:252.360150px;}
.yfa{bottom:252.540000px;}
.y342{bottom:253.440150px;}
.y137{bottom:255.240000px;}
.ye7{bottom:256.140000px;}
.y7a{bottom:256.500000px;}
.y220{bottom:257.040066px;}
.y19d{bottom:257.220150px;}
.y32e{bottom:257.400000px;}
.y10f{bottom:259.020000px;}
.y308{bottom:259.380000px;}
.y26f{bottom:260.100150px;}
.y14d{bottom:260.460000px;}
.y1e2{bottom:260.640000px;}
.y21e{bottom:260.640150px;}
.yb3{bottom:261.000000px;}
.y2bd{bottom:263.160150px;}
.y289{bottom:265.140150px;}
.y27b{bottom:267.300000px;}
.y48{bottom:268.920000px;}
.y8c{bottom:269.100150px;}
.y187{bottom:270.720000px;}
.y123{bottom:271.080150px;}
.y162{bottom:271.440000px;}
.y2af{bottom:272.520000px;}
.y31b{bottom:274.500000px;}
.y24{bottom:275.940000px;}
.y199{bottom:278.100150px;}
.yd4{bottom:279.180000px;}
.y307{bottom:281.160000px;}
.y1e1{bottom:281.520000px;}
.y21d{bottom:281.520150px;}
.y23c{bottom:283.140000px;}
.y24c{bottom:283.140150px;}
.y29d{bottom:283.320000px;}
.y32d{bottom:284.760000px;}
.y293{bottom:285.120000px;}
.y257{bottom:285.300000px;}
.y19c{bottom:285.480150px;}
.y228{bottom:288.900000px;}
.y372{bottom:289.620000px;}
.y341{bottom:289.800150px;}
.y62{bottom:290.160000px;}
.y9b{bottom:290.520000px;}
.y175{bottom:291.420000px;}
.ybf{bottom:292.500000px;}
.y352{bottom:292.860000px;}
.y14c{bottom:293.040000px;}
.ye6{bottom:294.120000px;}
.y79{bottom:294.480150px;}
.y23{bottom:295.920000px;}
.y2e5{bottom:295.920150px;}
.y47{bottom:297.720000px;}
.y26e{bottom:298.080150px;}
.y198{bottom:298.980150px;}
.yb2{bottom:299.160000px;}
.y2bc{bottom:301.140150px;}
.y2aa{bottom:301.320000px;}
.y31a{bottom:301.680000px;}
.y1e0{bottom:302.220000px;}
.y306{bottom:302.940150px;}
.y288{bottom:303.120150px;}
.y186{bottom:303.300000px;}
.y161{bottom:304.020000px;}
.y27a{bottom:305.100000px;}
.y19b{bottom:306.360150px;}
.y361{bottom:307.080000px;}
.y136{bottom:308.160000px;}
.y32c{bottom:312.120000px;}
.y10e{bottom:312.660000px;}
.y22{bottom:315.720000px;}
.y2ae{bottom:316.620000px;}
.yd3{bottom:317.160000px;}
.y218{bottom:317.160150px;}
.y2e4{bottom:317.700150px;}
.y2cb{bottom:319.320000px;}
.y319{bottom:321.120000px;}
.y24b{bottom:321.120150px;}
.y29c{bottom:321.300000px;}
.y1dc{bottom:323.100000px;}
.y305{bottom:324.720150px;}
.y8b{bottom:325.080150px;}
.y14b{bottom:325.620000px;}
.y46{bottom:326.700000px;}
.y197{bottom:327.060150px;}
.y19a{bottom:327.240150px;}
.y61{bottom:328.140000px;}
.y9a{bottom:328.500000px;}
.y371{bottom:329.580000px;}
.y1df{bottom:330.480000px;}
.ybe{bottom:330.480150px;}
.ye5{bottom:332.100000px;}
.y1a0{bottom:334.800150px;}
.y21{bottom:335.700000px;}
.y185{bottom:335.880000px;}
.y122{bottom:336.240000px;}
.y160{bottom:336.600000px;}
.yb1{bottom:337.140000px;}
.y217{bottom:338.040150px;}
.y2bb{bottom:339.120150px;}
.y2a9{bottom:339.300000px;}
.y23b{bottom:339.300150px;}
.y292{bottom:341.100000px;}
.y287{bottom:341.100150px;}
.y279{bottom:343.080000px;}
.y174{bottom:344.520000px;}
.y340{bottom:344.520150px;}
.y10d{bottom:345.240000px;}
.y135{bottom:346.140000px;}
.y360{bottom:347.040000px;}
.y78{bottom:350.460150px;}
.y1db{bottom:351.360000px;}
.y26d{bottom:354.060000px;}
.yd2{bottom:355.140000px;}
.y20{bottom:355.680000px;}
.y2ca{bottom:357.300000px;}
.y21b{bottom:358.920150px;}
.y24a{bottom:359.100150px;}
.y29b{bottom:359.280000px;}
.y256{bottom:361.080000px;}
.y2e3{bottom:361.080150px;}
.y8a{bottom:363.240000px;}
.y318{bottom:363.420000px;}
.y304{bottom:364.320150px;}
.y60{bottom:366.120000px;}
.y216{bottom:366.300150px;}
.yf9{bottom:366.660000px;}
.y351{bottom:366.840000px;}
.y370{bottom:369.540000px;}
.ye4{bottom:370.260000px;}
.y1da{bottom:372.240000px;}
.y121{bottom:374.220000px;}
.ybd{bottom:374.580150px;}
.yb0{bottom:375.120000px;}
.y1f{bottom:375.480000px;}
.y196{bottom:376.380150px;}
.y2ba{bottom:377.100150px;}
.y2a8{bottom:377.280000px;}
.y23a{bottom:377.280150px;}
.y286{bottom:379.080150px;}
.y1e4{bottom:379.620000px;}
.y278{bottom:381.240000px;}
.y173{bottom:382.500000px;}
.y317{bottom:382.680000px;}
.y2e2{bottom:382.860150px;}
.y10c{bottom:383.760000px;}
.y45{bottom:384.480000px;}
.y303{bottom:386.100000px;}
.y35f{bottom:387.000000px;}
.y212{bottom:387.180000px;}
.y215{bottom:387.180150px;}
.y32b{bottom:390.060000px;}
.y26c{bottom:392.220000px;}
.y1d9{bottom:393.120000px;}
.y2c9{bottom:395.280000px;}
.y1e{bottom:395.460000px;}
.y29a{bottom:397.260000px;}
.y195{bottom:397.260150px;}
.y255{bottom:399.240000px;}
.y134{bottom:399.780000px;}
.y1de{bottom:400.500000px;}
.y89{bottom:401.220150px;}
.y14a{bottom:402.840000px;}
.y350{bottom:403.020000px;}
.y5f{bottom:404.100150px;}
.y99{bottom:404.460150px;}
.yf8{bottom:404.640000px;}
.y77{bottom:406.440000px;}
.y302{bottom:407.880000px;}
.y21a{bottom:408.060150px;}
.ye3{bottom:408.240000px;}
.y36f{bottom:409.500000px;}
.yd1{bottom:411.120000px;}
.y120{bottom:412.200000px;}
.ybc{bottom:412.560000px;}
.y184{bottom:413.100000px;}
.yaf{bottom:413.100150px;}
.y44{bottom:413.460000px;}
.y15f{bottom:413.820000px;}
.y2ad{bottom:415.080000px;}
.y249{bottom:415.080150px;}
.y1d{bottom:415.260000px;}
.y239{bottom:415.260150px;}
.y211{bottom:415.440000px;}
.y214{bottom:415.440150px;}
.y10b{bottom:416.340000px;}
.y1d8{bottom:421.200000px;}
.y1dd{bottom:421.380000px;}
.y33f{bottom:422.280150px;}
.y2e1{bottom:422.460000px;}
.y316{bottom:424.980000px;}
.y32a{bottom:426.240000px;}
.y35e{bottom:426.960000px;}
.y1e5{bottom:428.940000px;}
.y26b{bottom:430.200000px;}
.y34f{bottom:430.380000px;}
.y133{bottom:432.360000px;}
.y2c8{bottom:433.260000px;}
.y36e{bottom:434.520000px;}
.y1c{bottom:435.240000px;}
.y285{bottom:435.240150px;}
.y299{bottom:435.420000px;}
.y210{bottom:436.320000px;}
.y213{bottom:436.320150px;}
.y254{bottom:437.220000px;}
.y172{bottom:438.480000px;}
.y5e{bottom:442.260000px;}
.y43{bottom:442.440000px;}
.y315{bottom:442.980000px;}
.y2e0{bottom:444.240000px;}
.y76{bottom:444.600150px;}
.ye2{bottom:446.220000px;}
.y301{bottom:447.480150px;}
.yd0{bottom:449.280000px;}
.yae{bottom:451.080150px;}
.y291{bottom:453.240000px;}
.y238{bottom:453.240150px;}
.y2a7{bottom:453.420000px;}
.y1b{bottom:455.220000px;}
.y149{bottom:455.760000px;}
.ybb{bottom:456.480150px;}
.y1d3{bottom:457.200000px;}
.y219{bottom:457.200150px;}
.y33e{bottom:458.640150px;}
.y36d{bottom:459.540000px;}
.yf7{bottom:460.620000px;}
.y314{bottom:461.160000px;}
.y21c{bottom:464.760150px;}
.y132{bottom:464.940000px;}
.y11f{bottom:465.840000px;}
.y2df{bottom:466.020000px;}
.y35d{bottom:466.920000px;}
.y26a{bottom:468.180000px;}
.y300{bottom:469.260000px;}
.y42{bottom:471.240000px;}
.y2c7{bottom:471.420000px;}
.y2a3{bottom:473.220000px;}
.y284{bottom:473.220150px;}
.y1a{bottom:475.200000px;}
.y171{bottom:476.460000px;}
.y1cc{bottom:477.900000px;}
.y1d2{bottom:478.080000px;}
.y5d{bottom:480.240000px;}
.y98{bottom:480.600150px;}
.y75{bottom:482.580150px;}
.ye1{bottom:484.200000px;}
.y33d{bottom:486.000150px;}
.ycf{bottom:487.260000px;}
.yad{bottom:489.240000px;}
.y183{bottom:490.320000px;}
.y15e{bottom:491.040000px;}
.y237{bottom:491.220000px;}
.y248{bottom:491.220150px;}
.y298{bottom:491.400000px;}
.y35c{bottom:491.940000px;}
.y20d{bottom:493.020000px;}
.y20f{bottom:493.200000px;}
.y10a{bottom:493.560000px;}
.y148{bottom:493.740000px;}
.yba{bottom:494.640000px;}
.y19{bottom:495.180000px;}
.y11e{bottom:498.420000px;}
.yf6{bottom:498.600000px;}
.y1cb{bottom:498.780000px;}
.y36c{bottom:499.500000px;}
.y41{bottom:500.220000px;}
.y194{bottom:502.200150px;}
.y131{bottom:503.640000px;}
.y2de{bottom:505.620000px;}
.y329{bottom:505.980000px;}
.y269{bottom:506.160000px;}
.y1d1{bottom:506.340000px;}
.y34e{bottom:508.320000px;}
.y2c6{bottom:509.400000px;}
.y2a2{bottom:511.200000px;}
.y283{bottom:511.200150px;}
.y253{bottom:513.180000px;}
.y33c{bottom:513.360150px;}
.y20c{bottom:513.900000px;}
.y20e{bottom:514.080000px;}
.y18{bottom:515.160000px;}
.y5c{bottom:518.220150px;}
.y97{bottom:518.580150px;}
.y74{bottom:520.560000px;}
.ye0{bottom:522.360000px;}
.y182{bottom:522.900000px;}
.y15d{bottom:523.620000px;}
.yce{bottom:525.240000px;}
.y1ca{bottom:527.040000px;}
.y1d0{bottom:527.220000px;}
.yac{bottom:527.220150px;}
.y2dd{bottom:527.400000px;}
.y40{bottom:529.200000px;}
.y2b9{bottom:529.200150px;}
.y236{bottom:529.380000px;}
.y2ff{bottom:530.640150px;}
.y147{bottom:531.900000px;}
.y109{bottom:532.260000px;}
.y170{bottom:532.620000px;}
.y17{bottom:534.960000px;}
.yf5{bottom:536.760000px;}
.y11d{bottom:537.120000px;}
.yb9{bottom:538.560000px;}
.y36b{bottom:538.740000px;}
.y193{bottom:540.180150px;}
.y33b{bottom:540.720150px;}
.y20b{bottom:542.160000px;}
.y268{bottom:544.140000px;}
.y34d{bottom:544.680000px;}
.y2c5{bottom:547.200000px;}
.y1c9{bottom:547.920000px;}
.y282{bottom:549.180150px;}
.y252{bottom:551.340000px;}
.y88{bottom:551.340150px;}
.y2fe{bottom:552.600000px;}
.y181{bottom:555.480000px;}
.y1d6{bottom:555.660000px;}
.y15c{bottom:556.200000px;}
.y5b{bottom:556.200150px;}
.y96{bottom:556.560000px;}
.y3f{bottom:558.000000px;}
.y20a{bottom:563.040000px;}
.ycd{bottom:563.220150px;}
.yab{bottom:565.200150px;}
.y247{bottom:567.180000px;}
.y2b8{bottom:567.180150px;}
.y235{bottom:567.360000px;}
.y277{bottom:569.340000px;}
.y146{bottom:569.700000px;}
.y108{bottom:570.780000px;}
.y35b{bottom:571.860150px;}
.y34c{bottom:572.040000px;}
.y2fd{bottom:574.380000px;}
.yf4{bottom:574.740000px;}
.y11c{bottom:575.640000px;}
.y1c8{bottom:576.180000px;}
.y206{bottom:576.360000px;}
.y73{bottom:576.540000px;}
.y36a{bottom:577.260000px;}
.y16{bottom:577.800000px;}
.ydf{bottom:578.340000px;}
.y267{bottom:582.300000px;}
.y1cf{bottom:583.740000px;}
.y2c4{bottom:585.180000px;}
.y3e{bottom:586.980000px;}
.y281{bottom:587.340150px;}
.y180{bottom:588.060000px;}
.y2dc{bottom:588.780000px;}
.y87{bottom:589.320150px;}
.y209{bottom:591.300000px;}
.y328{bottom:591.480000px;}
.y5a{bottom:594.360150px;}
.y95{bottom:594.540000px;}
.y2fc{bottom:595.980000px;}
.y192{bottom:596.340150px;}
.y1c7{bottom:597.060000px;}
.y16f{bottom:597.600000px;}
.y369{bottom:602.280000px;}
.yaa{bottom:603.180000px;}
.y107{bottom:603.360000px;}
.y1ce{bottom:604.620000px;}
.y1d5{bottom:604.800000px;}
.y234{bottom:605.340000px;}
.y251{bottom:607.320000px;}
.y15b{bottom:609.120150px;}
.y2db{bottom:610.560000px;}
.y35a{bottom:611.820000px;}
.y208{bottom:612.180000px;}
.y72{bottom:614.700150px;}
.y3d{bottom:615.960000px;}
.y2fb{bottom:617.760000px;}
.ycc{bottom:619.200000px;}
.y266{bottom:620.280000px;}
.y15{bottom:620.460000px;}
.yde{bottom:622.440000px;}
.y2a6{bottom:623.340000px;}
.y2b7{bottom:623.340150px;}
.y145{bottom:623.520000px;}
.y1c6{bottom:625.320000px;}
.y1cd{bottom:625.500000px;}
.y1d4{bottom:625.680000px;}
.yf3{bottom:628.380000px;}
.y11b{bottom:628.560000px;}
.y327{bottom:630.900000px;}
.y2da{bottom:632.340000px;}
.y59{bottom:632.340150px;}
.y130{bottom:632.520000px;}
.y94{bottom:632.700150px;}
.y1d7{bottom:632.880000px;}
.y207{bottom:633.060000px;}
.y191{bottom:634.320150px;}
.y16e{bottom:635.580000px;}
.y14{bottom:640.440000px;}
.ya9{bottom:641.340150px;}
.y246{bottom:643.320000px;}
.y3c{bottom:644.760000px;}
.y86{bottom:645.300000px;}
.y15a{bottom:647.100000px;}
.y34b{bottom:649.800000px;}
.y359{bottom:651.780000px;}
.y368{bottom:652.320150px;}
.y71{bottom:652.680000px;}
.y2d9{bottom:654.120000px;}
.y144{bottom:656.100000px;}
.y106{bottom:656.280000px;}
.ycb{bottom:657.360000px;}
.y2fa{bottom:657.540150px;}
.y265{bottom:658.260000px;}
.y13{bottom:660.600000px;}
.y1c2{bottom:661.140000px;}
.y233{bottom:661.320000px;}
.y2b6{bottom:661.320150px;}
.y250{bottom:663.300000px;}
.y17f{bottom:665.280000px;}
.y11a{bottom:666.540000px;}
.y204{bottom:668.700000px;}
.y58{bottom:670.320150px;}
.y93{bottom:670.680000px;}
.y190{bottom:672.300150px;}
.y3b{bottom:673.740000px;}
.y358{bottom:676.800000px;}
.yf2{bottom:678.960000px;}
.y2c3{bottom:679.320000px;}
.ya8{bottom:679.320150px;}
.y12{bottom:680.400000px;}
.ydd{bottom:681.300000px;}
.y1c1{bottom:682.020000px;}
.y85{bottom:683.280000px;}
.y34a{bottom:686.160000px;}
.yb8{bottom:688.680000px;}
.y16d{bottom:689.220000px;}
.y203{bottom:689.580000px;}
.y70{bottom:690.660000px;}
.y367{bottom:691.560000px;}
.y2d8{bottom:693.720000px;}
.y245{bottom:699.300000px;}
.y2b5{bottom:699.300150px;}
.y232{bottom:699.480000px;}
.y11{bottom:700.380000px;}
.y2f9{bottom:701.100000px;}
.y3a{bottom:702.540000px;}
.y1c0{bottom:702.900000px;}
.y159{bottom:703.260000px;}
.y33a{bottom:705.060000px;}
.y57{bottom:708.300150px;}
.y92{bottom:708.660000px;}
.y326{bottom:709.560000px;}
.y18f{bottom:710.280150px;}
.yf1{bottom:711.540000px;}
.y105{bottom:712.440000px;}
.y349{bottom:713.520000px;}
.y264{bottom:714.240000px;}
.y2d7{bottom:715.500000px;}
.y1ba{bottom:716.220000px;}
.y357{bottom:716.760000px;}
.y2c2{bottom:717.300000px;}
.y202{bottom:717.840000px;}
.y17e{bottom:718.200000px;}
.ydc{bottom:719.280000px;}
.y10{bottom:720.180000px;}
.y143{bottom:721.260000px;}
.y84{bottom:721.440000px;}
.y16c{bottom:721.800000px;}
.y119{bottom:722.700000px;}
.y1bf{bottom:723.780000px;}
.yb7{bottom:726.660000px;}
.y366{bottom:729.540000px;}
.y39{bottom:731.520000px;}
.y313{bottom:736.740000px;}
.y1b9{bottom:737.100000px;}
.y244{bottom:737.280000px;}
.y2b4{bottom:737.280150px;}
.y231{bottom:737.460000px;}
.y1fe{bottom:738.720000px;}
.yf{bottom:740.160000px;}
.y348{bottom:740.880000px;}
.y158{bottom:741.240000px;}
.y339{bottom:741.420150px;}
.yf0{bottom:744.120000px;}
.y56{bottom:746.460000px;}
.y6f{bottom:746.640000px;}
.y18e{bottom:748.440150px;}
.y325{bottom:748.980000px;}
.y104{bottom:750.420000px;}
.y1be{bottom:752.040000px;}
.y1c4{bottom:752.220000px;}
.y263{bottom:752.400150px;}
.y142{bottom:753.840000px;}
.y16b{bottom:754.380000px;}
.ya7{bottom:755.280000px;}
.y17d{bottom:756.180000px;}
.y356{bottom:756.900000px;}
.ydb{bottom:757.440000px;}
.y2d6{bottom:759.060000px;}
.y83{bottom:759.420150px;}
.y1fd{bottom:759.600000px;}
.ye{bottom:760.140000px;}
.y38{bottom:760.500000px;}
.y118{bottom:760.680000px;}
.y2f8{bottom:762.480150px;}
.yb6{bottom:764.640000px;}
.y312{bottom:764.820000px;}
.y1b8{bottom:765.360000px;}
.y201{bottom:766.980000px;}
.y365{bottom:768.060000px;}
.y338{bottom:768.780150px;}
.yca{bottom:769.320000px;}
.y1bd{bottom:772.920000px;}
.y1c3{bottom:773.100000px;}
.y243{bottom:775.440000px;}
.y230{bottom:775.440150px;}
.y324{bottom:776.340000px;}
.yef{bottom:776.700000px;}
.y276{bottom:777.420000px;}
.yd{bottom:779.940000px;}
.y2f7{bottom:784.260150px;}
.y55{bottom:784.440000px;}
.y91{bottom:784.800150px;}
.y141{bottom:786.420000px;}
.y18d{bottom:786.420150px;}
.y16a{bottom:786.960000px;}
.y1fc{bottom:787.860000px;}
.y37{bottom:789.300000px;}
.y262{bottom:790.380150px;}
.y12f{bottom:791.640000px;}
.y311{bottom:793.080000px;}
.ya6{bottom:793.440000px;}
.y1b7{bottom:793.620000px;}
.y280{bottom:795.420000px;}
.yda{bottom:795.420150px;}
.y337{bottom:796.140150px;}
.y355{bottom:796.860150px;}
.y157{bottom:797.220000px;}
.y82{bottom:797.400000px;}
.y2d5{bottom:798.660000px;}
.yc{bottom:799.920000px;}
.y1bc{bottom:801.180000px;}
.y6e{bottom:802.800150px;}
.y323{bottom:803.700000px;}
.y2f6{bottom:805.860150px;}
.y103{bottom:806.400000px;}
.yc9{bottom:807.300150px;}
.y1fb{bottom:808.740000px;}
.yee{bottom:809.280000px;}
.y22f{bottom:813.420000px;}
.y290{bottom:813.420150px;}
.y117{bottom:814.320000px;}
.y200{bottom:816.120000px;}
.y36{bottom:818.280000px;}
.y347{bottom:818.640000px;}
.yb{bottom:819.900000px;}
.y2d4{bottom:820.440000px;}
.y1b6{bottom:821.880000px;}
.y1bb{bottom:822.060000px;}
.y54{bottom:822.420150px;}
.y336{bottom:823.500150px;}
.y18c{bottom:824.400000px;}
.y261{bottom:828.360150px;}
.y90{bottom:828.720150px;}
.y1c5{bottom:829.440000px;}
.y12e{bottom:829.620000px;}
.y2c1{bottom:831.420000px;}
.ya5{bottom:831.420150px;}
.y275{bottom:833.400000px;}
.y1fa{bottom:836.820000px;}
.y1ff{bottom:837.000000px;}
.ya{bottom:839.700000px;}
.y6d{bottom:840.780000px;}
.yed{bottom:841.860000px;}
.y205{bottom:844.560000px;}
.yc8{bottom:845.460000px;}
.y2f5{bottom:845.640150px;}
.y35{bottom:847.260000px;}
.y310{bottom:849.420000px;}
.y335{bottom:850.860150px;}
.y242{bottom:851.400000px;}
.y28f{bottom:851.400150px;}
.y22e{bottom:851.580000px;}
.y116{bottom:852.840000px;}
.y81{bottom:853.380000px;}
.y17c{bottom:853.920000px;}
.y346{bottom:855.000000px;}
.y1b4{bottom:857.880000px;}
.y9{bottom:859.680000px;}
.y53{bottom:860.400000px;}
.y156{bottom:862.200000px;}
.y18b{bottom:862.380000px;}
.y140{bottom:863.640000px;}
.y169{bottom:864.180000px;}
.y260{bottom:866.340000px;}
.y2f4{bottom:867.420150px;}
.y12d{bottom:867.600150px;}
.ya4{bottom:869.400000px;}
.y102{bottom:871.380000px;}
.y1f8{bottom:872.820000px;}
.yec{bottom:874.440000px;}
.y34{bottom:876.060000px;}
.y30f{bottom:877.500000px;}
.y6c{bottom:878.760000px;}
.y8{bottom:879.660000px;}
.y322{bottom:881.460000px;}
.y2d3{bottom:881.820150px;}
.y345{bottom:882.360000px;}
.yc7{bottom:883.440000px;}
.y115{bottom:885.420000px;}
.y17b{bottom:886.500000px;}
.y2f3{bottom:889.200150px;}
.yd9{bottom:889.380000px;}
.y28e{bottom:889.380150px;}
.y22d{bottom:889.560000px;}
.y1f7{bottom:893.700000px;}
.y13f{bottom:896.220000px;}
.y168{bottom:896.760000px;}
.y52{bottom:898.380000px;}
.y7{bottom:899.460000px;}
.y155{bottom:900.360000px;}
.y2d2{bottom:903.600150px;}
.y25f{bottom:904.500000px;}
.y12c{bottom:905.760000px;}
.y33{bottom:905.940000px;}
.y1b3{bottom:907.020000px;}
.ya3{bottom:907.380000px;}
.y101{bottom:909.360000px;}
.y2f2{bottom:910.800150px;}
.y6b{bottom:916.740000px;}
.y321{bottom:917.820000px;}
.y17a{bottom:919.080000px;}
.yc6{bottom:921.420150px;}
.y1f6{bottom:921.960000px;}
.y2d1{bottom:925.380150px;}
.yeb{bottom:927.360000px;}
.y8f{bottom:927.360150px;}
.y22c{bottom:927.540000px;}
.y1af{bottom:927.720000px;}
.y1b2{bottom:927.900000px;}
.y334{bottom:928.620000px;}
.y13e{bottom:928.800000px;}
.y30e{bottom:933.840000px;}
.y1f2{bottom:935.280000px;}
.y51{bottom:936.540150px;}
.y154{bottom:938.340000px;}
.y114{bottom:938.520000px;}
.y25e{bottom:942.480000px;}
.y1f5{bottom:942.840000px;}
.y12b{bottom:943.740000px;}
.y320{bottom:945.180000px;}
.y274{bottom:945.360000px;}
.ya2{bottom:945.360150px;}
.y2d0{bottom:946.980150px;}
.y100{bottom:947.520000px;}
.y1ae{bottom:948.600000px;}
.y354{bottom:948.780000px;}
.y2f1{bottom:950.580150px;}
.y6a{bottom:954.720000px;}
.y1b1{bottom:956.160000px;}
.y18a{bottom:956.520000px;}
.y13d{bottom:961.380000px;}
.y30d{bottom:962.100000px;}
.y1f1{bottom:963.540000px;}
.y333{bottom:964.980000px;}
.y80{bottom:965.520000px;}
.y1f4{bottom:971.100000px;}
.y2f0{bottom:972.360000px;}
.y31f{bottom:972.540000px;}
.y167{bottom:973.980000px;}
.y6{bottom:974.340000px;}
.y50{bottom:974.520000px;}
.y153{bottom:976.320000px;}
.y113{bottom:976.500000px;}
.y1ad{bottom:976.860000px;}
.y1b0{bottom:977.040000px;}
.yc5{bottom:977.400000px;}
.y25d{bottom:980.460000px;}
.y12a{bottom:981.720000px;}
.ya1{bottom:983.520000px;}
.y1f0{bottom:984.420000px;}
.yff{bottom:985.500000px;}
.y2cf{bottom:986.760000px;}
.y1f3{bottom:991.980000px;}
.y332{bottom:992.340000px;}
.y69{bottom:992.880000px;}
.y2ef{bottom:993.960000px;}
.y179{bottom:996.300000px;}
.y7f{bottom:1003.500000px;}
.y1ac{bottom:1005.120000px;}
.y166{bottom:1006.560000px;}
.y2ce{bottom:1008.540000px;}
.y4f{bottom:1012.500000px;}
.y1ef{bottom:1012.680000px;}
.y1b5{bottom:1012.860000px;}
.y13c{bottom:1014.300000px;}
.yc4{bottom:1015.560000px;}
.y32{bottom:1017.540000px;}
.y25c{bottom:1018.440000px;}
.y129{bottom:1019.700000px;}
.y1f9{bottom:1020.240000px;}
.ya0{bottom:1021.500000px;}
.yfe{bottom:1023.480000px;}
.y2cd{bottom:1030.320000px;}
.y112{bottom:1032.480000px;}
.y2ee{bottom:1033.740000px;}
.y353{bottom:1035.000000px;}
.y30c{bottom:1035.540000px;}
.yb5{bottom:1036.260000px;}
.y31{bottom:1037.520000px;}
.y5{bottom:1038.600000px;}
.y1ab{bottom:1041.120000px;}
.y241{bottom:1041.480000px;}
.y22b{bottom:1041.660000px;}
.y344{bottom:1042.740000px;}
.y1ee{bottom:1048.500000px;}
.y68{bottom:1048.860000px;}
.y4e{bottom:1050.480000px;}
.y31e{bottom:1051.200000px;}
.y2cc{bottom:1051.920000px;}
.y13b{bottom:1052.280000px;}
.yc3{bottom:1053.540000px;}
.y2ed{bottom:1055.520000px;}
.y7e{bottom:1059.480000px;}
.y1aa{bottom:1062.000000px;}
.y1ed{bottom:1069.380000px;}
.y331{bottom:1070.100000px;}
.y128{bottom:1073.340000px;}
.y2ec{bottom:1077.120000px;}
.y343{bottom:1079.100000px;}
.yfd{bottom:1079.460000px;}
.y30{bottom:1080.360000px;}
.y4{bottom:1085.760000px;}
.y4d{bottom:1088.640000px;}
.y1a9{bottom:1090.260000px;}
.y67{bottom:1092.960000px;}
.y7d{bottom:1097.460000px;}
.y22a{bottom:1097.640000px;}
.y2f{bottom:1100.340000px;}
.yb4{bottom:1103.760000px;}
.y127{bottom:1106.100000px;}
.y330{bottom:1106.460000px;}
.y2eb{bottom:1116.900000px;}
.y1a8{bottom:1118.520000px;}
.y2e{bottom:1120.140000px;}
.y3{bottom:1132.740000px;}
.y31d{bottom:1133.820000px;}
.y165{bottom:1135.440000px;}
.y7c{bottom:1135.620000px;}
.y126{bottom:1138.680000px;}
.y1a7{bottom:1139.400000px;}
.y2d{bottom:1140.120000px;}
.y2{bottom:1173.960000px;}
.y31c{bottom:1193.220000px;}
.y1{bottom:1194.120000px;}
.h10{height:20.880000px;}
.hc{height:39.477656px;}
.h2{height:44.928521px;}
.h8{height:48.908839px;}
.h6{height:54.211808px;}
.h12{height:54.212408px;}
.h7{height:56.291856px;}
.h11{height:56.568681px;}
.hf{height:56.568683px;}
.ha{height:58.925558px;}
.h13{height:58.926158px;}
.h5{height:62.395332px;}
.hb{height:63.237656px;}
.he{height:65.107989px;}
.h14{height:67.820645px;}
.h15{height:68.643694px;}
.h4{height:68.942276px;}
.hd{height:68.942876px;}
.h17{height:73.245957px;}
.h16{height:76.636778px;}
.h9{height:79.349434px;}
.h3{height:90.200059px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:212.040000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.200000px;}
.x44{left:108.000000px;}
.x15{left:114.300000px;}
.x12{left:117.540000px;}
.x1d{left:119.700000px;}
.x4{left:128.880000px;}
.x48{left:130.140000px;}
.xb{left:136.620000px;}
.xc{left:140.040000px;}
.x13{left:142.920000px;}
.x36{left:147.780000px;}
.x3b{left:149.220000px;}
.x9{left:160.200000px;}
.x24{left:174.060000px;}
.x2b{left:175.680000px;}
.x8{left:178.920000px;}
.x39{left:187.920000px;}
.x10{left:192.420000px;}
.xd{left:200.700000px;}
.x22{left:211.140000px;}
.x4b{left:212.400000px;}
.x23{left:214.560000px;}
.x25{left:218.160000px;}
.xf{left:234.540000px;}
.x4a{left:238.680000px;}
.x28{left:242.100000px;}
.x47{left:255.240000px;}
.x3{left:265.140000px;}
.x27{left:270.360000px;}
.x11{left:280.080000px;}
.x5{left:283.500000px;}
.x3d{left:290.700000px;}
.x16{left:294.840000px;}
.x35{left:301.680000px;}
.x41{left:305.640000px;}
.x29{left:319.680000px;}
.x7{left:322.200000px;}
.x3e{left:323.460000px;}
.x2c{left:333.360000px;}
.x14{left:336.600000px;}
.x26{left:346.320000px;}
.x49{left:352.800000px;}
.x3c{left:356.220000px;}
.x1e{left:361.440000px;}
.x6{left:363.420000px;}
.x40{left:370.980000px;}
.x3f{left:387.540000px;}
.xe{left:402.120000px;}
.x42{left:419.760000px;}
.x3a{left:422.640000px;}
.x38{left:426.240000px;}
.x2a{left:429.300000px;}
.x1{left:433.800000px;}
.x43{left:442.260000px;}
.x4c{left:451.260000px;}
.x37{left:455.040000px;}
.xa{left:468.720000px;}
.x2e{left:480.600000px;}
.x33{left:504.180000px;}
.x17{left:514.800000px;}
.x46{left:518.220000px;}
.x34{left:529.740000px;}
.x4d{left:532.440000px;}
.x30{left:560.880000px;}
.x2f{left:602.100000px;}
.x31{left:604.260000px;}
.x32{left:616.860000px;}
.x2d{left:627.660000px;}
.x4e{left:690.840000px;}
.x1f{left:701.460000px;}
.x1c{left:708.840000px;}
.x21{left:709.920000px;}
.x1a{left:714.600000px;}
.x19{left:717.660000px;}
.x18{left:720.180000px;}
.x20{left:721.980000px;}
.x1b{left:723.780000px;}
.x45{left:754.380000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.046019pt;}
.ls2{letter-spacing:18.257108pt;}
.ls1{letter-spacing:23.350400pt;}
.ls4{letter-spacing:23.377108pt;}
.ls3{letter-spacing:25.297108pt;}
.wsb{word-spacing:-64.004000pt;}
.ws8{word-spacing:-24.856208pt;}
.ws4{word-spacing:-23.363808pt;}
.ws3{word-spacing:-21.866128pt;}
.ws11{word-spacing:-21.118608pt;}
.ws5{word-spacing:-19.969248pt;}
.ws7{word-spacing:-19.170528pt;}
.ws10{word-spacing:-18.735187pt;}
.wsf{word-spacing:-18.689168pt;}
.ws12{word-spacing:-18.371808pt;}
.ws1{word-spacing:-16.574688pt;}
.wsc{word-spacing:-0.626002pt;}
.wsa{word-spacing:-0.319956pt;}
.ws6{word-spacing:-0.184393pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:0.000064pt;}
.ws13{word-spacing:0.105650pt;}
.ws0{word-spacing:1.032736pt;}
.wsd{word-spacing:20.875207pt;}
.wse{word-spacing:64.134611pt;}
._2d{margin-left:-6.598320pt;}
._22{margin-left:-5.571528pt;}
._1e{margin-left:-4.664815pt;}
._16{margin-left:-3.732366pt;}
._7{margin-left:-2.572452pt;}
._1{margin-left:-1.125132pt;}
._0{width:1.544405pt;}
._5{width:2.552989pt;}
._4{width:3.648924pt;}
._3{width:4.663943pt;}
._8{width:5.947343pt;}
._e{width:6.984172pt;}
._a{width:7.992620pt;}
._b{width:9.518727pt;}
._f{width:10.799992pt;}
._10{width:12.015695pt;}
._9{width:13.074368pt;}
._1d{width:14.005818pt;}
._d{width:15.000446pt;}
._c{width:16.531551pt;}
._2{width:17.449503pt;}
._27{width:18.406399pt;}
._17{width:19.310454pt;}
._6{width:20.615221pt;}
._1c{width:21.565653pt;}
._38{width:22.561859pt;}
._21{width:24.354074pt;}
._20{width:25.392835pt;}
._13{width:26.372377pt;}
._14{width:27.547443pt;}
._1f{width:29.149068pt;}
._31{width:30.542691pt;}
._28{width:31.750516pt;}
._29{width:32.684994pt;}
._61{width:33.838543pt;}
._26{width:34.785643pt;}
._1a{width:36.446639pt;}
._19{width:37.996604pt;}
._11{width:39.628968pt;}
._12{width:40.833793pt;}
._15{width:41.842648pt;}
._23{width:42.908682pt;}
._33{width:44.717979pt;}
._2e{width:46.433547pt;}
._2f{width:47.391987pt;}
._2b{width:48.632740pt;}
._30{width:51.483574pt;}
._65{width:53.138061pt;}
._1b{width:55.020421pt;}
._25{width:56.588042pt;}
._5f{width:76.272349pt;}
._71{width:78.079184pt;}
._42{width:81.918432pt;}
._6f{width:91.502295pt;}
._70{width:112.576444pt;}
._59{width:115.518604pt;}
._5a{width:116.606894pt;}
._5e{width:118.065749pt;}
._6c{width:121.101392pt;}
._6b{width:122.503912pt;}
._57{width:132.265032pt;}
._3e{width:136.352024pt;}
._58{width:137.343097pt;}
._2a{width:138.241376pt;}
._49{width:146.767872pt;}
._43{width:149.379524pt;}
._7a{width:162.173848pt;}
._73{width:167.550792pt;}
._41{width:171.168852pt;}
._46{width:173.710620pt;}
._69{width:178.190620pt;}
._34{width:182.276358pt;}
._3b{width:186.724525pt;}
._45{width:188.430620pt;}
._3a{width:193.610024pt;}
._3d{width:198.426143pt;}
._7c{width:204.404776pt;}
._4d{width:214.307223pt;}
._7d{width:217.974024pt;}
._7b{width:221.238228pt;}
._4a{width:228.598079pt;}
._77{width:239.330650pt;}
._75{width:258.353287pt;}
._50{width:266.917803pt;}
._6e{width:278.336179pt;}
._4e{width:284.670727pt;}
._68{width:292.457794pt;}
._40{width:299.131082pt;}
._32{width:311.287091pt;}
._67{width:324.346572pt;}
._64{width:332.116145pt;}
._3c{width:341.754219pt;}
._39{width:374.319255pt;}
._60{width:376.590620pt;}
._66{width:402.971323pt;}
._62{width:416.381080pt;}
._52{width:455.817387pt;}
._53{width:462.591160pt;}
._4b{width:489.164295pt;}
._2c{width:499.559448pt;}
._56{width:524.920113pt;}
._5c{width:539.518712pt;}
._54{width:560.049844pt;}
._48{width:567.310620pt;}
._5d{width:573.070620pt;}
._4c{width:574.424828pt;}
._55{width:582.670620pt;}
._63{width:591.159560pt;}
._47{width:594.687700pt;}
._3f{width:650.272024pt;}
._76{width:656.890266pt;}
._6a{width:666.556625pt;}
._51{width:683.305032pt;}
._5b{width:731.368714pt;}
._6d{width:807.182212pt;}
._44{width:840.559102pt;}
._37{width:866.397712pt;}
._24{width:867.724762pt;}
._4f{width:920.590620pt;}
._36{width:968.797712pt;}
._35{width:983.571680pt;}
._72{width:996.714832pt;}
._79{width:1181.780092pt;}
._78{width:1253.621724pt;}
._18{width:1279.835335pt;}
._74{width:1444.721605pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:53.124000pt;}
.fs0{font-size:58.884000pt;}
.fs7{font-size:61.443998pt;}
.fs6{font-size:61.444000pt;}
.fs4{font-size:64.004000pt;}
.fs9{font-size:69.124000pt;}
.fs8{font-size:72.324000pt;}
.fs2{font-size:74.884000pt;}
.fs1{font-size:85.124000pt;}
.y0{bottom:0.000000pt;}
.y221{bottom:3.199936pt;}
.y2c{bottom:78.400000pt;}
.y229{bottom:82.240000pt;}
.y2c0{bottom:82.880133pt;}
.y27f{bottom:86.240133pt;}
.y152{bottom:86.720000pt;}
.y1ea{bottom:87.200000pt;}
.yfc{bottom:89.280000pt;}
.y111{bottom:89.600000pt;}
.y1a3{bottom:90.880133pt;}
.y2b{bottom:94.400000pt;}
.y273{bottom:96.000133pt;}
.y13a{bottom:100.320000pt;}
.y28d{bottom:100.480133pt;}
.y2a1{bottom:100.640000pt;}
.y25b{bottom:102.240000pt;}
.y178{bottom:103.520000pt;}
.y2b3{bottom:107.040000pt;}
.y1a2{bottom:109.440133pt;}
.y2a{bottom:110.560000pt;}
.y1e9{bottom:112.480000pt;}
.yd8{bottom:112.960133pt;}
.y110{bottom:114.240000pt;}
.y2ea{bottom:115.200133pt;}
.y151{bottom:115.680000pt;}
.y1a5{bottom:116.160133pt;}
.y240{bottom:116.480000pt;}
.y2ac{bottom:116.640000pt;}
.y2bf{bottom:116.640133pt;}
.y297{bottom:118.240000pt;}
.y27e{bottom:120.160133pt;}
.y66{bottom:122.720000pt;}
.y9f{bottom:123.040000pt;}
.y125{bottom:123.680000pt;}
.yea{bottom:126.240000pt;}
.yc2{bottom:126.560000pt;}
.y139{bottom:129.280000pt;}
.y272{bottom:129.760133pt;}
.y1e8{bottom:131.040000pt;}
.y226{bottom:132.480000pt;}
.y177{bottom:132.640000pt;}
.y28c{bottom:134.240133pt;}
.y2a0{bottom:134.400000pt;}
.y2e9{bottom:134.400133pt;}
.y1a1{bottom:134.560133pt;}
.y1a4{bottom:134.720133pt;}
.y25a{bottom:136.000000pt;}
.y4c{bottom:136.160000pt;}
.y1eb{bottom:137.600000pt;}
.y2b2{bottom:140.800000pt;}
.y1a6{bottom:141.280133pt;}
.y374{bottom:141.440133pt;}
.y29{bottom:142.720133pt;}
.y364{bottom:144.000000pt;}
.y150{bottom:144.640000pt;}
.yd7{bottom:146.720000pt;}
.y24f{bottom:150.240000pt;}
.y23f{bottom:150.400000pt;}
.y2be{bottom:150.400133pt;}
.y225{bottom:151.040000pt;}
.y296{bottom:152.000000pt;}
.y2e8{bottom:153.760133pt;}
.y27d{bottom:154.080133pt;}
.y1e7{bottom:156.160000pt;}
.y65{bottom:156.480000pt;}
.y30b{bottom:156.640000pt;}
.y9e{bottom:156.800000pt;}
.y124{bottom:157.440133pt;}
.y28{bottom:158.880133pt;}
.ye9{bottom:160.160000pt;}
.yc1{bottom:160.320133pt;}
.y176{bottom:161.600000pt;}
.y4b{bottom:161.920000pt;}
.y271{bottom:163.520133pt;}
.y19f{bottom:166.400133pt;}
.y28b{bottom:168.000133pt;}
.y29f{bottom:168.160000pt;}
.y224{bottom:169.440000pt;}
.y2a5{bottom:170.080000pt;}
.y259{bottom:170.080133pt;}
.y373{bottom:170.400133pt;}
.y8e{bottom:171.680000pt;}
.y14f{bottom:173.600000pt;}
.y2b1{bottom:174.560000pt;}
.y1e6{bottom:174.720000pt;}
.y27{bottom:174.880133pt;}
.y30a{bottom:176.000000pt;}
.y363{bottom:179.520133pt;}
.yd6{bottom:180.480000pt;}
.y1ec{bottom:181.280000pt;}
.y189{bottom:182.720000pt;}
.y164{bottom:183.360000pt;}
.y24e{bottom:184.000133pt;}
.y23e{bottom:184.160000pt;}
.y19e{bottom:184.960133pt;}
.y295{bottom:185.920000pt;}
.y4a{bottom:187.680000pt;}
.y27c{bottom:187.840133pt;}
.y223{bottom:188.000000pt;}
.y2e7{bottom:188.960133pt;}
.y64{bottom:190.240000pt;}
.y9d{bottom:190.560000pt;}
.yfb{bottom:190.720000pt;}
.y26{bottom:191.200133pt;}
.ye8{bottom:193.920000pt;}
.y7b{bottom:194.240000pt;}
.y309{bottom:195.360000pt;}
.y32f{bottom:196.480000pt;}
.y270{bottom:197.440133pt;}
.y138{bottom:197.920000pt;}
.y28a{bottom:201.920133pt;}
.y29e{bottom:202.080000pt;}
.y14e{bottom:202.560000pt;}
.y258{bottom:203.840133pt;}
.y8d{bottom:205.440000pt;}
.y1e3{bottom:206.400000pt;}
.y227{bottom:206.560000pt;}
.y2b0{bottom:208.320000pt;}
.y2e6{bottom:208.320133pt;}
.yc0{bottom:210.080133pt;}
.y188{bottom:211.680000pt;}
.y163{bottom:212.320000pt;}
.y222{bottom:213.120000pt;}
.y21f{bottom:213.120133pt;}
.y49{bottom:213.280000pt;}
.yd5{bottom:214.240000pt;}
.y362{bottom:215.200133pt;}
.y25{bottom:217.280000pt;}
.y23d{bottom:217.920000pt;}
.y24d{bottom:217.920133pt;}
.y2ab{bottom:218.080000pt;}
.y294{bottom:219.680000pt;}
.y2a4{bottom:219.840000pt;}
.y63{bottom:224.160000pt;}
.y9c{bottom:224.320133pt;}
.yfa{bottom:224.480000pt;}
.y342{bottom:225.280133pt;}
.y137{bottom:226.880000pt;}
.ye7{bottom:227.680000pt;}
.y7a{bottom:228.000000pt;}
.y220{bottom:228.480059pt;}
.y19d{bottom:228.640133pt;}
.y32e{bottom:228.800000pt;}
.y10f{bottom:230.240000pt;}
.y308{bottom:230.560000pt;}
.y26f{bottom:231.200133pt;}
.y14d{bottom:231.520000pt;}
.y1e2{bottom:231.680000pt;}
.y21e{bottom:231.680133pt;}
.yb3{bottom:232.000000pt;}
.y2bd{bottom:233.920133pt;}
.y289{bottom:235.680133pt;}
.y27b{bottom:237.600000pt;}
.y48{bottom:239.040000pt;}
.y8c{bottom:239.200133pt;}
.y187{bottom:240.640000pt;}
.y123{bottom:240.960133pt;}
.y162{bottom:241.280000pt;}
.y2af{bottom:242.240000pt;}
.y31b{bottom:244.000000pt;}
.y24{bottom:245.280000pt;}
.y199{bottom:247.200133pt;}
.yd4{bottom:248.160000pt;}
.y307{bottom:249.920000pt;}
.y1e1{bottom:250.240000pt;}
.y21d{bottom:250.240133pt;}
.y23c{bottom:251.680000pt;}
.y24c{bottom:251.680133pt;}
.y29d{bottom:251.840000pt;}
.y32d{bottom:253.120000pt;}
.y293{bottom:253.440000pt;}
.y257{bottom:253.600000pt;}
.y19c{bottom:253.760133pt;}
.y228{bottom:256.800000pt;}
.y372{bottom:257.440000pt;}
.y341{bottom:257.600133pt;}
.y62{bottom:257.920000pt;}
.y9b{bottom:258.240000pt;}
.y175{bottom:259.040000pt;}
.ybf{bottom:260.000000pt;}
.y352{bottom:260.320000pt;}
.y14c{bottom:260.480000pt;}
.ye6{bottom:261.440000pt;}
.y79{bottom:261.760133pt;}
.y23{bottom:263.040000pt;}
.y2e5{bottom:263.040133pt;}
.y47{bottom:264.640000pt;}
.y26e{bottom:264.960133pt;}
.y198{bottom:265.760133pt;}
.yb2{bottom:265.920000pt;}
.y2bc{bottom:267.680133pt;}
.y2aa{bottom:267.840000pt;}
.y31a{bottom:268.160000pt;}
.y1e0{bottom:268.640000pt;}
.y306{bottom:269.280133pt;}
.y288{bottom:269.440133pt;}
.y186{bottom:269.600000pt;}
.y161{bottom:270.240000pt;}
.y27a{bottom:271.200000pt;}
.y19b{bottom:272.320133pt;}
.y361{bottom:272.960000pt;}
.y136{bottom:273.920000pt;}
.y32c{bottom:277.440000pt;}
.y10e{bottom:277.920000pt;}
.y22{bottom:280.640000pt;}
.y2ae{bottom:281.440000pt;}
.yd3{bottom:281.920000pt;}
.y218{bottom:281.920133pt;}
.y2e4{bottom:282.400133pt;}
.y2cb{bottom:283.840000pt;}
.y319{bottom:285.440000pt;}
.y24b{bottom:285.440133pt;}
.y29c{bottom:285.600000pt;}
.y1dc{bottom:287.200000pt;}
.y305{bottom:288.640133pt;}
.y8b{bottom:288.960133pt;}
.y14b{bottom:289.440000pt;}
.y46{bottom:290.400000pt;}
.y197{bottom:290.720133pt;}
.y19a{bottom:290.880133pt;}
.y61{bottom:291.680000pt;}
.y9a{bottom:292.000000pt;}
.y371{bottom:292.960000pt;}
.y1df{bottom:293.760000pt;}
.ybe{bottom:293.760133pt;}
.ye5{bottom:295.200000pt;}
.y1a0{bottom:297.600133pt;}
.y21{bottom:298.400000pt;}
.y185{bottom:298.560000pt;}
.y122{bottom:298.880000pt;}
.y160{bottom:299.200000pt;}
.yb1{bottom:299.680000pt;}
.y217{bottom:300.480133pt;}
.y2bb{bottom:301.440133pt;}
.y2a9{bottom:301.600000pt;}
.y23b{bottom:301.600133pt;}
.y292{bottom:303.200000pt;}
.y287{bottom:303.200133pt;}
.y279{bottom:304.960000pt;}
.y174{bottom:306.240000pt;}
.y340{bottom:306.240133pt;}
.y10d{bottom:306.880000pt;}
.y135{bottom:307.680000pt;}
.y360{bottom:308.480000pt;}
.y78{bottom:311.520133pt;}
.y1db{bottom:312.320000pt;}
.y26d{bottom:314.720000pt;}
.yd2{bottom:315.680000pt;}
.y20{bottom:316.160000pt;}
.y2ca{bottom:317.600000pt;}
.y21b{bottom:319.040133pt;}
.y24a{bottom:319.200133pt;}
.y29b{bottom:319.360000pt;}
.y256{bottom:320.960000pt;}
.y2e3{bottom:320.960133pt;}
.y8a{bottom:322.880000pt;}
.y318{bottom:323.040000pt;}
.y304{bottom:323.840133pt;}
.y60{bottom:325.440000pt;}
.y216{bottom:325.600133pt;}
.yf9{bottom:325.920000pt;}
.y351{bottom:326.080000pt;}
.y370{bottom:328.480000pt;}
.ye4{bottom:329.120000pt;}
.y1da{bottom:330.880000pt;}
.y121{bottom:332.640000pt;}
.ybd{bottom:332.960133pt;}
.yb0{bottom:333.440000pt;}
.y1f{bottom:333.760000pt;}
.y196{bottom:334.560133pt;}
.y2ba{bottom:335.200133pt;}
.y2a8{bottom:335.360000pt;}
.y23a{bottom:335.360133pt;}
.y286{bottom:336.960133pt;}
.y1e4{bottom:337.440000pt;}
.y278{bottom:338.880000pt;}
.y173{bottom:340.000000pt;}
.y317{bottom:340.160000pt;}
.y2e2{bottom:340.320133pt;}
.y10c{bottom:341.120000pt;}
.y45{bottom:341.760000pt;}
.y303{bottom:343.200000pt;}
.y35f{bottom:344.000000pt;}
.y212{bottom:344.160000pt;}
.y215{bottom:344.160133pt;}
.y32b{bottom:346.720000pt;}
.y26c{bottom:348.640000pt;}
.y1d9{bottom:349.440000pt;}
.y2c9{bottom:351.360000pt;}
.y1e{bottom:351.520000pt;}
.y29a{bottom:353.120000pt;}
.y195{bottom:353.120133pt;}
.y255{bottom:354.880000pt;}
.y134{bottom:355.360000pt;}
.y1de{bottom:356.000000pt;}
.y89{bottom:356.640133pt;}
.y14a{bottom:358.080000pt;}
.y350{bottom:358.240000pt;}
.y5f{bottom:359.200133pt;}
.y99{bottom:359.520133pt;}
.yf8{bottom:359.680000pt;}
.y77{bottom:361.280000pt;}
.y302{bottom:362.560000pt;}
.y21a{bottom:362.720133pt;}
.ye3{bottom:362.880000pt;}
.y36f{bottom:364.000000pt;}
.yd1{bottom:365.440000pt;}
.y120{bottom:366.400000pt;}
.ybc{bottom:366.720000pt;}
.y184{bottom:367.200000pt;}
.yaf{bottom:367.200133pt;}
.y44{bottom:367.520000pt;}
.y15f{bottom:367.840000pt;}
.y2ad{bottom:368.960000pt;}
.y249{bottom:368.960133pt;}
.y1d{bottom:369.120000pt;}
.y239{bottom:369.120133pt;}
.y211{bottom:369.280000pt;}
.y214{bottom:369.280133pt;}
.y10b{bottom:370.080000pt;}
.y1d8{bottom:374.400000pt;}
.y1dd{bottom:374.560000pt;}
.y33f{bottom:375.360133pt;}
.y2e1{bottom:375.520000pt;}
.y316{bottom:377.760000pt;}
.y32a{bottom:378.880000pt;}
.y35e{bottom:379.520000pt;}
.y1e5{bottom:381.280000pt;}
.y26b{bottom:382.400000pt;}
.y34f{bottom:382.560000pt;}
.y133{bottom:384.320000pt;}
.y2c8{bottom:385.120000pt;}
.y36e{bottom:386.240000pt;}
.y1c{bottom:386.880000pt;}
.y285{bottom:386.880133pt;}
.y299{bottom:387.040000pt;}
.y210{bottom:387.840000pt;}
.y213{bottom:387.840133pt;}
.y254{bottom:388.640000pt;}
.y172{bottom:389.760000pt;}
.y5e{bottom:393.120000pt;}
.y43{bottom:393.280000pt;}
.y315{bottom:393.760000pt;}
.y2e0{bottom:394.880000pt;}
.y76{bottom:395.200133pt;}
.ye2{bottom:396.640000pt;}
.y301{bottom:397.760133pt;}
.yd0{bottom:399.360000pt;}
.yae{bottom:400.960133pt;}
.y291{bottom:402.880000pt;}
.y238{bottom:402.880133pt;}
.y2a7{bottom:403.040000pt;}
.y1b{bottom:404.640000pt;}
.y149{bottom:405.120000pt;}
.ybb{bottom:405.760133pt;}
.y1d3{bottom:406.400000pt;}
.y219{bottom:406.400133pt;}
.y33e{bottom:407.680133pt;}
.y36d{bottom:408.480000pt;}
.yf7{bottom:409.440000pt;}
.y314{bottom:409.920000pt;}
.y21c{bottom:413.120133pt;}
.y132{bottom:413.280000pt;}
.y11f{bottom:414.080000pt;}
.y2df{bottom:414.240000pt;}
.y35d{bottom:415.040000pt;}
.y26a{bottom:416.160000pt;}
.y300{bottom:417.120000pt;}
.y42{bottom:418.880000pt;}
.y2c7{bottom:419.040000pt;}
.y2a3{bottom:420.640000pt;}
.y284{bottom:420.640133pt;}
.y1a{bottom:422.400000pt;}
.y171{bottom:423.520000pt;}
.y1cc{bottom:424.800000pt;}
.y1d2{bottom:424.960000pt;}
.y5d{bottom:426.880000pt;}
.y98{bottom:427.200133pt;}
.y75{bottom:428.960133pt;}
.ye1{bottom:430.400000pt;}
.y33d{bottom:432.000133pt;}
.ycf{bottom:433.120000pt;}
.yad{bottom:434.880000pt;}
.y183{bottom:435.840000pt;}
.y15e{bottom:436.480000pt;}
.y237{bottom:436.640000pt;}
.y248{bottom:436.640133pt;}
.y298{bottom:436.800000pt;}
.y35c{bottom:437.280000pt;}
.y20d{bottom:438.240000pt;}
.y20f{bottom:438.400000pt;}
.y10a{bottom:438.720000pt;}
.y148{bottom:438.880000pt;}
.yba{bottom:439.680000pt;}
.y19{bottom:440.160000pt;}
.y11e{bottom:443.040000pt;}
.yf6{bottom:443.200000pt;}
.y1cb{bottom:443.360000pt;}
.y36c{bottom:444.000000pt;}
.y41{bottom:444.640000pt;}
.y194{bottom:446.400133pt;}
.y131{bottom:447.680000pt;}
.y2de{bottom:449.440000pt;}
.y329{bottom:449.760000pt;}
.y269{bottom:449.920000pt;}
.y1d1{bottom:450.080000pt;}
.y34e{bottom:451.840000pt;}
.y2c6{bottom:452.800000pt;}
.y2a2{bottom:454.400000pt;}
.y283{bottom:454.400133pt;}
.y253{bottom:456.160000pt;}
.y33c{bottom:456.320133pt;}
.y20c{bottom:456.800000pt;}
.y20e{bottom:456.960000pt;}
.y18{bottom:457.920000pt;}
.y5c{bottom:460.640133pt;}
.y97{bottom:460.960133pt;}
.y74{bottom:462.720000pt;}
.ye0{bottom:464.320000pt;}
.y182{bottom:464.800000pt;}
.y15d{bottom:465.440000pt;}
.yce{bottom:466.880000pt;}
.y1ca{bottom:468.480000pt;}
.y1d0{bottom:468.640000pt;}
.yac{bottom:468.640133pt;}
.y2dd{bottom:468.800000pt;}
.y40{bottom:470.400000pt;}
.y2b9{bottom:470.400133pt;}
.y236{bottom:470.560000pt;}
.y2ff{bottom:471.680133pt;}
.y147{bottom:472.800000pt;}
.y109{bottom:473.120000pt;}
.y170{bottom:473.440000pt;}
.y17{bottom:475.520000pt;}
.yf5{bottom:477.120000pt;}
.y11d{bottom:477.440000pt;}
.yb9{bottom:478.720000pt;}
.y36b{bottom:478.880000pt;}
.y193{bottom:480.160133pt;}
.y33b{bottom:480.640133pt;}
.y20b{bottom:481.920000pt;}
.y268{bottom:483.680000pt;}
.y34d{bottom:484.160000pt;}
.y2c5{bottom:486.400000pt;}
.y1c9{bottom:487.040000pt;}
.y282{bottom:488.160133pt;}
.y252{bottom:490.080000pt;}
.y88{bottom:490.080133pt;}
.y2fe{bottom:491.200000pt;}
.y181{bottom:493.760000pt;}
.y1d6{bottom:493.920000pt;}
.y15c{bottom:494.400000pt;}
.y5b{bottom:494.400133pt;}
.y96{bottom:494.720000pt;}
.y3f{bottom:496.000000pt;}
.y20a{bottom:500.480000pt;}
.ycd{bottom:500.640133pt;}
.yab{bottom:502.400133pt;}
.y247{bottom:504.160000pt;}
.y2b8{bottom:504.160133pt;}
.y235{bottom:504.320000pt;}
.y277{bottom:506.080000pt;}
.y146{bottom:506.400000pt;}
.y108{bottom:507.360000pt;}
.y35b{bottom:508.320133pt;}
.y34c{bottom:508.480000pt;}
.y2fd{bottom:510.560000pt;}
.yf4{bottom:510.880000pt;}
.y11c{bottom:511.680000pt;}
.y1c8{bottom:512.160000pt;}
.y206{bottom:512.320000pt;}
.y73{bottom:512.480000pt;}
.y36a{bottom:513.120000pt;}
.y16{bottom:513.600000pt;}
.ydf{bottom:514.080000pt;}
.y267{bottom:517.600000pt;}
.y1cf{bottom:518.880000pt;}
.y2c4{bottom:520.160000pt;}
.y3e{bottom:521.760000pt;}
.y281{bottom:522.080133pt;}
.y180{bottom:522.720000pt;}
.y2dc{bottom:523.360000pt;}
.y87{bottom:523.840133pt;}
.y209{bottom:525.600000pt;}
.y328{bottom:525.760000pt;}
.y5a{bottom:528.320133pt;}
.y95{bottom:528.480000pt;}
.y2fc{bottom:529.760000pt;}
.y192{bottom:530.080133pt;}
.y1c7{bottom:530.720000pt;}
.y16f{bottom:531.200000pt;}
.y369{bottom:535.360000pt;}
.yaa{bottom:536.160000pt;}
.y107{bottom:536.320000pt;}
.y1ce{bottom:537.440000pt;}
.y1d5{bottom:537.600000pt;}
.y234{bottom:538.080000pt;}
.y251{bottom:539.840000pt;}
.y15b{bottom:541.440133pt;}
.y2db{bottom:542.720000pt;}
.y35a{bottom:543.840000pt;}
.y208{bottom:544.160000pt;}
.y72{bottom:546.400133pt;}
.y3d{bottom:547.520000pt;}
.y2fb{bottom:549.120000pt;}
.ycc{bottom:550.400000pt;}
.y266{bottom:551.360000pt;}
.y15{bottom:551.520000pt;}
.yde{bottom:553.280000pt;}
.y2a6{bottom:554.080000pt;}
.y2b7{bottom:554.080133pt;}
.y145{bottom:554.240000pt;}
.y1c6{bottom:555.840000pt;}
.y1cd{bottom:556.000000pt;}
.y1d4{bottom:556.160000pt;}
.yf3{bottom:558.560000pt;}
.y11b{bottom:558.720000pt;}
.y327{bottom:560.800000pt;}
.y2da{bottom:562.080000pt;}
.y59{bottom:562.080133pt;}
.y130{bottom:562.240000pt;}
.y94{bottom:562.400133pt;}
.y1d7{bottom:562.560000pt;}
.y207{bottom:562.720000pt;}
.y191{bottom:563.840133pt;}
.y16e{bottom:564.960000pt;}
.y14{bottom:569.280000pt;}
.ya9{bottom:570.080133pt;}
.y246{bottom:571.840000pt;}
.y3c{bottom:573.120000pt;}
.y86{bottom:573.600000pt;}
.y15a{bottom:575.200000pt;}
.y34b{bottom:577.600000pt;}
.y359{bottom:579.360000pt;}
.y368{bottom:579.840133pt;}
.y71{bottom:580.160000pt;}
.y2d9{bottom:581.440000pt;}
.y144{bottom:583.200000pt;}
.y106{bottom:583.360000pt;}
.ycb{bottom:584.320000pt;}
.y2fa{bottom:584.480133pt;}
.y265{bottom:585.120000pt;}
.y13{bottom:587.200000pt;}
.y1c2{bottom:587.680000pt;}
.y233{bottom:587.840000pt;}
.y2b6{bottom:587.840133pt;}
.y250{bottom:589.600000pt;}
.y17f{bottom:591.360000pt;}
.y11a{bottom:592.480000pt;}
.y204{bottom:594.400000pt;}
.y58{bottom:595.840133pt;}
.y93{bottom:596.160000pt;}
.y190{bottom:597.600133pt;}
.y3b{bottom:598.880000pt;}
.y358{bottom:601.600000pt;}
.yf2{bottom:603.520000pt;}
.y2c3{bottom:603.840000pt;}
.ya8{bottom:603.840133pt;}
.y12{bottom:604.800000pt;}
.ydd{bottom:605.600000pt;}
.y1c1{bottom:606.240000pt;}
.y85{bottom:607.360000pt;}
.y34a{bottom:609.920000pt;}
.yb8{bottom:612.160000pt;}
.y16d{bottom:612.640000pt;}
.y203{bottom:612.960000pt;}
.y70{bottom:613.920000pt;}
.y367{bottom:614.720000pt;}
.y2d8{bottom:616.640000pt;}
.y245{bottom:621.600000pt;}
.y2b5{bottom:621.600133pt;}
.y232{bottom:621.760000pt;}
.y11{bottom:622.560000pt;}
.y2f9{bottom:623.200000pt;}
.y3a{bottom:624.480000pt;}
.y1c0{bottom:624.800000pt;}
.y159{bottom:625.120000pt;}
.y33a{bottom:626.720000pt;}
.y57{bottom:629.600133pt;}
.y92{bottom:629.920000pt;}
.y326{bottom:630.720000pt;}
.y18f{bottom:631.360133pt;}
.yf1{bottom:632.480000pt;}
.y105{bottom:633.280000pt;}
.y349{bottom:634.240000pt;}
.y264{bottom:634.880000pt;}
.y2d7{bottom:636.000000pt;}
.y1ba{bottom:636.640000pt;}
.y357{bottom:637.120000pt;}
.y2c2{bottom:637.600000pt;}
.y202{bottom:638.080000pt;}
.y17e{bottom:638.400000pt;}
.ydc{bottom:639.360000pt;}
.y10{bottom:640.160000pt;}
.y143{bottom:641.120000pt;}
.y84{bottom:641.280000pt;}
.y16c{bottom:641.600000pt;}
.y119{bottom:642.400000pt;}
.y1bf{bottom:643.360000pt;}
.yb7{bottom:645.920000pt;}
.y366{bottom:648.480000pt;}
.y39{bottom:650.240000pt;}
.y313{bottom:654.880000pt;}
.y1b9{bottom:655.200000pt;}
.y244{bottom:655.360000pt;}
.y2b4{bottom:655.360133pt;}
.y231{bottom:655.520000pt;}
.y1fe{bottom:656.640000pt;}
.yf{bottom:657.920000pt;}
.y348{bottom:658.560000pt;}
.y158{bottom:658.880000pt;}
.y339{bottom:659.040133pt;}
.yf0{bottom:661.440000pt;}
.y56{bottom:663.520000pt;}
.y6f{bottom:663.680000pt;}
.y18e{bottom:665.280133pt;}
.y325{bottom:665.760000pt;}
.y104{bottom:667.040000pt;}
.y1be{bottom:668.480000pt;}
.y1c4{bottom:668.640000pt;}
.y263{bottom:668.800133pt;}
.y142{bottom:670.080000pt;}
.y16b{bottom:670.560000pt;}
.ya7{bottom:671.360000pt;}
.y17d{bottom:672.160000pt;}
.y356{bottom:672.800000pt;}
.ydb{bottom:673.280000pt;}
.y2d6{bottom:674.720000pt;}
.y83{bottom:675.040133pt;}
.y1fd{bottom:675.200000pt;}
.ye{bottom:675.680000pt;}
.y38{bottom:676.000000pt;}
.y118{bottom:676.160000pt;}
.y2f8{bottom:677.760133pt;}
.yb6{bottom:679.680000pt;}
.y312{bottom:679.840000pt;}
.y1b8{bottom:680.320000pt;}
.y201{bottom:681.760000pt;}
.y365{bottom:682.720000pt;}
.y338{bottom:683.360133pt;}
.yca{bottom:683.840000pt;}
.y1bd{bottom:687.040000pt;}
.y1c3{bottom:687.200000pt;}
.y243{bottom:689.280000pt;}
.y230{bottom:689.280133pt;}
.y324{bottom:690.080000pt;}
.yef{bottom:690.400000pt;}
.y276{bottom:691.040000pt;}
.yd{bottom:693.280000pt;}
.y2f7{bottom:697.120133pt;}
.y55{bottom:697.280000pt;}
.y91{bottom:697.600133pt;}
.y141{bottom:699.040000pt;}
.y18d{bottom:699.040133pt;}
.y16a{bottom:699.520000pt;}
.y1fc{bottom:700.320000pt;}
.y37{bottom:701.600000pt;}
.y262{bottom:702.560133pt;}
.y12f{bottom:703.680000pt;}
.y311{bottom:704.960000pt;}
.ya6{bottom:705.280000pt;}
.y1b7{bottom:705.440000pt;}
.y280{bottom:707.040000pt;}
.yda{bottom:707.040133pt;}
.y337{bottom:707.680133pt;}
.y355{bottom:708.320133pt;}
.y157{bottom:708.640000pt;}
.y82{bottom:708.800000pt;}
.y2d5{bottom:709.920000pt;}
.yc{bottom:711.040000pt;}
.y1bc{bottom:712.160000pt;}
.y6e{bottom:713.600133pt;}
.y323{bottom:714.400000pt;}
.y2f6{bottom:716.320133pt;}
.y103{bottom:716.800000pt;}
.yc9{bottom:717.600133pt;}
.y1fb{bottom:718.880000pt;}
.yee{bottom:719.360000pt;}
.y22f{bottom:723.040000pt;}
.y290{bottom:723.040133pt;}
.y117{bottom:723.840000pt;}
.y200{bottom:725.440000pt;}
.y36{bottom:727.360000pt;}
.y347{bottom:727.680000pt;}
.yb{bottom:728.800000pt;}
.y2d4{bottom:729.280000pt;}
.y1b6{bottom:730.560000pt;}
.y1bb{bottom:730.720000pt;}
.y54{bottom:731.040133pt;}
.y336{bottom:732.000133pt;}
.y18c{bottom:732.800000pt;}
.y261{bottom:736.320133pt;}
.y90{bottom:736.640133pt;}
.y1c5{bottom:737.280000pt;}
.y12e{bottom:737.440000pt;}
.y2c1{bottom:739.040000pt;}
.ya5{bottom:739.040133pt;}
.y275{bottom:740.800000pt;}
.y1fa{bottom:743.840000pt;}
.y1ff{bottom:744.000000pt;}
.ya{bottom:746.400000pt;}
.y6d{bottom:747.360000pt;}
.yed{bottom:748.320000pt;}
.y205{bottom:750.720000pt;}
.yc8{bottom:751.520000pt;}
.y2f5{bottom:751.680133pt;}
.y35{bottom:753.120000pt;}
.y310{bottom:755.040000pt;}
.y335{bottom:756.320133pt;}
.y242{bottom:756.800000pt;}
.y28f{bottom:756.800133pt;}
.y22e{bottom:756.960000pt;}
.y116{bottom:758.080000pt;}
.y81{bottom:758.560000pt;}
.y17c{bottom:759.040000pt;}
.y346{bottom:760.000000pt;}
.y1b4{bottom:762.560000pt;}
.y9{bottom:764.160000pt;}
.y53{bottom:764.800000pt;}
.y156{bottom:766.400000pt;}
.y18b{bottom:766.560000pt;}
.y140{bottom:767.680000pt;}
.y169{bottom:768.160000pt;}
.y260{bottom:770.080000pt;}
.y2f4{bottom:771.040133pt;}
.y12d{bottom:771.200133pt;}
.ya4{bottom:772.800000pt;}
.y102{bottom:774.560000pt;}
.y1f8{bottom:775.840000pt;}
.yec{bottom:777.280000pt;}
.y34{bottom:778.720000pt;}
.y30f{bottom:780.000000pt;}
.y6c{bottom:781.120000pt;}
.y8{bottom:781.920000pt;}
.y322{bottom:783.520000pt;}
.y2d3{bottom:783.840133pt;}
.y345{bottom:784.320000pt;}
.yc7{bottom:785.280000pt;}
.y115{bottom:787.040000pt;}
.y17b{bottom:788.000000pt;}
.y2f3{bottom:790.400133pt;}
.yd9{bottom:790.560000pt;}
.y28e{bottom:790.560133pt;}
.y22d{bottom:790.720000pt;}
.y1f7{bottom:794.400000pt;}
.y13f{bottom:796.640000pt;}
.y168{bottom:797.120000pt;}
.y52{bottom:798.560000pt;}
.y7{bottom:799.520000pt;}
.y155{bottom:800.320000pt;}
.y2d2{bottom:803.200133pt;}
.y25f{bottom:804.000000pt;}
.y12c{bottom:805.120000pt;}
.y33{bottom:805.280000pt;}
.y1b3{bottom:806.240000pt;}
.ya3{bottom:806.560000pt;}
.y101{bottom:808.320000pt;}
.y2f2{bottom:809.600133pt;}
.y6b{bottom:814.880000pt;}
.y321{bottom:815.840000pt;}
.y17a{bottom:816.960000pt;}
.yc6{bottom:819.040133pt;}
.y1f6{bottom:819.520000pt;}
.y2d1{bottom:822.560133pt;}
.yeb{bottom:824.320000pt;}
.y8f{bottom:824.320133pt;}
.y22c{bottom:824.480000pt;}
.y1af{bottom:824.640000pt;}
.y1b2{bottom:824.800000pt;}
.y334{bottom:825.440000pt;}
.y13e{bottom:825.600000pt;}
.y30e{bottom:830.080000pt;}
.y1f2{bottom:831.360000pt;}
.y51{bottom:832.480133pt;}
.y154{bottom:834.080000pt;}
.y114{bottom:834.240000pt;}
.y25e{bottom:837.760000pt;}
.y1f5{bottom:838.080000pt;}
.y12b{bottom:838.880000pt;}
.y320{bottom:840.160000pt;}
.y274{bottom:840.320000pt;}
.ya2{bottom:840.320133pt;}
.y2d0{bottom:841.760133pt;}
.y100{bottom:842.240000pt;}
.y1ae{bottom:843.200000pt;}
.y354{bottom:843.360000pt;}
.y2f1{bottom:844.960133pt;}
.y6a{bottom:848.640000pt;}
.y1b1{bottom:849.920000pt;}
.y18a{bottom:850.240000pt;}
.y13d{bottom:854.560000pt;}
.y30d{bottom:855.200000pt;}
.y1f1{bottom:856.480000pt;}
.y333{bottom:857.760000pt;}
.y80{bottom:858.240000pt;}
.y1f4{bottom:863.200000pt;}
.y2f0{bottom:864.320000pt;}
.y31f{bottom:864.480000pt;}
.y167{bottom:865.760000pt;}
.y6{bottom:866.080000pt;}
.y50{bottom:866.240000pt;}
.y153{bottom:867.840000pt;}
.y113{bottom:868.000000pt;}
.y1ad{bottom:868.320000pt;}
.y1b0{bottom:868.480000pt;}
.yc5{bottom:868.800000pt;}
.y25d{bottom:871.520000pt;}
.y12a{bottom:872.640000pt;}
.ya1{bottom:874.240000pt;}
.y1f0{bottom:875.040000pt;}
.yff{bottom:876.000000pt;}
.y2cf{bottom:877.120000pt;}
.y1f3{bottom:881.760000pt;}
.y332{bottom:882.080000pt;}
.y69{bottom:882.560000pt;}
.y2ef{bottom:883.520000pt;}
.y179{bottom:885.600000pt;}
.y7f{bottom:892.000000pt;}
.y1ac{bottom:893.440000pt;}
.y166{bottom:894.720000pt;}
.y2ce{bottom:896.480000pt;}
.y4f{bottom:900.000000pt;}
.y1ef{bottom:900.160000pt;}
.y1b5{bottom:900.320000pt;}
.y13c{bottom:901.600000pt;}
.yc4{bottom:902.720000pt;}
.y32{bottom:904.480000pt;}
.y25c{bottom:905.280000pt;}
.y129{bottom:906.400000pt;}
.y1f9{bottom:906.880000pt;}
.ya0{bottom:908.000000pt;}
.yfe{bottom:909.760000pt;}
.y2cd{bottom:915.840000pt;}
.y112{bottom:917.760000pt;}
.y2ee{bottom:918.880000pt;}
.y353{bottom:920.000000pt;}
.y30c{bottom:920.480000pt;}
.yb5{bottom:921.120000pt;}
.y31{bottom:922.240000pt;}
.y5{bottom:923.200000pt;}
.y1ab{bottom:925.440000pt;}
.y241{bottom:925.760000pt;}
.y22b{bottom:925.920000pt;}
.y344{bottom:926.880000pt;}
.y1ee{bottom:932.000000pt;}
.y68{bottom:932.320000pt;}
.y4e{bottom:933.760000pt;}
.y31e{bottom:934.400000pt;}
.y2cc{bottom:935.040000pt;}
.y13b{bottom:935.360000pt;}
.yc3{bottom:936.480000pt;}
.y2ed{bottom:938.240000pt;}
.y7e{bottom:941.760000pt;}
.y1aa{bottom:944.000000pt;}
.y1ed{bottom:950.560000pt;}
.y331{bottom:951.200000pt;}
.y128{bottom:954.080000pt;}
.y2ec{bottom:957.440000pt;}
.y343{bottom:959.200000pt;}
.yfd{bottom:959.520000pt;}
.y30{bottom:960.320000pt;}
.y4{bottom:965.120000pt;}
.y4d{bottom:967.680000pt;}
.y1a9{bottom:969.120000pt;}
.y67{bottom:971.520000pt;}
.y7d{bottom:975.520000pt;}
.y22a{bottom:975.680000pt;}
.y2f{bottom:978.080000pt;}
.yb4{bottom:981.120000pt;}
.y127{bottom:983.200000pt;}
.y330{bottom:983.520000pt;}
.y2eb{bottom:992.800000pt;}
.y1a8{bottom:994.240000pt;}
.y2e{bottom:995.680000pt;}
.y3{bottom:1006.880000pt;}
.y31d{bottom:1007.840000pt;}
.y165{bottom:1009.280000pt;}
.y7c{bottom:1009.440000pt;}
.y126{bottom:1012.160000pt;}
.y1a7{bottom:1012.800000pt;}
.y2d{bottom:1013.440000pt;}
.y2{bottom:1043.520000pt;}
.y31c{bottom:1060.640000pt;}
.y1{bottom:1061.440000pt;}
.h10{height:18.560000pt;}
.hc{height:35.091250pt;}
.h2{height:39.936463pt;}
.h8{height:43.474523pt;}
.h6{height:48.188273pt;}
.h12{height:48.188807pt;}
.h7{height:50.037205pt;}
.h11{height:50.283272pt;}
.hf{height:50.283273pt;}
.ha{height:52.378273pt;}
.h13{height:52.378807pt;}
.h5{height:55.462518pt;}
.hb{height:56.211250pt;}
.he{height:57.873768pt;}
.h14{height:60.285018pt;}
.h15{height:61.016617pt;}
.h4{height:61.282023pt;}
.hd{height:61.282557pt;}
.h17{height:65.107518pt;}
.h16{height:68.121580pt;}
.h9{height:70.532830pt;}
.h3{height:80.177830pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:188.480000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.400000pt;}
.x44{left:96.000000pt;}
.x15{left:101.600000pt;}
.x12{left:104.480000pt;}
.x1d{left:106.400000pt;}
.x4{left:114.560000pt;}
.x48{left:115.680000pt;}
.xb{left:121.440000pt;}
.xc{left:124.480000pt;}
.x13{left:127.040000pt;}
.x36{left:131.360000pt;}
.x3b{left:132.640000pt;}
.x9{left:142.400000pt;}
.x24{left:154.720000pt;}
.x2b{left:156.160000pt;}
.x8{left:159.040000pt;}
.x39{left:167.040000pt;}
.x10{left:171.040000pt;}
.xd{left:178.400000pt;}
.x22{left:187.680000pt;}
.x4b{left:188.800000pt;}
.x23{left:190.720000pt;}
.x25{left:193.920000pt;}
.xf{left:208.480000pt;}
.x4a{left:212.160000pt;}
.x28{left:215.200000pt;}
.x47{left:226.880000pt;}
.x3{left:235.680000pt;}
.x27{left:240.320000pt;}
.x11{left:248.960000pt;}
.x5{left:252.000000pt;}
.x3d{left:258.400000pt;}
.x16{left:262.080000pt;}
.x35{left:268.160000pt;}
.x41{left:271.680000pt;}
.x29{left:284.160000pt;}
.x7{left:286.400000pt;}
.x3e{left:287.520000pt;}
.x2c{left:296.320000pt;}
.x14{left:299.200000pt;}
.x26{left:307.840000pt;}
.x49{left:313.600000pt;}
.x3c{left:316.640000pt;}
.x1e{left:321.280000pt;}
.x6{left:323.040000pt;}
.x40{left:329.760000pt;}
.x3f{left:344.480000pt;}
.xe{left:357.440000pt;}
.x42{left:373.120000pt;}
.x3a{left:375.680000pt;}
.x38{left:378.880000pt;}
.x2a{left:381.600000pt;}
.x1{left:385.600000pt;}
.x43{left:393.120000pt;}
.x4c{left:401.120000pt;}
.x37{left:404.480000pt;}
.xa{left:416.640000pt;}
.x2e{left:427.200000pt;}
.x33{left:448.160000pt;}
.x17{left:457.600000pt;}
.x46{left:460.640000pt;}
.x34{left:470.880000pt;}
.x4d{left:473.280000pt;}
.x30{left:498.560000pt;}
.x2f{left:535.200000pt;}
.x31{left:537.120000pt;}
.x32{left:548.320000pt;}
.x2d{left:557.920000pt;}
.x4e{left:614.080000pt;}
.x1f{left:623.520000pt;}
.x1c{left:630.080000pt;}
.x21{left:631.040000pt;}
.x1a{left:635.200000pt;}
.x19{left:637.920000pt;}
.x18{left:640.160000pt;}
.x20{left:641.760000pt;}
.x1b{left:643.360000pt;}
.x45{left:670.560000pt;}
}




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