
    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_0aca74834536fbc70f12a38a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_fb3fcf1f66c381699605b36f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.008301;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_ff4c848eac6af25e6e63c231.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006348;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_230af33e4f3e6eb475869f3e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090000;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_1f05cead48d3951ea61f2647.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.004000;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_1049e1dbd1696cfa3fdfbd19.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.027000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b93d1203b92d5f7108a73604.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7c2ad78d440e76639af51092.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005000;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:ffb;src:url('chunks/assets/font_44ad588df926a2a4b8493b61.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003000;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:ffc;src:url('chunks/assets/font_518bb5e763f75947e7f0f0dd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.723997px;}
.ls2{letter-spacing:-0.917989px;}
.ls8{letter-spacing:-0.797977px;}
.ls1{letter-spacing:-0.764991px;}
.ls6{letter-spacing:-0.755978px;}
.ls9{letter-spacing:-0.629982px;}
.ls4{letter-spacing:-0.509994px;}
.ls7{letter-spacing:-0.419988px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.509994px;}
.ls5{letter-spacing:1.019988px;}
.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;}
}
.ws1{word-spacing:-13.986000px;}
.ws7{word-spacing:-12.749850px;}
.ws10{word-spacing:-12.698851px;}
.ws2{word-spacing:-11.999850px;}
.ws5{word-spacing:-11.984859px;}
.ws6{word-spacing:-11.831861px;}
.ws3{word-spacing:-10.667695px;}
.ws18{word-spacing:-10.499700px;}
.ws19{word-spacing:-10.289706px;}
.ws1b{word-spacing:-10.079712px;}
.ws1e{word-spacing:-9.869718px;}
.ws1a{word-spacing:-9.743722px;}
.ws1c{word-spacing:-9.701723px;}
.ws1d{word-spacing:-9.491729px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:4.438800px;}
.ws8{word-spacing:4.444200px;}
.ws13{word-spacing:4.600800px;}
.ws17{word-spacing:145.690057px;}
.ws16{word-spacing:158.595885px;}
.ws15{word-spacing:193.983414px;}
.ws11{word-spacing:206.700568px;}
.wse{word-spacing:302.503967px;}
.wsf{word-spacing:302.845962px;}
.ws14{word-spacing:310.531860px;}
.wsd{word-spacing:313.348822px;}
.ws9{word-spacing:412.617498px;}
.ws12{word-spacing:424.960834px;}
.wsb{word-spacing:449.391008px;}
.wsc{word-spacing:475.243163px;}
.wsa{word-spacing:475.558159px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._2{margin-left:-1.020000px;}
._a{width:1.452000px;}
._9{width:3.090000px;}
._8{width:4.098600px;}
._5{width:5.306356px;}
._b{width:6.788237px;}
._6{width:7.904953px;}
._7{width:8.924947px;}
._13{width:10.026482px;}
._15{width:11.046470px;}
._12{width:12.051158px;}
._10{width:13.066046px;}
._c{width:14.080934px;}
._d{width:15.090722px;}
._11{width:16.115810px;}
._f{width:17.543794px;}
._e{width:18.553582px;}
._14{width:19.925466px;}
._16{width:21.256550px;}
._49{width:82.073334px;}
._45{width:90.472752px;}
._44{width:102.132097px;}
._2d{width:207.598158px;}
._2e{width:214.361242px;}
._39{width:219.012387px;}
._27{width:231.104877px;}
._31{width:236.657616px;}
._3a{width:243.404796px;}
._2c{width:252.610228px;}
._18{width:260.586534px;}
._47{width:265.113965px;}
._41{width:278.037793px;}
._17{width:279.731709px;}
._48{width:287.748663px;}
._42{width:290.943621px;}
._30{width:292.782455px;}
._46{width:296.073552px;}
._3c{width:308.941798px;}
._38{width:314.798896px;}
._2f{width:318.424954px;}
._40{width:323.581686px;}
._33{width:340.609458px;}
._3f{width:353.672784px;}
._3d{width:436.210684px;}
._32{width:451.226984px;}
._35{width:453.836949px;}
._34{width:458.111892px;}
._3{width:464.508000px;}
._36{width:478.181624px;}
._1a{width:486.493013px;}
._1d{width:491.321449px;}
._37{width:499.105628px;}
._29{width:512.660164px;}
._43{width:524.859502px;}
._3b{width:533.184391px;}
._28{width:579.828573px;}
._24{width:616.851775px;}
._21{width:625.146623px;}
._1e{width:627.981586px;}
._3e{width:630.648591px;}
._22{width:661.176184px;}
._1f{width:665.046133px;}
._1b{width:668.196091px;}
._1c{width:689.390808px;}
._20{width:690.560792px;}
._19{width:695.195731px;}
._26{width:702.710630px;}
._2b{width:716.390448px;}
._23{width:726.965307px;}
._25{width:735.785189px;}
._2a{width:742.220104px;}
._4{width:801.240000px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(163,92,81);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:27.996600px;}
.fsb{font-size:35.995200px;}
.fsf{font-size:39.000600px;}
.fsd{font-size:41.998800px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:44.999400px;}
.fsc{font-size:47.999400px;}
.fs7{font-size:48.000000px;}
.fs10{font-size:50.999400px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:71.999400px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.000000px;}
.fsa{font-size:101.999400px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y68{bottom:42.179400px;}
.ya8{bottom:42.187021px;}
.y5{bottom:66.525004px;}
.y23{bottom:67.597501px;}
.y21a{bottom:76.793214px;}
.yd7{bottom:77.049574px;}
.y1eb{bottom:77.813785px;}
.y79{bottom:78.151904px;}
.y15f{bottom:82.573200px;}
.y15a{bottom:82.574192px;}
.y13e{bottom:83.849360px;}
.y159{bottom:84.018750px;}
.y22{bottom:84.097501px;}
.y261{bottom:87.601202px;}
.y219{bottom:90.229680px;}
.y78{bottom:90.907050px;}
.y1ea{bottom:91.335299px;}
.y101{bottom:93.545105px;}
.y19b{bottom:94.138936px;}
.yd6{bottom:95.077862px;}
.y187{bottom:95.078422px;}
.y4{bottom:97.125005px;}
.y260{bottom:101.121665px;}
.y13d{bottom:101.877648px;}
.y218{bottom:103.750144px;}
.y1e9{bottom:104.770715px;}
.y129{bottom:111.572408px;}
.y100{bottom:111.573393px;}
.y19a{bottom:112.081800px;}
.yd5{bottom:113.106150px;}
.y186{bottom:113.106710px;}
.y25f{bottom:114.643179px;}
.ya7{bottom:115.913236px;}
.y217{bottom:117.271658px;}
.y1e8{bottom:118.292229px;}
.y13c{bottom:119.905936px;}
.y25e{bottom:128.079645px;}
.y128{bottom:129.600696px;}
.yff{bottom:129.601681px;}
.y199{bottom:130.110150px;}
.y216{bottom:130.793171px;}
.yd4{bottom:131.049014px;}
.y185{bottom:131.049574px;}
.y1e7{bottom:131.813742px;}
.ya6{bottom:133.941524px;}
.y65{bottom:135.725016px;}
.y276{bottom:135.810070px;}
.y13b{bottom:137.848800px;}
.y21{bottom:139.264499px;}
.y25d{bottom:141.600109px;}
.y215{bottom:144.228588px;}
.y127{bottom:147.543560px;}
.yfe{bottom:147.544545px;}
.yd3{bottom:149.077301px;}
.y184{bottom:149.077862px;}
.y64{bottom:151.456819px;}
.ya5{bottom:151.884388px;}
.y25c{bottom:155.121622px;}
.y13a{bottom:155.877000px;}
.y275{bottom:156.814173px;}
.y214{bottom:157.750101px;}
.y1e6{bottom:158.770672px;}
.y126{bottom:165.571848px;}
.yfd{bottom:165.572833px;}
.y198{bottom:166.083605px;}
.y183{bottom:167.106150px;}
.y63{bottom:167.189823px;}
.y25b{bottom:168.643136px;}
.ya4{bottom:169.912676px;}
.y213{bottom:171.271615px;}
.y1e5{bottom:172.292186px;}
.y274{bottom:177.818276px;}
.y25a{bottom:182.078552px;}
.y62{bottom:182.921626px;}
.y125{bottom:183.600136px;}
.y197{bottom:184.111893px;}
.y212{bottom:184.792079px;}
.yd2{bottom:185.048453px;}
.y182{bottom:185.049014px;}
.y1e4{bottom:185.812649px;}
.ya3{bottom:187.940964px;}
.y160{bottom:189.552524px;}
.y139{bottom:191.851301px;}
.y259{bottom:195.600066px;}
.y18{bottom:196.933500px;}
.y211{bottom:198.228545px;}
.y61{bottom:198.738628px;}
.y273{bottom:198.823654px;}
.y1e3{bottom:199.334163px;}
.y124{bottom:201.543000px;}
.yfc{bottom:201.545259px;}
.y196{bottom:202.140181px;}
.yd1{bottom:203.076741px;}
.y181{bottom:203.077301px;}
.ya2{bottom:205.885103px;}
.y258{bottom:209.120530px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y138{bottom:209.879589px;}
.y210{bottom:211.749008px;}
.y1e2{bottom:212.769579px;}
.y60{bottom:214.471632px;}
.y123{bottom:219.571500px;}
.yfb{bottom:219.572272px;}
.y272{bottom:219.827757px;}
.y195{bottom:220.083045px;}
.yd0{bottom:221.105029px;}
.y180{bottom:221.105589px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y257{bottom:222.642043px;}
.ya1{bottom:223.912116px;}
.y20f{bottom:225.270522px;}
.y1e1{bottom:226.291093px;}
.y137{bottom:227.907877px;}
.y5f{bottom:230.203435px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y256{bottom:236.078509px;}
.yfa{bottom:237.600560px;}
.y194{bottom:238.111333px;}
.y20e{bottom:238.792036px;}
.ycf{bottom:239.047893px;}
.y17f{bottom:239.048453px;}
.y1e0{bottom:239.812607px;}
.y271{bottom:240.747711px;}
.ya0{bottom:241.940404px;}
.y136{bottom:245.850741px;}
.y5e{bottom:245.935238px;}
.y255{bottom:249.598973px;}
.y20d{bottom:252.227452px;}
.yf9{bottom:255.544699px;}
.y122{bottom:255.548603px;}
.y193{bottom:256.139621px;}
.yce{bottom:257.076181px;}
.y9f{bottom:259.884543px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y270{bottom:261.751813px;}
.y5d{bottom:261.753441px;}
.y254{bottom:263.120487px;}
.y135{bottom:263.879029px;}
.y20c{bottom:265.748965px;}
.y1df{bottom:266.769536px;}
.y18c{bottom:268.553470px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yf8{bottom:273.572987px;}
.y121{bottom:273.575616px;}
.y192{bottom:274.083759px;}
.ycd{bottom:275.104469px;}
.y17e{bottom:275.105029px;}
.y253{bottom:276.642000px;}
.y5c{bottom:277.485244px;}
.y9e{bottom:277.912831px;}
.y20b{bottom:279.270480px;}
.y1de{bottom:280.290000px;}
.y134{bottom:281.907317px;}
.y26f{bottom:282.755916px;}
.y1dd{bottom:284.967000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y252{bottom:290.077416px;}
.yf7{bottom:291.600000px;}
.y120{bottom:291.603904px;}
.y20a{bottom:292.789893px;}
.ycc{bottom:293.047333px;}
.y17d{bottom:293.047893px;}
.y5b{bottom:293.217047px;}
.y1dc{bottom:293.812607px;}
.y9d{bottom:295.939843px;}
.y133{bottom:299.850181px;}
.y251{bottom:303.598930px;}
.y26e{bottom:303.761294px;}
.y209{bottom:306.226359px;}
.y1db{bottom:307.333070px;}
.y5a{bottom:308.950051px;}
.yf6{bottom:309.543000px;}
.y11f{bottom:309.548043px;}
.y191{bottom:310.139060px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.ycb{bottom:311.075621px;}
.y17c{bottom:311.076181px;}
.y9c{bottom:313.883982px;}
.y15b{bottom:315.493552px;}
.y250{bottom:317.119394px;}
.y132{bottom:317.878469px;}
.y208{bottom:319.746823px;}
.y1da{bottom:320.769536px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y59{bottom:324.681854px;}
.y26d{bottom:324.765397px;}
.y11e{bottom:327.576331px;}
.y190{bottom:328.083199px;}
.y17b{bottom:329.104469px;}
.y24f{bottom:330.640907px;}
.y207{bottom:333.268336px;}
.y1d9{bottom:334.290000px;}
.y131{bottom:335.906757px;}
.y1d8{bottom:338.967000px;}
.y58{bottom:340.498856px;}
.y24e{bottom:344.077374px;}
.y11d{bottom:345.603343px;}
.yf5{bottom:345.606542px;}
.y26c{bottom:345.769500px;}
.y18f{bottom:346.111487px;}
.y206{bottom:346.789850px;}
.yca{bottom:347.046772px;}
.y17a{bottom:347.047333px;}
.y1d7{bottom:347.812070px;}
.yf{bottom:348.133500px;}
.y9b{bottom:349.940558px;}
.y57{bottom:356.230660px;}
.y24d{bottom:357.597837px;}
.y205{bottom:360.225266px;}
.y1d6{bottom:361.333584px;}
.y11c{bottom:363.547482px;}
.y18e{bottom:364.138500px;}
.yc9{bottom:365.075060px;}
.y179{bottom:365.075621px;}
.y9a{bottom:367.883422px;}
.y24c{bottom:371.119351px;}
.y130{bottom:371.877908px;}
.y56{bottom:371.963663px;}
.y204{bottom:373.746780px;}
.y1d5{bottom:374.769000px;}
.y1d4{bottom:379.446000px;}
.y11b{bottom:381.575770px;}
.yf4{bottom:381.577694px;}
.y18d{bottom:382.081500px;}
.yc8{bottom:383.103348px;}
.y178{bottom:383.103908px;}
.y24b{bottom:384.640865px;}
.y26b{bottom:384.974206px;}
.y99{bottom:385.911710px;}
.ye{bottom:386.785499px;}
.y203{bottom:387.268293px;}
.y55{bottom:387.695466px;}
.y1d3{bottom:388.290023px;}
.y12f{bottom:389.906196px;}
.y24a{bottom:398.076281px;}
.y188{bottom:399.427089px;}
.y11a{bottom:399.604058px;}
.y202{bottom:400.788757px;}
.y177{bottom:401.046772px;}
.yc7{bottom:401.047487px;}
.y1d2{bottom:401.811536px;}
.y26a{bottom:402.917143px;}
.y54{bottom:403.428470px;}
.y98{bottom:403.939998px;}
.y15c{bottom:407.674967px;}
.y12e{bottom:407.849060px;}
.yd{bottom:408.044999px;}
.y35{bottom:408.976501px;}
.y249{bottom:411.597794px;}
.y201{bottom:414.225223px;}
.y1d1{bottom:415.332000px;}
.y269{bottom:416.438657px;}
.yc6{bottom:419.074500px;}
.y176{bottom:419.075060px;}
.y53{bottom:419.245472px;}
.y1d0{bottom:420.009000px;}
.y97{bottom:421.882862px;}
.y248{bottom:425.118258px;}
.y12d{bottom:425.877348px;}
.y200{bottom:427.745687px;}
.y1cf{bottom:428.769000px;}
.y268{bottom:429.960171px;}
.y52{bottom:434.977275px;}
.y119{bottom:435.575210px;}
.yc5{bottom:437.103150px;}
.y175{bottom:437.103348px;}
.yf3{bottom:437.107116px;}
.y247{bottom:438.639772px;}
.y96{bottom:439.911150px;}
.y1ff{bottom:441.267201px;}
.y1cd{bottom:442.290536px;}
.y267{bottom:443.395587px;}
.y12c{bottom:443.905636px;}
.y1ce{bottom:446.967000px;}
.y51{bottom:450.709079px;}
.y246{bottom:452.076238px;}
.y118{bottom:453.603498px;}
.y1fe{bottom:454.788714px;}
.y174{bottom:455.047487px;}
.yf2{bottom:455.051255px;}
.y1cc{bottom:455.811000px;}
.y95{bottom:457.939438px;}
.y266{bottom:461.423572px;}
.y12b{bottom:461.848500px;}
.y245{bottom:465.596701px;}
.y50{bottom:466.442082px;}
.y1fd{bottom:468.224130px;}
.y1ca{bottom:469.333070px;}
.y117{bottom:471.546362px;}
.y173{bottom:473.074500px;}
.yc4{bottom:473.075250px;}
.yf1{bottom:473.079543px;}
.y34{bottom:473.326501px;}
.y1cb{bottom:474.009000px;}
.y265{bottom:474.945085px;}
.y94{bottom:475.882301px;}
.y244{bottom:479.118215px;}
.y12a{bottom:479.877000px;}
.y1fc{bottom:481.745644px;}
.y4f{bottom:482.173885px;}
.y1c9{bottom:482.769536px;}
.y264{bottom:488.466599px;}
.y116{bottom:489.574650px;}
.y172{bottom:491.101500px;}
.yf0{bottom:491.107831px;}
.y243{bottom:492.639729px;}
.y93{bottom:493.910589px;}
.y1fb{bottom:495.267158px;}
.y1c8{bottom:496.290000px;}
.y4e{bottom:497.990888px;}
.y263{bottom:501.902015px;}
.yc{bottom:502.864502px;}
.y242{bottom:506.075145px;}
.y115{bottom:507.602938px;}
.y1fa{bottom:508.787621px;}
.yc3{bottom:509.046000px;}
.yef{bottom:509.050694px;}
.y1c6{bottom:509.811536px;}
.y92{bottom:511.938877px;}
.y4d{bottom:513.723891px;}
.y189{bottom:514.058441px;}
.y1c7{bottom:514.488000px;}
.y18a{bottom:519.415928px;}
.y241{bottom:519.596659px;}
.y262{bottom:519.930000px;}
.yb{bottom:520.864502px;}
.y1f9{bottom:522.224087px;}
.y1c5{bottom:523.332000px;}
.y114{bottom:525.545801px;}
.y171{bottom:527.074848px;}
.yee{bottom:527.078982px;}
.y4c{bottom:529.455694px;}
.y91{bottom:529.881741px;}
.y158{bottom:533.026500px;}
.y240{bottom:533.117122px;}
.y1f8{bottom:535.744551px;}
.y1c3{bottom:536.769023px;}
.y33{bottom:537.676501px;}
.ya{bottom:538.864499px;}
.y1c4{bottom:541.446000px;}
.y113{bottom:543.574089px;}
.y170{bottom:545.103136px;}
.yed{bottom:545.107270px;}
.yc2{bottom:545.108043px;}
.y4b{bottom:545.187498px;}
.y23f{bottom:546.638636px;}
.y90{bottom:547.910029px;}
.y1f7{bottom:549.266065px;}
.y1c2{bottom:550.290536px;}
.y157{bottom:552.756995px;}
.y9{bottom:556.864499px;}
.y23e{bottom:560.075102px;}
.y4a{bottom:561.004500px;}
.y1f6{bottom:562.787578px;}
.y16f{bottom:563.046000px;}
.yc1{bottom:563.050907px;}
.y1c1{bottom:563.811000px;}
.y8f{bottom:565.938317px;}
.y156{bottom:572.655729px;}
.y23d{bottom:573.595566px;}
.y32{bottom:574.957501px;}
.y1f5{bottom:576.222995px;}
.y1bf{bottom:577.333070px;}
.y112{bottom:579.545241px;}
.y49{bottom:580.479000px;}
.y16e{bottom:581.074500px;}
.yec{bottom:581.078422px;}
.yc0{bottom:581.079194px;}
.y1c0{bottom:582.009000px;}
.y8e{bottom:583.881181px;}
.y23c{bottom:587.117079px;}
.y1f4{bottom:589.744508px;}
.y31{bottom:589.957501px;}
.y1be{bottom:590.769536px;}
.y155{bottom:592.639963px;}
.y111{bottom:597.573529px;}
.yeb{bottom:599.106710px;}
.ybf{bottom:599.107482px;}
.y23b{bottom:600.638593px;}
.y8d{bottom:601.909469px;}
.y1f3{bottom:603.266022px;}
.y1bd{bottom:604.290000px;}
.y30{bottom:604.957500px;}
.y154{bottom:612.539823px;}
.y23a{bottom:614.074009px;}
.y110{bottom:615.601817px;}
.y1f2{bottom:616.786486px;}
.y16d{bottom:617.046560px;}
.yea{bottom:617.049574px;}
.ybe{bottom:617.050346px;}
.y1bb{bottom:617.812234px;}
.y1bc{bottom:622.488000px;}
.y239{bottom:627.595523px;}
.y1f1{bottom:630.222952px;}
.y1ba{bottom:631.757935px;}
.y153{bottom:632.524056px;}
.y10f{bottom:633.544681px;}
.y16c{bottom:635.074848px;}
.ye9{bottom:635.077862px;}
.ybd{bottom:635.078634px;}
.y8c{bottom:637.880621px;}
.y238{bottom:641.115987px;}
.y1f0{bottom:643.743415px;}
.y48{bottom:644.515500px;}
.y8{bottom:645.510000px;}
.y10e{bottom:651.572969px;}
.y152{bottom:652.422791px;}
.y16b{bottom:653.103136px;}
.ye8{bottom:653.106150px;}
.ybc{bottom:653.106922px;}
.y237{bottom:654.637500px;}
.y8b{bottom:655.908908px;}
.y1ef{bottom:657.264929px;}
.y1b9{bottom:658.714865px;}
.y47{bottom:665.520000px;}
.y7{bottom:666.771000px;}
.y236{bottom:668.073966px;}
.y18b{bottom:668.659297px;}
.y10d{bottom:669.601257px;}
.y1ee{bottom:670.786443px;}
.y16a{bottom:671.046000px;}
.ybb{bottom:671.049786px;}
.y1b8{bottom:671.470951px;}
.y151{bottom:672.322651px;}
.y8a{bottom:673.937196px;}
.y1ae{bottom:675.468712px;}
.y235{bottom:681.594430px;}
.y1ed{bottom:684.221859px;}
.y1b7{bottom:684.227036px;}
.y2f{bottom:686.317498px;}
.y46{bottom:686.524500px;}
.y10c{bottom:687.544121px;}
.y169{bottom:689.074500px;}
.ye7{bottom:689.077301px;}
.yba{bottom:689.078074px;}
.y89{bottom:691.880060px;}
.y1ad{bottom:691.966106px;}
.y150{bottom:692.306884px;}
.y234{bottom:695.115944px;}
.y1ec{bottom:697.743372px;}
.y1b6{bottom:697.747500px;}
.ye6{bottom:707.105589px;}
.yb9{bottom:707.106362px;}
.y45{bottom:707.529000px;}
.y1ac{bottom:708.463500px;}
.y233{bottom:708.637457px;}
.y88{bottom:709.908348px;}
.y14f{bottom:712.205619px;}
.y2e{bottom:716.317498px;}
.y232{bottom:722.072873px;}
.y77{bottom:722.156636px;}
.y10b{bottom:723.600696px;}
.y1b5{bottom:725.047121px;}
.y168{bottom:725.048259px;}
.ye5{bottom:725.048453px;}
.y6{bottom:726.298500px;}
.y87{bottom:727.936636px;}
.y44{bottom:728.533500px;}
.y14e{bottom:732.105478px;}
.y2d{bottom:734.317498px;}
.y76{bottom:734.912721px;}
.y231{bottom:735.594387px;}
.y10a{bottom:741.543560px;}
.y167{bottom:743.075272px;}
.y1b4{bottom:743.075408px;}
.ye4{bottom:743.076741px;}
.yb8{bottom:743.077514px;}
.y86{bottom:745.879500px;}
.y230{bottom:749.114851px;}
.y43{bottom:749.538000px;}
.y14d{bottom:752.089712px;}
.y2c{bottom:752.317498px;}
.y3{bottom:752.599495px;}
.y109{bottom:759.571848px;}
.y75{bottom:760.423842px;}
.y166{bottom:761.103560px;}
.y1b3{bottom:761.103696px;}
.ye3{bottom:761.105029px;}
.yb7{bottom:761.105801px;}
.y22f{bottom:762.636364px;}
.y85{bottom:763.909350px;}
.y1ab{bottom:769.182128px;}
.y2b{bottom:770.317498px;}
.y42{bottom:770.542500px;}
.y14c{bottom:771.988447px;}
.y74{bottom:773.179928px;}
.y22e{bottom:776.072830px;}
.y108{bottom:777.600136px;}
.y1b2{bottom:779.046560px;}
.y165{bottom:779.047699px;}
.ye2{bottom:779.047893px;}
.yb6{bottom:779.048665px;}
.y1aa{bottom:782.703323px;}
.y14b{bottom:785.509641px;}
.y73{bottom:785.936013px;}
.y22d{bottom:789.593294px;}
.y41{bottom:791.547000px;}
.y107{bottom:795.543000px;}
.y1a9{bottom:796.224518px;}
.y1b1{bottom:797.074848px;}
.y164{bottom:797.075987px;}
.ye1{bottom:797.076181px;}
.yb5{bottom:797.076953px;}
.y72{bottom:798.692099px;}
.y22c{bottom:803.114808px;}
.y14a{bottom:805.408376px;}
.y84{bottom:807.534600px;}
.y1a8{bottom:809.660214px;}
.y40{bottom:812.551500px;}
.y106{bottom:813.572250px;}
.y163{bottom:815.103000px;}
.y1b0{bottom:815.103136px;}
.yb4{bottom:815.105241px;}
.y22b{bottom:816.636322px;}
.y2a{bottom:822.789002px;}
.y1a7{bottom:823.181408px;}
.y71{bottom:824.203220px;}
.y149{bottom:825.392610px;}
.y83{bottom:825.562500px;}
.y22a{bottom:830.071738px;}
.y162{bottom:833.046000px;}
.ye0{bottom:833.047333px;}
.yb3{bottom:833.048105px;}
.y3f{bottom:833.556000px;}
.y70{bottom:836.959305px;}
.y1a6{bottom:843.081268px;}
.y229{bottom:843.593251px;}
.y29{bottom:843.789002px;}
.y148{bottom:845.292469px;}
.y15d{bottom:849.195898px;}
.y105{bottom:849.543000px;}
.y6f{bottom:849.714341px;}
.y1af{bottom:851.074500px;}
.ydf{bottom:851.075621px;}
.yb2{bottom:851.076393px;}
.y3e{bottom:854.560500px;}
.y82{bottom:856.261500px;}
.y228{bottom:857.113715px;}
.y6e{bottom:862.470426px;}
.y1a5{bottom:863.065502px;}
.y147{bottom:865.191204px;}
.yde{bottom:869.103908px;}
.yb1{bottom:869.104681px;}
.y227{bottom:870.635229px;}
.y81{bottom:872.758500px;}
.y6d{bottom:875.141464px;}
.y1a4{bottom:876.586696px;}
.y2{bottom:879.369000px;}
.y226{bottom:884.071695px;}
.y146{bottom:885.175437px;}
.y104{bottom:885.602987px;}
.ydd{bottom:887.046772px;}
.y161{bottom:887.047545px;}
.y6c{bottom:887.896500px;}
.y3c{bottom:888.321000px;}
.y1a3{bottom:890.022392px;}
.y6b{bottom:892.573500px;}
.y3d{bottom:894.274500px;}
.y225{bottom:897.592158px;}
.y1a2{bottom:903.543587px;}
.y80{bottom:903.544500px;}
.y103{bottom:903.545851px;}
.y3a{bottom:904.818000px;}
.ydc{bottom:905.075060px;}
.y145{bottom:905.075297px;}
.yb0{bottom:905.075833px;}
.y28{bottom:907.453504px;}
.y3b{bottom:910.771500px;}
.y224{bottom:911.113672px;}
.y6a{bottom:913.228212px;}
.ydb{bottom:923.103348px;}
.yaf{bottom:923.104121px;}
.y1a1{bottom:923.443446px;}
.y7f{bottom:924.549000px;}
.y223{bottom:924.635186px;}
.y144{bottom:925.059531px;}
.y69{bottom:928.194485px;}
.y39{bottom:934.074353px;}
.y1a0{bottom:936.964641px;}
.y222{bottom:938.070602px;}
.y27{bottom:938.953498px;}
.y102{bottom:939.602426px;}
.yda{bottom:941.047487px;}
.yae{bottom:941.048259px;}
.y143{bottom:944.958265px;}
.y7e{bottom:945.553500px;}
.y19f{bottom:950.485836px;}
.y221{bottom:951.592116px;}
.yd9{bottom:959.074500px;}
.yad{bottom:959.075272px;}
.y38{bottom:964.092776px;}
.y142{bottom:964.857000px;}
.y220{bottom:965.112579px;}
.y7d{bottom:966.558000px;}
.y1{bottom:966.726000px;}
.y19e{bottom:970.384571px;}
.y26{bottom:970.453498px;}
.y15e{bottom:975.138916px;}
.yd8{bottom:977.103000px;}
.yac{bottom:977.103560px;}
.y21f{bottom:978.634093px;}
.y19d{bottom:983.905765px;}
.y141{bottom:984.842033px;}
.y7c{bottom:987.562500px;}
.y21e{bottom:992.070559px;}
.y37{bottom:994.024500px;}
.yab{bottom:995.047699px;}
.y140{bottom:1001.339064px;}
.y19c{bottom:1003.804500px;}
.y21d{bottom:1005.591023px;}
.y7b{bottom:1008.567000px;}
.yaa{bottom:1013.075987px;}
.y21c{bottom:1019.112536px;}
.y13f{bottom:1023.789000px;}
.y36{bottom:1028.551500px;}
.y7a{bottom:1029.486000px;}
.ya9{bottom:1031.103000px;}
.y21b{bottom:1032.633000px;}
.y25{bottom:1035.546001px;}
.y67{bottom:1112.825680px;}
.y66{bottom:1127.877000px;}
.y24{bottom:1165.122003px;}
.h1d{height:21.893341px;}
.h16{height:27.716304px;}
.h1e{height:30.498469px;}
.h7{height:32.130000px;}
.h24{height:32.339076px;}
.h1b{height:32.843062px;}
.h1c{height:34.313020px;}
.h23{height:35.189531px;}
.h25{height:36.764510px;}
.hc{height:36.773438px;}
.h19{height:36.959538px;}
.h1a{height:37.535531px;}
.h26{height:39.215510px;}
.h20{height:39.269538px;}
.h27{height:39.371537px;}
.ha{height:41.370117px;}
.h15{height:41.580000px;}
.h22{height:41.666510px;}
.h21{height:41.688000px;}
.h1f{height:44.118000px;}
.h6{height:45.900000px;}
.hf{height:45.966797px;}
.h18{height:46.200000px;}
.h3{height:48.195000px;}
.h17{height:49.020000px;}
.h10{height:53.094114px;}
.h2{height:55.080000px;}
.he{height:55.160156px;}
.h13{height:58.823510px;}
.hb{height:68.950195px;}
.h5{height:78.030000px;}
.h14{height:78.539538px;}
.hd{height:82.740234px;}
.h4{height:119.055004px;}
.h12{height:1190.250000px;}
.h11{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w5{width:914.173500px;}
.w6{width:914.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x18{left:75.004650px;}
.x1a{left:78.151050px;}
.x42{left:84.018750px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x8{left:145.650000px;}
.x7{left:191.880000px;}
.x9{left:197.700000px;}
.x4{left:203.484001px;}
.x6{left:228.743990px;}
.xb{left:270.255000px;}
.x1e{left:276.124442px;}
.x1d{left:277.569000px;}
.x1b{left:282.754950px;}
.x22{left:286.158000px;}
.x40{left:291.003059px;}
.x5{left:293.590494px;}
.x1c{left:300.783238px;}
.x23{left:308.607936px;}
.x24{left:325.104967px;}
.x3d{left:332.079000px;}
.x3f{left:338.712000px;}
.x25{left:345.004500px;}
.x3e{left:352.402500px;}
.x14{left:359.206500px;}
.x3c{left:362.607000px;}
.x26{left:364.903235px;}
.x15{left:369.496500px;}
.x39{left:370.855737px;}
.x27{left:384.887468px;}
.xc{left:389.650500px;}
.xd{left:395.518500px;}
.x38{left:398.408663px;}
.x28{left:404.786203px;}
.x20{left:418.393103px;}
.x29{left:424.770436px;}
.x1f{left:441.947716px;}
.x2a{left:444.670296px;}
.x3{left:454.959000px;}
.x2b{left:458.191491px;}
.x2d{left:464.569031px;}
.x2c{left:471.627187px;}
.xe{left:484.213500px;}
.x3a{left:492.717487px;}
.xf{left:494.079000px;}
.x16{left:505.134000px;}
.x2e{left:524.351859px;}
.xa{left:527.100000px;}
.x2f{left:544.336092px;}
.x17{left:561.685500px;}
.x41{left:563.210931px;}
.x30{left:564.234827px;}
.x31{left:584.219060px;}
.x32{left:597.655881px;}
.x33{left:604.118920px;}
.x10{left:621.382500px;}
.x21{left:622.487882px;}
.x34{left:624.017655px;}
.x11{left:627.165000px;}
.x35{left:644.001888px;}
.x36{left:663.901748px;}
.x37{left:683.800483px;}
.x12{left:741.628500px;}
.x13{left:747.496500px;}
.x3b{left:770.108939px;}
.x19{left:776.325000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.421331pt;}
.ls2{letter-spacing:-0.815990pt;}
.ls8{letter-spacing:-0.709313pt;}
.ls1{letter-spacing:-0.679992pt;}
.ls6{letter-spacing:-0.671981pt;}
.ls9{letter-spacing:-0.559984pt;}
.ls4{letter-spacing:-0.453328pt;}
.ls7{letter-spacing:-0.373323pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.453328pt;}
.ls5{letter-spacing:0.906656pt;}
.ws1{word-spacing:-12.432000pt;}
.ws7{word-spacing:-11.333200pt;}
.ws10{word-spacing:-11.287867pt;}
.ws2{word-spacing:-10.666533pt;}
.ws5{word-spacing:-10.653208pt;}
.ws6{word-spacing:-10.517210pt;}
.ws3{word-spacing:-9.482396pt;}
.ws18{word-spacing:-9.333067pt;}
.ws19{word-spacing:-9.146405pt;}
.ws1b{word-spacing:-8.959744pt;}
.ws1e{word-spacing:-8.773083pt;}
.ws1a{word-spacing:-8.661086pt;}
.ws1c{word-spacing:-8.623754pt;}
.ws1d{word-spacing:-8.437092pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:3.945600pt;}
.ws8{word-spacing:3.950400pt;}
.ws13{word-spacing:4.089600pt;}
.ws17{word-spacing:129.502273pt;}
.ws16{word-spacing:140.974120pt;}
.ws15{word-spacing:172.429701pt;}
.ws11{word-spacing:183.733838pt;}
.wse{word-spacing:268.892415pt;}
.wsf{word-spacing:269.196411pt;}
.ws14{word-spacing:276.028320pt;}
.wsd{word-spacing:278.532286pt;}
.ws9{word-spacing:366.771110pt;}
.ws12{word-spacing:377.742963pt;}
.wsb{word-spacing:399.458674pt;}
.wsc{word-spacing:422.438367pt;}
.wsa{word-spacing:422.718364pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._2{margin-left:-0.906667pt;}
._a{width:1.290667pt;}
._9{width:2.746667pt;}
._8{width:3.643200pt;}
._5{width:4.716761pt;}
._b{width:6.033989pt;}
._6{width:7.026625pt;}
._7{width:7.933287pt;}
._13{width:8.912428pt;}
._15{width:9.819084pt;}
._12{width:10.712141pt;}
._10{width:11.614263pt;}
._c{width:12.516386pt;}
._d{width:13.413976pt;}
._11{width:14.325165pt;}
._f{width:15.594483pt;}
._e{width:16.492073pt;}
._14{width:17.711525pt;}
._16{width:18.894711pt;}
._49{width:72.954075pt;}
._45{width:80.420224pt;}
._44{width:90.784086pt;}
._2d{width:184.531696pt;}
._2e{width:190.543326pt;}
._39{width:194.677677pt;}
._27{width:205.426558pt;}
._31{width:210.362325pt;}
._3a{width:216.359818pt;}
._2c{width:224.542425pt;}
._18{width:231.632475pt;}
._47{width:235.656858pt;}
._41{width:247.144705pt;}
._17{width:248.650408pt;}
._48{width:255.776590pt;}
._42{width:258.616552pt;}
._30{width:260.251072pt;}
._46{width:263.176491pt;}
._3c{width:274.614932pt;}
._38{width:279.821241pt;}
._2f{width:283.044403pt;}
._40{width:287.628165pt;}
._33{width:302.763963pt;}
._3f{width:314.375808pt;}
._3d{width:387.742830pt;}
._32{width:401.090652pt;}
._35{width:403.410621pt;}
._34{width:407.210570pt;}
._3{width:412.896000pt;}
._36{width:425.050333pt;}
._1a{width:432.438234pt;}
._1d{width:436.730177pt;}
._37{width:443.649447pt;}
._29{width:455.697924pt;}
._43{width:466.541779pt;}
._3b{width:473.941681pt;}
._28{width:515.403176pt;}
._24{width:548.312689pt;}
._21{width:555.685887pt;}
._1e{width:558.205854pt;}
._3e{width:560.576526pt;}
._22{width:587.712164pt;}
._1f{width:591.152118pt;}
._1b{width:593.952081pt;}
._1c{width:612.791829pt;}
._20{width:613.831815pt;}
._19{width:617.951761pt;}
._26{width:624.631671pt;}
._2b{width:636.791509pt;}
._23{width:646.191384pt;}
._25{width:654.031279pt;}
._2a{width:659.751203pt;}
._4{width:712.213333pt;}
.fse{font-size:24.885867pt;}
.fsb{font-size:31.995733pt;}
.fsf{font-size:34.667200pt;}
.fsd{font-size:37.332267pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:39.999467pt;}
.fsc{font-size:42.666133pt;}
.fs7{font-size:42.666667pt;}
.fs10{font-size:45.332800pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:63.999467pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.000000pt;}
.fsa{font-size:90.666133pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:37.492800pt;}
.ya8{bottom:37.499574pt;}
.y5{bottom:59.133337pt;}
.y23{bottom:60.086668pt;}
.y21a{bottom:68.260635pt;}
.yd7{bottom:68.488510pt;}
.y1eb{bottom:69.167809pt;}
.y79{bottom:69.468359pt;}
.y15f{bottom:73.398400pt;}
.y15a{bottom:73.399282pt;}
.y13e{bottom:74.532765pt;}
.y159{bottom:74.683333pt;}
.y22{bottom:74.753335pt;}
.y261{bottom:77.867735pt;}
.y219{bottom:80.204160pt;}
.y78{bottom:80.806267pt;}
.y1ea{bottom:81.186932pt;}
.y101{bottom:83.151205pt;}
.y19b{bottom:83.679054pt;}
.yd6{bottom:84.513655pt;}
.y187{bottom:84.514153pt;}
.y4{bottom:86.333337pt;}
.y260{bottom:89.885925pt;}
.y13d{bottom:90.557910pt;}
.y218{bottom:92.222350pt;}
.y1e9{bottom:93.129524pt;}
.y129{bottom:99.175474pt;}
.y100{bottom:99.176349pt;}
.y19a{bottom:99.628267pt;}
.yd5{bottom:100.538800pt;}
.y186{bottom:100.539298pt;}
.y25f{bottom:101.905048pt;}
.ya7{bottom:103.033988pt;}
.y217{bottom:104.241474pt;}
.y1e8{bottom:105.148648pt;}
.y13c{bottom:106.583054pt;}
.y25e{bottom:113.848573pt;}
.y128{bottom:115.200619pt;}
.yff{bottom:115.201494pt;}
.y199{bottom:115.653467pt;}
.y216{bottom:116.260597pt;}
.yd4{bottom:116.488012pt;}
.y185{bottom:116.488510pt;}
.y1e7{bottom:117.167771pt;}
.ya6{bottom:119.059133pt;}
.y65{bottom:120.644459pt;}
.y276{bottom:120.720062pt;}
.y13b{bottom:122.532267pt;}
.y21{bottom:123.790666pt;}
.y25d{bottom:125.866763pt;}
.y215{bottom:128.203189pt;}
.y127{bottom:131.149831pt;}
.yfe{bottom:131.150706pt;}
.yd3{bottom:132.513157pt;}
.y184{bottom:132.513655pt;}
.y64{bottom:134.628284pt;}
.ya5{bottom:135.008345pt;}
.y25c{bottom:137.885887pt;}
.y13a{bottom:138.557333pt;}
.y275{bottom:139.390376pt;}
.y214{bottom:140.222312pt;}
.y1e6{bottom:141.129486pt;}
.y126{bottom:147.174976pt;}
.yfd{bottom:147.175851pt;}
.y198{bottom:147.629871pt;}
.y183{bottom:148.538800pt;}
.y63{bottom:148.613176pt;}
.y25b{bottom:149.905010pt;}
.ya4{bottom:151.033490pt;}
.y213{bottom:152.241435pt;}
.y1e5{bottom:153.148610pt;}
.y274{bottom:158.060690pt;}
.y25a{bottom:161.847602pt;}
.y62{bottom:162.597001pt;}
.y125{bottom:163.200121pt;}
.y197{bottom:163.655016pt;}
.y212{bottom:164.259625pt;}
.yd2{bottom:164.487514pt;}
.y182{bottom:164.488012pt;}
.y1e4{bottom:165.166799pt;}
.ya3{bottom:167.058635pt;}
.y160{bottom:168.491132pt;}
.y139{bottom:170.534490pt;}
.y259{bottom:173.866725pt;}
.y18{bottom:175.052000pt;}
.y211{bottom:176.203151pt;}
.y61{bottom:176.656559pt;}
.y273{bottom:176.732137pt;}
.y1e3{bottom:177.185923pt;}
.y124{bottom:179.149333pt;}
.yfc{bottom:179.151342pt;}
.y196{bottom:179.680161pt;}
.yd1{bottom:180.512659pt;}
.y181{bottom:180.513157pt;}
.ya2{bottom:183.008980pt;}
.y258{bottom:185.884915pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y138{bottom:186.559635pt;}
.y210{bottom:188.221341pt;}
.y1e2{bottom:189.128515pt;}
.y60{bottom:190.641450pt;}
.y123{bottom:195.174667pt;}
.yfb{bottom:195.175353pt;}
.y272{bottom:195.402450pt;}
.y195{bottom:195.629373pt;}
.yd0{bottom:196.537804pt;}
.y180{bottom:196.538302pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y257{bottom:197.904038pt;}
.ya1{bottom:199.032992pt;}
.y20f{bottom:200.240464pt;}
.y1e1{bottom:201.147638pt;}
.y137{bottom:202.584780pt;}
.y5f{bottom:204.625276pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y256{bottom:209.847564pt;}
.yfa{bottom:211.200498pt;}
.y194{bottom:211.654518pt;}
.y20e{bottom:212.259587pt;}
.ycf{bottom:212.487016pt;}
.y17f{bottom:212.487514pt;}
.y1e0{bottom:213.166761pt;}
.y271{bottom:213.997965pt;}
.ya0{bottom:215.058137pt;}
.y136{bottom:218.533992pt;}
.y5e{bottom:218.609101pt;}
.y255{bottom:221.865754pt;}
.y20d{bottom:224.202179pt;}
.yf9{bottom:227.150844pt;}
.y122{bottom:227.154314pt;}
.y193{bottom:227.679663pt;}
.yce{bottom:228.512161pt;}
.y9f{bottom:231.008482pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y270{bottom:232.668279pt;}
.y5d{bottom:232.669725pt;}
.y254{bottom:233.884877pt;}
.y135{bottom:234.559137pt;}
.y20c{bottom:236.221303pt;}
.y1df{bottom:237.128477pt;}
.y18c{bottom:238.714196pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yf8{bottom:243.175989pt;}
.y121{bottom:243.178325pt;}
.y192{bottom:243.630008pt;}
.ycd{bottom:244.537306pt;}
.y17e{bottom:244.537804pt;}
.y253{bottom:245.904000pt;}
.y5c{bottom:246.653550pt;}
.y9e{bottom:247.033627pt;}
.y20b{bottom:248.240427pt;}
.y1de{bottom:249.146667pt;}
.y134{bottom:250.584282pt;}
.y26f{bottom:251.338592pt;}
.y1dd{bottom:253.304000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y252{bottom:257.846592pt;}
.yf7{bottom:259.200000pt;}
.y120{bottom:259.203470pt;}
.y20a{bottom:260.257683pt;}
.ycc{bottom:260.486518pt;}
.y17d{bottom:260.487016pt;}
.y5b{bottom:260.637375pt;}
.y1dc{bottom:261.166761pt;}
.y9d{bottom:263.057639pt;}
.y133{bottom:266.533494pt;}
.y251{bottom:269.865716pt;}
.y26e{bottom:270.010039pt;}
.y209{bottom:272.201208pt;}
.y1db{bottom:273.184951pt;}
.y5a{bottom:274.622267pt;}
.yf6{bottom:275.149333pt;}
.y11f{bottom:275.153816pt;}
.y191{bottom:275.679165pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.ycb{bottom:276.511663pt;}
.y17c{bottom:276.512161pt;}
.y9c{bottom:279.007984pt;}
.y15b{bottom:280.438713pt;}
.y250{bottom:281.883906pt;}
.y132{bottom:282.558639pt;}
.y208{bottom:284.219398pt;}
.y1da{bottom:285.128477pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y59{bottom:288.606093pt;}
.y26d{bottom:288.680353pt;}
.y11e{bottom:291.178960pt;}
.y190{bottom:291.629510pt;}
.y17b{bottom:292.537306pt;}
.y24f{bottom:293.903029pt;}
.y207{bottom:296.238521pt;}
.y1d9{bottom:297.146667pt;}
.y131{bottom:298.583784pt;}
.y1d8{bottom:301.304000pt;}
.y58{bottom:302.665650pt;}
.y24e{bottom:305.846554pt;}
.y11d{bottom:307.202972pt;}
.yf5{bottom:307.205815pt;}
.y26c{bottom:307.350667pt;}
.y18f{bottom:307.654655pt;}
.y206{bottom:308.257644pt;}
.yca{bottom:308.486020pt;}
.y17a{bottom:308.486518pt;}
.y1d7{bottom:309.166285pt;}
.yf{bottom:309.452000pt;}
.y9b{bottom:311.058274pt;}
.y57{bottom:316.649475pt;}
.y24d{bottom:317.864744pt;}
.y205{bottom:320.200237pt;}
.y1d6{bottom:321.185408pt;}
.y11c{bottom:323.153318pt;}
.y18e{bottom:323.678667pt;}
.yc9{bottom:324.511165pt;}
.y179{bottom:324.511663pt;}
.y9a{bottom:327.007486pt;}
.y24c{bottom:329.883867pt;}
.y130{bottom:330.558141pt;}
.y56{bottom:330.634367pt;}
.y204{bottom:332.219360pt;}
.y1d5{bottom:333.128000pt;}
.y1d4{bottom:337.285333pt;}
.y11b{bottom:339.178462pt;}
.yf4{bottom:339.180173pt;}
.y18d{bottom:339.628000pt;}
.yc8{bottom:340.536310pt;}
.y178{bottom:340.536808pt;}
.y24b{bottom:341.902991pt;}
.y26b{bottom:342.199294pt;}
.y99{bottom:343.032631pt;}
.ye{bottom:343.809333pt;}
.y203{bottom:344.238483pt;}
.y55{bottom:344.618192pt;}
.y1d3{bottom:345.146687pt;}
.y12f{bottom:346.583286pt;}
.y24a{bottom:353.845583pt;}
.y188{bottom:355.046302pt;}
.y11a{bottom:355.203607pt;}
.y202{bottom:356.256673pt;}
.y177{bottom:356.486020pt;}
.yc7{bottom:356.486655pt;}
.y1d2{bottom:357.165810pt;}
.y26a{bottom:358.148572pt;}
.y54{bottom:358.603084pt;}
.y98{bottom:359.057776pt;}
.y15c{bottom:362.377749pt;}
.y12e{bottom:362.532498pt;}
.yd{bottom:362.706666pt;}
.y35{bottom:363.534667pt;}
.y249{bottom:365.864706pt;}
.y201{bottom:368.200198pt;}
.y1d1{bottom:369.184000pt;}
.y269{bottom:370.167695pt;}
.yc6{bottom:372.510667pt;}
.y176{bottom:372.511165pt;}
.y53{bottom:372.662642pt;}
.y1d0{bottom:373.341333pt;}
.y97{bottom:375.006988pt;}
.y248{bottom:377.882896pt;}
.y12d{bottom:378.557643pt;}
.y200{bottom:380.218388pt;}
.y1cf{bottom:381.128000pt;}
.y268{bottom:382.186818pt;}
.y52{bottom:386.646467pt;}
.y119{bottom:387.177964pt;}
.yc5{bottom:388.536133pt;}
.y175{bottom:388.536310pt;}
.yf3{bottom:388.539659pt;}
.y247{bottom:389.902019pt;}
.y96{bottom:391.032133pt;}
.y1ff{bottom:392.237512pt;}
.y1cd{bottom:393.147143pt;}
.y267{bottom:394.129410pt;}
.y12c{bottom:394.582788pt;}
.y1ce{bottom:397.304000pt;}
.y51{bottom:400.630292pt;}
.y246{bottom:401.845545pt;}
.y118{bottom:403.203109pt;}
.y1fe{bottom:404.256635pt;}
.y174{bottom:404.486655pt;}
.yf2{bottom:404.490004pt;}
.y1cc{bottom:405.165333pt;}
.y95{bottom:407.057278pt;}
.y266{bottom:410.154286pt;}
.y12b{bottom:410.532000pt;}
.y245{bottom:413.863735pt;}
.y50{bottom:414.615184pt;}
.y1fd{bottom:416.199227pt;}
.y1ca{bottom:417.184951pt;}
.y117{bottom:419.152322pt;}
.y173{bottom:420.510667pt;}
.yc4{bottom:420.511333pt;}
.yf1{bottom:420.515149pt;}
.y34{bottom:420.734667pt;}
.y1cb{bottom:421.341333pt;}
.y265{bottom:422.173409pt;}
.y94{bottom:423.006490pt;}
.y244{bottom:425.882858pt;}
.y12a{bottom:426.557333pt;}
.y1fc{bottom:428.218350pt;}
.y4f{bottom:428.599009pt;}
.y1c9{bottom:429.128477pt;}
.y264{bottom:434.192532pt;}
.y116{bottom:435.177466pt;}
.y172{bottom:436.534667pt;}
.yf0{bottom:436.540294pt;}
.y243{bottom:437.901981pt;}
.y93{bottom:439.031635pt;}
.y1fb{bottom:440.237473pt;}
.y1c8{bottom:441.146667pt;}
.y4e{bottom:442.658567pt;}
.y263{bottom:446.135125pt;}
.yc{bottom:446.990669pt;}
.y242{bottom:449.844573pt;}
.y115{bottom:451.202611pt;}
.y1fa{bottom:452.255663pt;}
.yc3{bottom:452.485333pt;}
.yef{bottom:452.489506pt;}
.y1c6{bottom:453.165810pt;}
.y92{bottom:455.056780pt;}
.y4d{bottom:456.643459pt;}
.y189{bottom:456.940836pt;}
.y1c7{bottom:457.322667pt;}
.y18a{bottom:461.703047pt;}
.y241{bottom:461.863697pt;}
.y262{bottom:462.160000pt;}
.yb{bottom:462.990669pt;}
.y1f9{bottom:464.199189pt;}
.y1c5{bottom:465.184000pt;}
.y114{bottom:467.151824pt;}
.y171{bottom:468.510976pt;}
.yee{bottom:468.514651pt;}
.y4c{bottom:470.627284pt;}
.y91{bottom:471.005992pt;}
.y158{bottom:473.801333pt;}
.y240{bottom:473.881886pt;}
.y1f8{bottom:476.217379pt;}
.y1c3{bottom:477.128020pt;}
.y33{bottom:477.934667pt;}
.ya{bottom:478.990666pt;}
.y1c4{bottom:481.285333pt;}
.y113{bottom:483.176968pt;}
.y170{bottom:484.536121pt;}
.yed{bottom:484.539796pt;}
.yc2{bottom:484.540482pt;}
.y4b{bottom:484.611109pt;}
.y23f{bottom:485.901010pt;}
.y90{bottom:487.031137pt;}
.y1f7{bottom:488.236502pt;}
.y1c2{bottom:489.147143pt;}
.y157{bottom:491.339551pt;}
.y9{bottom:494.990666pt;}
.y23e{bottom:497.844535pt;}
.y4a{bottom:498.670667pt;}
.y1f6{bottom:500.255625pt;}
.y16f{bottom:500.485333pt;}
.yc1{bottom:500.489695pt;}
.y1c1{bottom:501.165333pt;}
.y8f{bottom:503.056282pt;}
.y156{bottom:509.027315pt;}
.y23d{bottom:509.862725pt;}
.y32{bottom:511.073335pt;}
.y1f5{bottom:512.198217pt;}
.y1bf{bottom:513.184951pt;}
.y112{bottom:515.151325pt;}
.y49{bottom:515.981333pt;}
.y16e{bottom:516.510667pt;}
.yec{bottom:516.514153pt;}
.yc0{bottom:516.514840pt;}
.y1c0{bottom:517.341333pt;}
.y8e{bottom:519.005494pt;}
.y23c{bottom:521.881848pt;}
.y1f4{bottom:524.217341pt;}
.y31{bottom:524.406668pt;}
.y1be{bottom:525.128477pt;}
.y155{bottom:526.791078pt;}
.y111{bottom:531.176470pt;}
.yeb{bottom:532.539298pt;}
.ybf{bottom:532.539984pt;}
.y23b{bottom:533.900972pt;}
.y8d{bottom:535.030639pt;}
.y1f3{bottom:536.236464pt;}
.y1bd{bottom:537.146667pt;}
.y30{bottom:537.740000pt;}
.y154{bottom:544.479842pt;}
.y23a{bottom:545.843564pt;}
.y110{bottom:547.201615pt;}
.y1f2{bottom:548.254654pt;}
.y16d{bottom:548.485831pt;}
.yea{bottom:548.488510pt;}
.ybe{bottom:548.489197pt;}
.y1bb{bottom:549.166430pt;}
.y1bc{bottom:553.322667pt;}
.y239{bottom:557.862687pt;}
.y1f1{bottom:560.198179pt;}
.y1ba{bottom:561.562609pt;}
.y153{bottom:562.243605pt;}
.y10f{bottom:563.150827pt;}
.y16c{bottom:564.510976pt;}
.ye9{bottom:564.513655pt;}
.ybd{bottom:564.514341pt;}
.y8c{bottom:567.004996pt;}
.y238{bottom:569.880877pt;}
.y1f0{bottom:572.216369pt;}
.y48{bottom:572.902667pt;}
.y8{bottom:573.786667pt;}
.y10e{bottom:579.175972pt;}
.y152{bottom:579.931370pt;}
.y16b{bottom:580.536121pt;}
.ye8{bottom:580.538800pt;}
.ybc{bottom:580.539486pt;}
.y237{bottom:581.900000pt;}
.y8b{bottom:583.030141pt;}
.y1ef{bottom:584.235492pt;}
.y1b9{bottom:585.524325pt;}
.y47{bottom:591.573333pt;}
.y7{bottom:592.685334pt;}
.y236{bottom:593.843526pt;}
.y18b{bottom:594.363819pt;}
.y10d{bottom:595.201117pt;}
.y1ee{bottom:596.254616pt;}
.y16a{bottom:596.485333pt;}
.ybb{bottom:596.488699pt;}
.y1b8{bottom:596.863067pt;}
.y151{bottom:597.620134pt;}
.y8a{bottom:599.055286pt;}
.y1ae{bottom:600.416633pt;}
.y235{bottom:605.861716pt;}
.y1ed{bottom:608.197208pt;}
.y1b7{bottom:608.201810pt;}
.y2f{bottom:610.059998pt;}
.y46{bottom:610.244000pt;}
.y10c{bottom:611.150329pt;}
.y169{bottom:612.510667pt;}
.ye7{bottom:612.513157pt;}
.yba{bottom:612.513843pt;}
.y89{bottom:615.004498pt;}
.y1ad{bottom:615.080983pt;}
.y150{bottom:615.383897pt;}
.y234{bottom:617.880839pt;}
.y1ec{bottom:620.216331pt;}
.y1b6{bottom:620.220000pt;}
.ye6{bottom:628.538302pt;}
.yb9{bottom:628.538988pt;}
.y45{bottom:628.914667pt;}
.y1ac{bottom:629.745333pt;}
.y233{bottom:629.899962pt;}
.y88{bottom:631.029643pt;}
.y14f{bottom:633.071661pt;}
.y2e{bottom:636.726665pt;}
.y232{bottom:641.842554pt;}
.y77{bottom:641.917009pt;}
.y10b{bottom:643.200619pt;}
.y1b5{bottom:644.486329pt;}
.y168{bottom:644.487342pt;}
.ye5{bottom:644.487514pt;}
.y6{bottom:645.598667pt;}
.y87{bottom:647.054788pt;}
.y44{bottom:647.585333pt;}
.y14e{bottom:650.760425pt;}
.y2d{bottom:652.726665pt;}
.y76{bottom:653.255752pt;}
.y231{bottom:653.861677pt;}
.y10a{bottom:659.149831pt;}
.y167{bottom:660.511353pt;}
.y1b4{bottom:660.511474pt;}
.ye4{bottom:660.512659pt;}
.yb8{bottom:660.513345pt;}
.y86{bottom:663.004000pt;}
.y230{bottom:665.879867pt;}
.y43{bottom:666.256000pt;}
.y14d{bottom:668.524188pt;}
.y2c{bottom:668.726665pt;}
.y3{bottom:668.977329pt;}
.y109{bottom:675.174976pt;}
.y75{bottom:675.932304pt;}
.y166{bottom:676.536498pt;}
.y1b3{bottom:676.536619pt;}
.ye3{bottom:676.537804pt;}
.yb7{bottom:676.538490pt;}
.y22f{bottom:677.898991pt;}
.y85{bottom:679.030533pt;}
.y1ab{bottom:683.717447pt;}
.y2b{bottom:684.726665pt;}
.y42{bottom:684.926667pt;}
.y14c{bottom:686.211953pt;}
.y74{bottom:687.271047pt;}
.y22e{bottom:689.842516pt;}
.y108{bottom:691.200121pt;}
.y1b2{bottom:692.485831pt;}
.y165{bottom:692.486844pt;}
.ye2{bottom:692.487016pt;}
.yb6{bottom:692.487703pt;}
.y1aa{bottom:695.736287pt;}
.y14b{bottom:698.230792pt;}
.y73{bottom:698.609790pt;}
.y22d{bottom:701.860706pt;}
.y41{bottom:703.597333pt;}
.y107{bottom:707.149333pt;}
.y1a9{bottom:707.755127pt;}
.y1b1{bottom:708.510976pt;}
.y164{bottom:708.511989pt;}
.ye1{bottom:708.512161pt;}
.yb5{bottom:708.512847pt;}
.y72{bottom:709.948532pt;}
.y22c{bottom:713.879829pt;}
.y14a{bottom:715.918556pt;}
.y84{bottom:717.808533pt;}
.y1a8{bottom:719.697968pt;}
.y40{bottom:722.268000pt;}
.y106{bottom:723.175333pt;}
.y163{bottom:724.536000pt;}
.y1b0{bottom:724.536121pt;}
.yb4{bottom:724.537992pt;}
.y22b{bottom:725.898952pt;}
.y2a{bottom:731.368002pt;}
.y1a7{bottom:731.716807pt;}
.y71{bottom:732.625084pt;}
.y149{bottom:733.682320pt;}
.y83{bottom:733.833333pt;}
.y22a{bottom:737.841545pt;}
.y162{bottom:740.485333pt;}
.ye0{bottom:740.486518pt;}
.yb3{bottom:740.487205pt;}
.y3f{bottom:740.938667pt;}
.y70{bottom:743.963827pt;}
.y1a6{bottom:749.405572pt;}
.y229{bottom:749.860668pt;}
.y29{bottom:750.034669pt;}
.y148{bottom:751.371084pt;}
.y15d{bottom:754.840798pt;}
.y105{bottom:755.149333pt;}
.y6f{bottom:755.301636pt;}
.y1af{bottom:756.510667pt;}
.ydf{bottom:756.511663pt;}
.yb2{bottom:756.512349pt;}
.y3e{bottom:759.609333pt;}
.y82{bottom:761.121333pt;}
.y228{bottom:761.878858pt;}
.y6e{bottom:766.640379pt;}
.y1a5{bottom:767.169335pt;}
.y147{bottom:769.058848pt;}
.yde{bottom:772.536808pt;}
.yb1{bottom:772.537494pt;}
.y227{bottom:773.897981pt;}
.y81{bottom:775.785333pt;}
.y6d{bottom:777.903524pt;}
.y1a4{bottom:779.188174pt;}
.y2{bottom:781.661334pt;}
.y226{bottom:785.841506pt;}
.y146{bottom:786.822611pt;}
.y104{bottom:787.202655pt;}
.ydd{bottom:788.486020pt;}
.y161{bottom:788.486706pt;}
.y6c{bottom:789.241333pt;}
.y3c{bottom:789.618667pt;}
.y1a3{bottom:791.131015pt;}
.y6b{bottom:793.398667pt;}
.y3d{bottom:794.910667pt;}
.y225{bottom:797.859696pt;}
.y1a2{bottom:803.149855pt;}
.y80{bottom:803.150667pt;}
.y103{bottom:803.151867pt;}
.y3a{bottom:804.282667pt;}
.ydc{bottom:804.511165pt;}
.y145{bottom:804.511375pt;}
.yb0{bottom:804.511851pt;}
.y28{bottom:806.625337pt;}
.y3b{bottom:809.574667pt;}
.y224{bottom:809.878820pt;}
.y6a{bottom:811.758411pt;}
.ydb{bottom:820.536310pt;}
.yaf{bottom:820.536996pt;}
.y1a1{bottom:820.838619pt;}
.y7f{bottom:821.821333pt;}
.y223{bottom:821.897943pt;}
.y144{bottom:822.275138pt;}
.y69{bottom:825.061764pt;}
.y39{bottom:830.288313pt;}
.y1a0{bottom:832.857459pt;}
.y222{bottom:833.840535pt;}
.y27{bottom:834.625331pt;}
.y102{bottom:835.202157pt;}
.yda{bottom:836.486655pt;}
.yae{bottom:836.487342pt;}
.y143{bottom:839.962903pt;}
.y7e{bottom:840.492000pt;}
.y19f{bottom:844.876299pt;}
.y221{bottom:845.859658pt;}
.yd9{bottom:852.510667pt;}
.yad{bottom:852.511353pt;}
.y38{bottom:856.971357pt;}
.y142{bottom:857.650667pt;}
.y220{bottom:857.877848pt;}
.y7d{bottom:859.162667pt;}
.y1{bottom:859.312000pt;}
.y19e{bottom:862.564063pt;}
.y26{bottom:862.625331pt;}
.y15e{bottom:866.790148pt;}
.yd8{bottom:868.536000pt;}
.yac{bottom:868.536498pt;}
.y21f{bottom:869.896971pt;}
.y19d{bottom:874.582903pt;}
.y141{bottom:875.415141pt;}
.y7c{bottom:877.833333pt;}
.y21e{bottom:881.840497pt;}
.y37{bottom:883.577333pt;}
.yab{bottom:884.486844pt;}
.y140{bottom:890.079168pt;}
.y19c{bottom:892.270667pt;}
.y21d{bottom:893.858687pt;}
.y7b{bottom:896.504000pt;}
.yaa{bottom:900.511989pt;}
.y21c{bottom:905.877810pt;}
.y13f{bottom:910.034667pt;}
.y36{bottom:914.268000pt;}
.y7a{bottom:915.098667pt;}
.ya9{bottom:916.536000pt;}
.y21b{bottom:917.896000pt;}
.y25{bottom:920.485335pt;}
.y67{bottom:989.178382pt;}
.y66{bottom:1002.557333pt;}
.y24{bottom:1035.664002pt;}
.h1d{height:19.460748pt;}
.h16{height:24.636715pt;}
.h1e{height:27.109750pt;}
.h7{height:28.560000pt;}
.h24{height:28.745845pt;}
.h1b{height:29.193833pt;}
.h1c{height:30.500462pt;}
.h23{height:31.279583pt;}
.h25{height:32.679564pt;}
.hc{height:32.687500pt;}
.h19{height:32.852923pt;}
.h1a{height:33.364916pt;}
.h26{height:34.858231pt;}
.h20{height:34.906256pt;}
.h27{height:34.996922pt;}
.ha{height:36.773438pt;}
.h15{height:36.960000pt;}
.h22{height:37.036898pt;}
.h21{height:37.056000pt;}
.h1f{height:39.216000pt;}
.h6{height:40.800000pt;}
.hf{height:40.859375pt;}
.h18{height:41.066667pt;}
.h3{height:42.840000pt;}
.h17{height:43.573333pt;}
.h10{height:47.194768pt;}
.h2{height:48.960000pt;}
.he{height:49.031250pt;}
.h13{height:52.287564pt;}
.hb{height:61.289062pt;}
.h5{height:69.360000pt;}
.h14{height:69.812923pt;}
.hd{height:73.546875pt;}
.h4{height:105.826671pt;}
.h12{height:1058.000000pt;}
.h11{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w5{width:812.598667pt;}
.w6{width:812.666667pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x18{left:66.670800pt;}
.x1a{left:69.467600pt;}
.x42{left:74.683333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x8{left:129.466667pt;}
.x7{left:170.560000pt;}
.x9{left:175.733333pt;}
.x4{left:180.874667pt;}
.x6{left:203.327991pt;}
.xb{left:240.226667pt;}
.x1e{left:245.443948pt;}
.x1d{left:246.728000pt;}
.x1b{left:251.337733pt;}
.x22{left:254.362667pt;}
.x40{left:258.669386pt;}
.x5{left:260.969328pt;}
.x1c{left:267.362878pt;}
.x23{left:274.318165pt;}
.x24{left:288.982193pt;}
.x3d{left:295.181333pt;}
.x3f{left:301.077333pt;}
.x25{left:306.670667pt;}
.x3e{left:313.246667pt;}
.x14{left:319.294667pt;}
.x3c{left:322.317333pt;}
.x26{left:324.358431pt;}
.x15{left:328.441333pt;}
.x39{left:329.649544pt;}
.x27{left:342.122194pt;}
.xc{left:346.356000pt;}
.xd{left:351.572000pt;}
.x38{left:354.141034pt;}
.x28{left:359.809958pt;}
.x20{left:371.904980pt;}
.x29{left:377.573721pt;}
.x1f{left:392.842414pt;}
.x2a{left:395.262485pt;}
.x3{left:404.408000pt;}
.x2b{left:407.281325pt;}
.x2d{left:412.950250pt;}
.x2c{left:419.224166pt;}
.xe{left:430.412000pt;}
.x3a{left:437.971100pt;}
.xf{left:439.181333pt;}
.x16{left:449.008000pt;}
.x2e{left:466.090541pt;}
.xa{left:468.533333pt;}
.x2f{left:483.854304pt;}
.x17{left:499.276000pt;}
.x41{left:500.631939pt;}
.x30{left:501.542068pt;}
.x31{left:519.305831pt;}
.x32{left:531.249672pt;}
.x33{left:536.994596pt;}
.x10{left:552.340000pt;}
.x21{left:553.322562pt;}
.x34{left:554.682360pt;}
.x11{left:557.480000pt;}
.x35{left:572.446123pt;}
.x36{left:590.134887pt;}
.x37{left:607.822651pt;}
.x12{left:659.225333pt;}
.x13{left:664.441333pt;}
.x3b{left:684.541279pt;}
.x19{left:690.066667pt;}
}




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