
    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_b64b2ba737dc5e379add42ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_f6006b5c83c77f8e72a73da6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.704000;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_d78645148047192bb3e727a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_714e7b716ee9ed0b410810d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_368f47ed3fe98ced04e951b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_9830002cea4c1bd5c8329fc7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_7e0269be0e20c2664a8837b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_8fad838b96a3b0e55d6e2d08.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.915000;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_78530a081d003b4f0c4e3a76.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_e1a5789a9320dca3c350ad41.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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;}
.m2{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);}
.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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003810px;}
.ls3{letter-spacing:31.377810px;}
.ls2{letter-spacing:31.383810px;}
.ls4{letter-spacing:219.675810px;}
.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;}
}
.ws2b{word-spacing:-31.382190px;}
.ws22{word-spacing:-24.101616px;}
.ws5a{word-spacing:-20.084736px;}
.ws10{word-spacing:-16.737168px;}
.ws4a{word-spacing:-10.312950px;}
.ws3d{word-spacing:-3.466985px;}
.ws24{word-spacing:-3.227882px;}
.ws8c{word-spacing:-2.391024px;}
.ws83{word-spacing:-2.151922px;}
.ws88{word-spacing:-2.092146px;}
.ws5c{word-spacing:-1.912819px;}
.ws6f{word-spacing:-1.673717px;}
.ws81{word-spacing:-1.255288px;}
.ws74{word-spacing:-1.195512px;}
.ws99{word-spacing:-0.956410px;}
.ws20{word-spacing:-0.896634px;}
.ws25{word-spacing:-0.836858px;}
.ws8d{word-spacing:-0.418429px;}
.ws36{word-spacing:-0.059776px;}
.ws6a{word-spacing:-0.002850px;}
.ws2d{word-spacing:-0.002760px;}
.ws63{word-spacing:-0.002280px;}
.ws67{word-spacing:-0.001800px;}
.ws37{word-spacing:-0.001710px;}
.ws65{word-spacing:-0.001230px;}
.ws61{word-spacing:-0.001140px;}
.ws62{word-spacing:-0.000660px;}
.ws2a{word-spacing:-0.000570px;}
.ws58{word-spacing:-0.000180px;}
.ws29{word-spacing:-0.000090px;}
.ws21{word-spacing:0.000000px;}
.ws35{word-spacing:0.000390px;}
.ws5f{word-spacing:0.000480px;}
.ws3a{word-spacing:0.000960px;}
.ws2c{word-spacing:0.001050px;}
.ws57{word-spacing:0.001440px;}
.ws3b{word-spacing:0.001530px;}
.ws38{word-spacing:0.002010px;}
.ws71{word-spacing:0.002100px;}
.ws6c{word-spacing:0.002490px;}
.ws60{word-spacing:0.002580px;}
.ws68{word-spacing:0.002670px;}
.ws66{word-spacing:0.003150px;}
.ws2e{word-spacing:0.003240px;}
.ws56{word-spacing:0.003720px;}
.ws6b{word-spacing:0.004110px;}
.ws77{word-spacing:0.004200px;}
.ws59{word-spacing:0.004290px;}
.ws5e{word-spacing:0.004770px;}
.ws78{word-spacing:0.004860px;}
.ws39{word-spacing:0.005430px;}
.ws64{word-spacing:0.005910px;}
.ws6d{word-spacing:0.006300px;}
.ws72{word-spacing:0.007530px;}
.ws46{word-spacing:0.059776px;}
.wsa8{word-spacing:0.119551px;}
.ws82{word-spacing:0.179327px;}
.wsa1{word-spacing:0.298878px;}
.ws9{word-spacing:0.358654px;}
.ws90{word-spacing:0.597756px;}
.ws1f{word-spacing:0.836858px;}
.ws16{word-spacing:0.956410px;}
.ws44{word-spacing:1.315063px;}
.wsa9{word-spacing:1.494390px;}
.ws84{word-spacing:1.554166px;}
.ws73{word-spacing:1.673717px;}
.ws18{word-spacing:1.733492px;}
.wsa3{word-spacing:1.793268px;}
.ws3f{word-spacing:1.912819px;}
.ws75{word-spacing:2.032370px;}
.ws7e{word-spacing:2.151922px;}
.ws3{word-spacing:2.211697px;}
.ws0{word-spacing:2.272433px;}
.wsa4{word-spacing:2.391024px;}
.ws26{word-spacing:2.450800px;}
.wsa7{word-spacing:2.570351px;}
.ws12{word-spacing:2.689902px;}
.ws9d{word-spacing:2.749678px;}
.ws96{word-spacing:2.809453px;}
.ws70{word-spacing:2.929004px;}
.wsb1{word-spacing:2.988780px;}
.wsac{word-spacing:3.048556px;}
.wsb{word-spacing:3.108331px;}
.ws7{word-spacing:3.168107px;}
.wsd{word-spacing:3.227882px;}
.ws1{word-spacing:3.299635px;}
.ws1b{word-spacing:3.407209px;}
.ws19{word-spacing:3.526760px;}
.ws95{word-spacing:3.646312px;}
.ws7d{word-spacing:3.825638px;}
.wsaf{word-spacing:3.945190px;}
.ws13{word-spacing:4.124516px;}
.ws49{word-spacing:4.303843px;}
.ws43{word-spacing:4.423394px;}
.ws15{word-spacing:4.602721px;}
.wse{word-spacing:4.662497px;}
.ws86{word-spacing:4.722272px;}
.ws76{word-spacing:4.782048px;}
.ws14{word-spacing:4.841824px;}
.ws8e{word-spacing:5.021150px;}
.ws94{word-spacing:5.080926px;}
.ws47{word-spacing:5.200477px;}
.ws9a{word-spacing:5.260253px;}
.ws87{word-spacing:5.379804px;}
.ws42{word-spacing:5.439580px;}
.ws6{word-spacing:5.559131px;}
.wsc{word-spacing:5.618906px;}
.ws55{word-spacing:5.678682px;}
.ws85{word-spacing:5.738458px;}
.ws1d{word-spacing:5.798233px;}
.ws5d{word-spacing:5.858009px;}
.wsa{word-spacing:5.977560px;}
.ws4f{word-spacing:6.097111px;}
.ws7c{word-spacing:6.156887px;}
.ws4{word-spacing:6.336214px;}
.ws11{word-spacing:6.395989px;}
.ws1e{word-spacing:6.455765px;}
.ws8b{word-spacing:6.694867px;}
.ws54{word-spacing:6.742733px;}
.ws27{word-spacing:6.814464px;}
.ws98{word-spacing:6.874194px;}
.ws40{word-spacing:7.053521px;}
.wsb0{word-spacing:7.113296px;}
.ws92{word-spacing:7.173072px;}
.ws23{word-spacing:7.352399px;}
.ws89{word-spacing:7.412174px;}
.ws80{word-spacing:7.471950px;}
.ws41{word-spacing:7.651277px;}
.ws7f{word-spacing:7.830604px;}
.ws1a{word-spacing:8.091257px;}
.ws2{word-spacing:8.177334px;}
.ws8a{word-spacing:8.189257px;}
.ws8{word-spacing:8.249033px;}
.ws8f{word-spacing:8.308808px;}
.wsaa{word-spacing:8.488135px;}
.ws97{word-spacing:8.547911px;}
.wsf{word-spacing:9.026116px;}
.ws5b{word-spacing:9.205442px;}
.ws9b{word-spacing:9.623872px;}
.wsab{word-spacing:10.102076px;}
.ws93{word-spacing:10.759608px;}
.wsa6{word-spacing:10.819384px;}
.wsad{word-spacing:10.938935px;}
.ws9c{word-spacing:10.998710px;}
.ws6e{word-spacing:11.058486px;}
.ws17{word-spacing:11.178037px;}
.ws9e{word-spacing:11.417140px;}
.ws5{word-spacing:11.476915px;}
.ws34{word-spacing:11.601415px;}
.ws1c{word-spacing:11.835569px;}
.ws9f{word-spacing:12.134447px;}
.wsa5{word-spacing:12.194222px;}
.wsae{word-spacing:12.373549px;}
.ws33{word-spacing:13.155415px;}
.ws2f{word-spacing:14.585246px;}
.ws28{word-spacing:14.645022px;}
.ws32{word-spacing:31.382190px;}
.ws48{word-spacing:34.669848px;}
.ws3c{word-spacing:38.913916px;}
.ws53{word-spacing:44.891476px;}
.ws45{word-spacing:54.933776px;}
.ws3e{word-spacing:54.993552px;}
.ws79{word-spacing:62.704604px;}
.ws31{word-spacing:62.764380px;}
.ws50{word-spacing:73.523988px;}
.ws51{word-spacing:93.548814px;}
.ws52{word-spacing:147.825059px;}
.ws7b{word-spacing:156.913620px;}
.ws91{word-spacing:175.307697px;}
.ws69{word-spacing:188.291430px;}
.ws30{word-spacing:219.677430px;}
.wsa2{word-spacing:222.663732px;}
.wsa0{word-spacing:270.885732px;}
.ws7a{word-spacing:282.445620px;}
.ws4c{word-spacing:889.885837px;}
.ws4e{word-spacing:923.240622px;}
.ws4d{word-spacing:964.904215px;}
.ws4b{word-spacing:979.907891px;}
._7a{margin-left:-102.395603px;}
._6c{margin-left:-54.216469px;}
._51{margin-left:-31.382190px;}
._33{margin-left:-18.231558px;}
._1e{margin-left:-13.987490px;}
._5a{margin-left:-9.229327px;}
._11{margin-left:-8.086012px;}
._49{margin-left:-7.073106px;}
._f{margin-left:-4.961375px;}
._9{margin-left:-3.904999px;}
._0{margin-left:-2.685602px;}
._5{margin-left:-1.056376px;}
._3{width:1.116151px;}
._2{width:2.685602px;}
._15{width:14.653566px;}
._1d{width:15.840534px;}
._13{width:17.012161px;}
._54{width:19.841200px;}
._6{width:22.017006px;}
._53{width:23.062253px;}
._c{width:24.175483px;}
._e{width:25.400330px;}
._a{width:26.695808px;}
._59{width:28.393410px;}
._d{width:29.544432px;}
._10{width:31.282224px;}
._b{width:33.646996px;}
._7{width:35.889245px;}
._5b{width:37.479301px;}
._61{width:38.631343px;}
._14{width:39.710584px;}
._1{width:41.523545px;}
._4{width:43.038600px;}
._62{width:48.956216px;}
._8{width:50.969002px;}
._12{width:52.542752px;}
._27{width:54.754450px;}
._16{width:62.764380px;}
._4d{width:65.095628px;}
._50{width:68.323511px;}
._4c{width:70.116779px;}
._2e{width:71.730720px;}
._4b{width:79.680875px;}
._75{width:84.144460px;}
._78{width:86.909423px;}
._79{width:89.344937px;}
._1b{width:94.146570px;}
._3a{width:100.303457px;}
._3b{width:101.797847px;}
._3c{width:104.587715px;}
._2b{width:113.487724px;}
._7d{width:123.974594px;}
._18{width:125.528760px;}
._67{width:132.323593px;}
._48{width:135.810163px;}
._69{width:137.524070px;}
._39{width:139.576026px;}
._3d{width:141.548621px;}
._64{width:150.395410px;}
._52{width:156.920010px;}
._7c{width:160.497486px;}
._28{width:162.988476px;}
._45{width:168.328090px;}
._3f{width:169.848928px;}
._71{width:172.153728px;}
._74{width:174.425201px;}
._77{width:180.761036px;}
._55{width:188.353876px;}
._60{width:194.831397px;}
._38{width:198.725519px;}
._4a{width:200.114065px;}
._6f{width:202.525468px;}
._40{width:204.083212px;}
._70{width:208.719108px;}
._7b{width:216.969898px;}
._22{width:219.677910px;}
._66{width:222.646823px;}
._68{width:228.983036px;}
._41{width:240.416400px;}
._1a{width:251.064300px;}
._6b{width:252.415072px;}
._2c{width:259.606630px;}
._19{width:282.439620px;}
._1f{width:306.882559px;}
._17{width:313.824480px;}
._5d{width:321.475127px;}
._30{width:330.259813px;}
._29{width:365.166040px;}
._4f{width:367.138200px;}
._58{width:376.587810px;}
._76{width:393.014874px;}
._42{width:394.186800px;}
._21{width:401.326387px;}
._56{width:408.029386px;}
._6a{width:414.281125px;}
._43{width:432.089813px;}
._57{width:439.233869px;}
._5e{width:447.602983px;}
._7e{width:484.130561px;}
._2a{width:490.249079px;}
._6d{width:502.043712px;}
._47{width:518.812200px;}
._25{width:533.500770px;}
._65{width:535.143089px;}
._4e{width:549.565150px;}
._5f{width:564.945346px;}
._3e{width:573.279780px;}
._44{width:588.353519px;}
._46{width:630.734771px;}
._6e{width:633.627095px;}
._36{width:636.836137px;}
._24{width:659.029530px;}
._2f{width:660.344976px;}
._26{width:664.606210px;}
._5c{width:705.592038px;}
._23{width:721.796100px;}
._35{width:729.667644px;}
._37{width:733.711780px;}
._73{width:806.703583px;}
._34{width:825.500322px;}
._31{width:826.764546px;}
._63{width:1137.160444px;}
._72{width:1186.972444px;}
._2d{width:1262.085985px;}
._32{width:1526.615914px;}
._20{width:1668.892210px;}
._1c{width:1972.983846px;}
.fc6{color:rgb(0,0,207);}
.fc5{color:transparent;}
.fc4{color:rgb(79,153,5);}
.fc3{color:rgb(207,92,0);}
.fc2{color:rgb(33,74,135);}
.fc1{color:rgb(143,89,3);}
.fc7{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.100540px;}
.fs5{font-size:42.900660px;}
.fs6{font-size:50.700780px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y22a{bottom:7.702618px;}
.y229{bottom:20.007308px;}
.y223{bottom:38.288839px;}
.y27{bottom:63.168000px;}
.y224{bottom:80.077982px;}
.y121{bottom:111.420000px;}
.yfc{bottom:112.174500px;}
.y4e{bottom:113.196000px;}
.y1de{bottom:113.664000px;}
.y14c{bottom:113.839500px;}
.y22d{bottom:114.330259px;}
.ya8{bottom:117.151500px;}
.y221{bottom:117.936000px;}
.y1bc{bottom:118.666500px;}
.y26{bottom:119.236500px;}
.y22b{bottom:119.341836px;}
.y175{bottom:121.150500px;}
.y225{bottom:121.876875px;}
.y196{bottom:126.082500px;}
.y120{bottom:129.352500px;}
.yfb{bottom:130.107000px;}
.y4d{bottom:131.130000px;}
.y1dd{bottom:131.596500px;}
.y14b{bottom:131.772000px;}
.ya7{bottom:135.084000px;}
.y220{bottom:135.868500px;}
.y202{bottom:137.118000px;}
.y25{bottom:137.169000px;}
.y174{bottom:139.083000px;}
.y7a{bottom:145.674000px;}
.y11f{bottom:147.285000px;}
.yfa{bottom:148.041000px;}
.y1dc{bottom:149.529000px;}
.y14a{bottom:149.704500px;}
.ya6{bottom:153.016500px;}
.y21f{bottom:153.802500px;}
.y1bb{bottom:154.531500px;}
.y201{bottom:155.050500px;}
.y173{bottom:157.017000px;}
.y195{bottom:160.872000px;}
.y79{bottom:163.606500px;}
.y226{bottom:163.675768px;}
.y24{bottom:164.068500px;}
.y11e{bottom:165.217500px;}
.y4c{bottom:165.829500px;}
.yf9{bottom:165.973500px;}
.y1db{bottom:167.461500px;}
.y149{bottom:167.637000px;}
.y272{bottom:168.304500px;}
.yd1{bottom:168.865500px;}
.ya5{bottom:170.950500px;}
.y1ba{bottom:172.464000px;}
.y200{bottom:172.984500px;}
.y194{bottom:178.804500px;}
.y23{bottom:182.001000px;}
.yf8{bottom:183.906000px;}
.y1da{bottom:185.395500px;}
.y148{bottom:185.569500px;}
.y271{bottom:186.238500px;}
.yd0{bottom:186.798000px;}
.ya4{bottom:188.883000px;}
.y4b{bottom:189.649500px;}
.y21e{bottom:189.667500px;}
.y22e{bottom:190.381429px;}
.y1b9{bottom:190.398000px;}
.y172{bottom:192.882000px;}
.y274{bottom:195.898500px;}
.y78{bottom:199.471500px;}
.y22{bottom:199.933500px;}
.y11d{bottom:200.022000px;}
.y1ff{bottom:200.578500px;}
.y36{bottom:200.856000px;}
.yf7{bottom:201.838500px;}
.y1d9{bottom:203.328000px;}
.y147{bottom:203.502000px;}
.ycf{bottom:204.730500px;}
.y227{bottom:205.464911px;}
.ya3{bottom:206.815500px;}
.y4a{bottom:207.582000px;}
.y21d{bottom:207.600000px;}
.y1b8{bottom:208.330500px;}
.y171{bottom:210.814500px;}
.y270{bottom:213.832500px;}
.y193{bottom:214.669500px;}
.y77{bottom:217.404000px;}
.y21{bottom:217.866000px;}
.yf6{bottom:219.771000px;}
.y1d8{bottom:221.260500px;}
.y146{bottom:221.436000px;}
.yce{bottom:222.663000px;}
.ya2{bottom:224.748000px;}
.y49{bottom:225.516000px;}
.y21c{bottom:225.532500px;}
.y1b7{bottom:226.263000px;}
.y243{bottom:227.377500px;}
.y170{bottom:228.747000px;}
.y11c{bottom:231.748500px;}
.y273{bottom:231.765000px;}
.y192{bottom:232.603500px;}
.y76{bottom:235.338000px;}
.y20{bottom:235.800000px;}
.yf5{bottom:237.703500px;}
.y1d7{bottom:239.193000px;}
.ycd{bottom:240.597000px;}
.y1fe{bottom:242.431500px;}
.ya1{bottom:242.680500px;}
.y48{bottom:243.448500px;}
.y21b{bottom:243.465000px;}
.y1b6{bottom:244.195500px;}
.y16f{bottom:246.679500px;}
.y228{bottom:247.263804px;}
.y11b{bottom:249.681000px;}
.y75{bottom:253.270500px;}
.y1f{bottom:253.732500px;}
.y242{bottom:254.971500px;}
.yf4{bottom:255.637500px;}
.y1d6{bottom:257.125500px;}
.y145{bottom:257.301000px;}
.y1fd{bottom:260.365500px;}
.y21a{bottom:261.399000px;}
.y1b5{bottom:262.128000px;}
.y22c{bottom:266.364348px;}
.y11a{bottom:267.613500px;}
.y26f{bottom:267.816000px;}
.ya0{bottom:268.123500px;}
.y191{bottom:268.468500px;}
.y74{bottom:271.203000px;}
.y1e{bottom:271.665000px;}
.y1d5{bottom:275.058000px;}
.y144{bottom:275.233500px;}
.y47{bottom:277.326000px;}
.y1fc{bottom:278.298000px;}
.y219{bottom:279.331500px;}
.y16e{bottom:282.546000px;}
.y119{bottom:285.546000px;}
.y26e{bottom:285.748500px;}
.y190{bottom:286.401000px;}
.y73{bottom:289.135500px;}
.ycc{bottom:290.350500px;}
.y143{bottom:293.166000px;}
.y241{bottom:293.836500px;}
.yf3{bottom:294.568500px;}
.y46{bottom:295.258500px;}
.y1fb{bottom:296.230500px;}
.y218{bottom:297.264000px;}
.y1b4{bottom:297.994500px;}
.y16d{bottom:300.478500px;}
.y118{bottom:303.480000px;}
.y26d{bottom:303.681000px;}
.y1d{bottom:304.411500px;}
.y9f{bottom:306.432000px;}
.y72{bottom:307.068000px;}
.ycb{bottom:308.283000px;}
.y1d4{bottom:309.759000px;}
.y240{bottom:311.769000px;}
.y1fa{bottom:314.163000px;}
.y1b3{bottom:315.927000px;}
.y117{bottom:321.412500px;}
.y26c{bottom:321.613500px;}
.y18f{bottom:322.266000px;}
.y142{bottom:323.562000px;}
.y9e{bottom:324.364500px;}
.y71{bottom:325.000500px;}
.y45{bottom:325.909500px;}
.yca{bottom:326.217000px;}
.y1f9{bottom:332.095500px;}
.yf2{bottom:332.959500px;}
.y217{bottom:333.129000px;}
.y1d3{bottom:333.579000px;}
.y16c{bottom:336.343500px;}
.y23f{bottom:338.668500px;}
.y116{bottom:339.345000px;}
.y26b{bottom:339.546000px;}
.y1b2{bottom:339.747000px;}
.y18e{bottom:340.200000px;}
.y141{bottom:341.494500px;}
.y9d{bottom:342.297000px;}
.y70{bottom:342.934500px;}
.yc9{bottom:344.149500px;}
.y216{bottom:351.061500px;}
.y1c{bottom:353.853000px;}
.y16b{bottom:354.276000px;}
.y23e{bottom:356.601000px;}
.yf1{bottom:356.779500px;}
.y115{bottom:357.277500px;}
.y26a{bottom:357.478500px;}
.y1b1{bottom:357.679500px;}
.y1f8{bottom:358.995000px;}
.y140{bottom:359.428500px;}
.y9c{bottom:360.229500px;}
.y6f{bottom:360.867000px;}
.y44{bottom:361.774500px;}
.yc8{bottom:362.082000px;}
.y1d2{bottom:368.278500px;}
.y1b{bottom:371.787000px;}
.y16a{bottom:372.210000px;}
.y23d{bottom:374.535000px;}
.yf0{bottom:374.712000px;}
.y114{bottom:375.210000px;}
.y269{bottom:375.412500px;}
.y18d{bottom:376.065000px;}
.y1f7{bottom:376.927500px;}
.y13f{bottom:377.361000px;}
.y6e{bottom:378.799500px;}
.y43{bottom:379.707000px;}
.yc7{bottom:380.014500px;}
.y9b{bottom:384.021000px;}
.y1b0{bottom:385.273500px;}
.y169{bottom:390.142500px;}
.y1d1{bottom:392.100000px;}
.y113{bottom:393.142500px;}
.y268{bottom:393.345000px;}
.y18c{bottom:393.997500px;}
.y1f6{bottom:394.860000px;}
.y13e{bottom:395.293500px;}
.y6d{bottom:396.732000px;}
.y42{bottom:397.639500px;}
.yc6{bottom:397.947000px;}
.y1a{bottom:398.685000px;}
.y215{bottom:400.891500px;}
.y23c{bottom:401.433000px;}
.yef{bottom:401.611500px;}
.y9a{bottom:401.953500px;}
.y168{bottom:408.075000px;}
.y1d0{bottom:410.032500px;}
.y112{bottom:411.076500px;}
.y267{bottom:411.277500px;}
.y18b{bottom:411.930000px;}
.y1f5{bottom:412.794000px;}
.y13d{bottom:413.226000px;}
.y6c{bottom:414.664500px;}
.y41{bottom:415.572000px;}
.yc5{bottom:415.879500px;}
.y19{bottom:416.617500px;}
.y214{bottom:418.824000px;}
.y23b{bottom:419.365500px;}
.yee{bottom:419.544000px;}
.y167{bottom:426.007500px;}
.y1af{bottom:427.128000px;}
.y1cf{bottom:427.965000px;}
.y111{bottom:429.009000px;}
.y266{bottom:429.210000px;}
.y18a{bottom:429.862500px;}
.y1f4{bottom:430.726500px;}
.y13c{bottom:431.158500px;}
.y6b{bottom:432.598500px;}
.y40{bottom:433.506000px;}
.yc4{bottom:433.813500px;}
.y18{bottom:434.551500px;}
.y23a{bottom:437.299500px;}
.y213{bottom:444.267000px;}
.y1ae{bottom:445.060500px;}
.y1ce{bottom:445.897500px;}
.y265{bottom:447.142500px;}
.y1f3{bottom:448.659000px;}
.y13b{bottom:449.091000px;}
.y6a{bottom:450.531000px;}
.y3f{bottom:451.438500px;}
.yc3{bottom:451.746000px;}
.yed{bottom:452.290500px;}
.y17{bottom:452.484000px;}
.y99{bottom:452.668500px;}
.y239{bottom:455.232000px;}
.y166{bottom:461.872500px;}
.y1cd{bottom:463.830000px;}
.y110{bottom:464.874000px;}
.y264{bottom:465.075000px;}
.y189{bottom:465.729000px;}
.y1f2{bottom:466.591500px;}
.y13a{bottom:467.025000px;}
.y69{bottom:468.463500px;}
.y3e{bottom:469.371000px;}
.yc2{bottom:469.678500px;}
.y98{bottom:470.601000px;}
.y1ad{bottom:471.960000px;}
.y238{bottom:473.164500px;}
.y16{bottom:479.383500px;}
.y165{bottom:479.806500px;}
.y1cc{bottom:481.764000px;}
.y10f{bottom:482.806500px;}
.y263{bottom:483.009000px;}
.y188{bottom:483.661500px;}
.y212{bottom:483.870000px;}
.y1f1{bottom:484.524000px;}
.y68{bottom:486.396000px;}
.y3d{bottom:487.303500px;}
.yc1{bottom:487.611000px;}
.y97{bottom:488.533500px;}
.y139{bottom:489.694500px;}
.y15{bottom:497.316000px;}
.y164{bottom:497.739000px;}
.y1cb{bottom:499.696500px;}
.y237{bottom:500.064000px;}
.y10e{bottom:500.739000px;}
.y262{bottom:500.941500px;}
.y187{bottom:501.594000px;}
.y67{bottom:504.328500px;}
.y3c{bottom:505.236000px;}
.y96{bottom:506.466000px;}
.y1ac{bottom:506.749500px;}
.y138{bottom:507.627000px;}
.y1f0{bottom:511.423500px;}
.yc0{bottom:513.054000px;}
.yec{bottom:515.241000px;}
.y14{bottom:515.248500px;}
.y1ca{bottom:517.629000px;}
.y236{bottom:517.996500px;}
.y10d{bottom:518.673000px;}
.y261{bottom:518.874000px;}
.y186{bottom:519.526500px;}
.y163{bottom:521.559000px;}
.y66{bottom:522.261000px;}
.y3b{bottom:523.168500px;}
.y95{bottom:524.398500px;}
.y137{bottom:525.559500px;}
.y1ef{bottom:529.356000px;}
.y1ab{bottom:530.571000px;}
.yeb{bottom:533.173500px;}
.y13{bottom:533.181000px;}
.y1c9{bottom:535.561500px;}
.y235{bottom:535.929000px;}
.y260{bottom:536.806500px;}
.y185{bottom:537.459000px;}
.y65{bottom:540.195000px;}
.y3a{bottom:541.102500px;}
.y10c{bottom:541.342500px;}
.y94{bottom:542.332500px;}
.y136{bottom:543.492000px;}
.y1ee{bottom:547.288500px;}
.y162{bottom:548.458500px;}
.yea{bottom:551.106000px;}
.y1c8{bottom:553.494000px;}
.y234{bottom:553.861500px;}
.ybf{bottom:554.629500px;}
.y25f{bottom:554.739000px;}
.y64{bottom:558.127500px;}
.y39{bottom:559.035000px;}
.y10b{bottom:559.275000px;}
.y12{bottom:560.080500px;}
.y93{bottom:560.265000px;}
.y1ed{bottom:565.221000px;}
.y1aa{bottom:565.360500px;}
.ye9{bottom:569.040000px;}
.y135{bottom:571.086000px;}
.y1c7{bottom:571.426500px;}
.y233{bottom:571.794000px;}
.ybe{bottom:572.563500px;}
.y25e{bottom:572.671500px;}
.y184{bottom:573.325500px;}
.y63{bottom:576.060000px;}
.y10a{bottom:577.207500px;}
.y11{bottom:578.013000px;}
.y92{bottom:578.197500px;}
.y1ec{bottom:583.155000px;}
.y161{bottom:583.263000px;}
.y1a9{bottom:583.293000px;}
.ye8{bottom:586.972500px;}
.y1c6{bottom:589.360500px;}
.y232{bottom:589.728000px;}
.ybd{bottom:590.496000px;}
.y25d{bottom:590.605500px;}
.y183{bottom:591.258000px;}
.y62{bottom:593.992500px;}
.y10{bottom:595.945500px;}
.y91{bottom:596.130000px;}
.y38{bottom:596.593500px;}
.y1eb{bottom:601.087500px;}
.y109{bottom:604.801500px;}
.ye7{bottom:604.905000px;}
.y160{bottom:607.083000px;}
.y1c5{bottom:607.293000px;}
.y231{bottom:607.660500px;}
.ybc{bottom:608.428500px;}
.y25c{bottom:608.538000px;}
.y182{bottom:609.190500px;}
.y134{bottom:611.910000px;}
.y61{bottom:611.925000px;}
.yf{bottom:613.878000px;}
.y90{bottom:614.062500px;}
.y1ea{bottom:619.020000px;}
.y1a8{bottom:619.158000px;}
.ye6{bottom:622.837500px;}
.y1c4{bottom:625.225500px;}
.y230{bottom:625.593000px;}
.ybb{bottom:626.361000px;}
.y25b{bottom:626.470500px;}
.y181{bottom:627.123000px;}
.y289{bottom:627.255000px;}
.y133{bottom:629.842500px;}
.y60{bottom:629.857500px;}
.y8f{bottom:631.995000px;}
.y1a7{bottom:637.090500px;}
.ye5{bottom:640.770000px;}
.ye{bottom:640.777500px;}
.y15f{bottom:641.887500px;}
.y1c3{bottom:643.158000px;}
.y22f{bottom:643.525500px;}
.y25a{bottom:644.403000px;}
.y37{bottom:644.503500px;}
.y180{bottom:645.055500px;}
.y288{bottom:645.187500px;}
.y1e9{bottom:645.919500px;}
.y132{bottom:647.776500px;}
.y5f{bottom:647.791500px;}
.yba{bottom:649.030500px;}
.y8e{bottom:649.929000px;}
.ye4{bottom:658.702500px;}
.yd{bottom:658.710000px;}
.y1c2{bottom:661.090500px;}
.y108{bottom:661.774500px;}
.y259{bottom:662.335500px;}
.y1e8{bottom:663.852000px;}
.y131{bottom:665.709000px;}
.y5e{bottom:665.724000px;}
.yb9{bottom:666.964500px;}
.y17f{bottom:667.801500px;}
.y8d{bottom:667.861500px;}
.y222{bottom:670.424654px;}
.y287{bottom:672.087000px;}
.y1a6{bottom:672.957000px;}
.ye3{bottom:676.636500px;}
.yc{bottom:676.642500px;}
.y1c1{bottom:679.023000px;}
.y258{bottom:680.268000px;}
.y1e7{bottom:681.784500px;}
.y130{bottom:683.641500px;}
.y211{bottom:683.656500px;}
.yb8{bottom:684.897000px;}
.y17e{bottom:685.734000px;}
.y8c{bottom:685.794000px;}
.y107{bottom:687.217500px;}
.y286{bottom:690.019500px;}
.y1a5{bottom:690.889500px;}
.ye2{bottom:694.569000px;}
.yb{bottom:694.576500px;}
.y1c0{bottom:696.957000px;}
.y257{bottom:698.202000px;}
.y1e6{bottom:699.717000px;}
.y15e{bottom:700.513500px;}
.y12f{bottom:701.574000px;}
.y5d{bottom:701.589000px;}
.yb7{bottom:702.829500px;}
.y17d{bottom:703.666500px;}
.y8b{bottom:711.237000px;}
.ye1{bottom:712.501500px;}
.ya{bottom:712.509000px;}
.y256{bottom:716.134500px;}
.y15d{bottom:718.446000px;}
.y12e{bottom:719.506500px;}
.y210{bottom:719.521500px;}
.y17c{bottom:721.599000px;}
.y285{bottom:722.766000px;}
.y5c{bottom:724.333500px;}
.y35{bottom:725.820000px;}
.y106{bottom:726.073500px;}
.y1a4{bottom:726.754500px;}
.y1e5{bottom:727.311000px;}
.yb6{bottom:729.729000px;}
.ye0{bottom:730.434000px;}
.y1bf{bottom:731.656500px;}
.y255{bottom:734.067000px;}
.y12d{bottom:737.439000px;}
.y20f{bottom:737.454000px;}
.y9{bottom:739.407000px;}
.y17b{bottom:739.531500px;}
.y1a3{bottom:744.687000px;}
.yb5{bottom:747.661500px;}
.ydf{bottom:748.366500px;}
.y8a{bottom:749.544000px;}
.y5b{bottom:751.233000px;}
.y254{bottom:751.999500px;}
.y15c{bottom:754.311000px;}
.y12c{bottom:755.373000px;}
.y20e{bottom:755.388000px;}
.y1be{bottom:755.476500px;}
.y8{bottom:757.341000px;}
.y1a2{bottom:762.619500px;}
.yb4{bottom:765.594000px;}
.yde{bottom:766.299000px;}
.y17a{bottom:766.431000px;}
.y89{bottom:767.476500px;}
.y34{bottom:767.674500px;}
.y1e4{bottom:769.165500px;}
.y253{bottom:769.932000px;}
.y284{bottom:772.207500px;}
.y15b{bottom:772.243500px;}
.y12b{bottom:773.305500px;}
.y20d{bottom:773.320500px;}
.y7{bottom:775.273500px;}
.y5a{bottom:778.132500px;}
.y105{bottom:780.057000px;}
.yb3{bottom:783.526500px;}
.y88{bottom:785.410500px;}
.y33{bottom:785.607000px;}
.y1e3{bottom:787.098000px;}
.y252{bottom:787.864500px;}
.y283{bottom:790.140000px;}
.y15a{bottom:790.177500px;}
.y12a{bottom:791.238000px;}
.y20c{bottom:791.253000px;}
.ydd{bottom:791.742000px;}
.y6{bottom:793.206000px;}
.y104{bottom:797.989500px;}
.y1a1{bottom:798.486000px;}
.y179{bottom:800.308500px;}
.yb2{bottom:801.459000px;}
.y87{bottom:803.343000px;}
.y32{bottom:803.539500px;}
.y59{bottom:805.030500px;}
.y251{bottom:805.798500px;}
.y282{bottom:808.074000px;}
.y1bd{bottom:808.110000px;}
.y129{bottom:809.170500px;}
.y5{bottom:811.138500px;}
.y1a0{bottom:816.418500px;}
.y31{bottom:821.472000px;}
.y1e2{bottom:822.964500px;}
.y103{bottom:823.432500px;}
.y250{bottom:823.731000px;}
.y178{bottom:824.130000px;}
.y281{bottom:826.006500px;}
.y159{bottom:826.042500px;}
.y128{bottom:827.103000px;}
.y20b{bottom:827.118000px;}
.y86{bottom:827.133000px;}
.y58{bottom:831.930000px;}
.ydc{bottom:833.319000px;}
.y19f{bottom:834.351000px;}
.yb1{bottom:836.160000px;}
.y1e1{bottom:840.897000px;}
.y24f{bottom:841.663500px;}
.y4{bottom:843.885000px;}
.y280{bottom:843.939000px;}
.y158{bottom:843.975000px;}
.y127{bottom:845.035500px;}
.y20a{bottom:845.050500px;}
.y30{bottom:848.371500px;}
.ydb{bottom:851.251500px;}
.y19e{bottom:852.283500px;}
.yb0{bottom:854.092500px;}
.y177{bottom:858.007500px;}
.y57{bottom:858.829500px;}
.y24e{bottom:859.596000px;}
.y27f{bottom:861.871500px;}
.y157{bottom:861.907500px;}
.y85{bottom:861.937500px;}
.y102{bottom:862.303500px;}
.y209{bottom:862.984500px;}
.yda{bottom:869.184000px;}
.yaf{bottom:872.025000px;}
.y2f{bottom:875.271000px;}
.y19d{bottom:876.105000px;}
.y1e0{bottom:876.762000px;}
.y24d{bottom:877.528500px;}
.y27e{bottom:879.804000px;}
.y126{bottom:879.840000px;}
.y208{bottom:880.917000px;}
.y176{bottom:881.827500px;}
.y56{bottom:885.729000px;}
.yd9{bottom:887.116500px;}
.yae{bottom:889.957500px;}
.y1df{bottom:894.694500px;}
.y24c{bottom:895.461000px;}
.y27d{bottom:897.736500px;}
.y156{bottom:897.774000px;}
.y84{bottom:897.802500px;}
.y207{bottom:898.849500px;}
.y2e{bottom:902.170500px;}
.y19c{bottom:903.004500px;}
.y125{bottom:903.661500px;}
.yad{bottom:907.890000px;}
.yd8{bottom:910.908000px;}
.y55{bottom:912.627000px;}
.y24b{bottom:913.395000px;}
.y27c{bottom:915.670500px;}
.y155{bottom:915.706500px;}
.y83{bottom:915.736500px;}
.y101{bottom:916.287000px;}
.y206{bottom:916.782000px;}
.y3{bottom:917.110500px;}
.y19b{bottom:920.937000px;}
.y124{bottom:921.594000px;}
.yac{bottom:925.822500px;}
.yd7{bottom:928.840500px;}
.y2d{bottom:929.068500px;}
.y24a{bottom:931.327500px;}
.y154{bottom:933.639000px;}
.y82{bottom:933.669000px;}
.y100{bottom:934.221000px;}
.y205{bottom:934.714500px;}
.y19a{bottom:938.869500px;}
.y54{bottom:939.526500px;}
.y27b{bottom:942.568500px;}
.yab{bottom:943.756500px;}
.yd6{bottom:946.773000px;}
.y2c{bottom:947.002500px;}
.y249{bottom:949.260000px;}
.y153{bottom:951.571500px;}
.y81{bottom:951.601500px;}
.y204{bottom:952.647000px;}
.y123{bottom:957.459000px;}
.yff{bottom:959.662500px;}
.y27a{bottom:960.502500px;}
.yaa{bottom:961.689000px;}
.y2b{bottom:964.935000px;}
.y199{bottom:965.769000px;}
.y53{bottom:966.426000px;}
.y248{bottom:967.192500px;}
.y2{bottom:969.414000px;}
.y152{bottom:969.504000px;}
.y80{bottom:969.534000px;}
.y203{bottom:970.581000px;}
.y122{bottom:975.393000px;}
.y279{bottom:978.435000px;}
.y2a{bottom:982.867500px;}
.ya9{bottom:984.358500px;}
.y247{bottom:985.125000px;}
.y151{bottom:987.436500px;}
.y7f{bottom:987.466500px;}
.y52{bottom:993.325500px;}
.y278{bottom:996.367500px;}
.yfe{bottom:998.520000px;}
.y198{bottom:1000.558500px;}
.yd5{bottom:1000.756500px;}
.y1{bottom:1002.291000px;}
.y246{bottom:1003.057500px;}
.y150{bottom:1005.370500px;}
.y7e{bottom:1005.400500px;}
.y51{bottom:1011.258000px;}
.y277{bottom:1014.300000px;}
.y29{bottom:1015.614000px;}
.yd4{bottom:1018.689000px;}
.y14f{bottom:1023.303000px;}
.y7d{bottom:1023.333000px;}
.y197{bottom:1024.378500px;}
.y245{bottom:1028.500500px;}
.y50{bottom:1029.190500px;}
.y276{bottom:1032.232500px;}
.yd3{bottom:1036.623000px;}
.y14e{bottom:1041.235500px;}
.y7c{bottom:1041.265500px;}
.y4f{bottom:1047.123000px;}
.yfd{bottom:1052.503500px;}
.y14d{bottom:1059.168000px;}
.y7b{bottom:1059.198000px;}
.yd2{bottom:1062.064500px;}
.y275{bottom:1064.979000px;}
.y28{bottom:1065.055500px;}
.y244{bottom:1067.446500px;}
.hb{height:36.608766px;}
.h7{height:41.484266px;}
.h9{height:41.663593px;}
.h5{height:42.799330px;}
.hc{height:44.744048px;}
.h4{height:44.831700px;}
.h8{height:44.837700px;}
.h2{height:49.781453px;}
.hd{height:52.879329px;}
.h6{height:53.798400px;}
.h3{height:64.557900px;}
.h1{height:72.511265px;}
.ha{height:280.804320px;}
.h0{height:1188.000000px;}
.w1{width:702.010800px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x34{left:13.045701px;}
.x31{left:18.076778px;}
.x30{left:27.836678px;}
.x35{left:37.518577px;}
.x32{left:49.082255px;}
.x2a{left:105.877500px;}
.x4{left:108.000000px;}
.x12{left:112.287000px;}
.x17{left:113.725500px;}
.x22{left:115.845000px;}
.x19{left:117.742500px;}
.xa{left:123.691500px;}
.x5{left:126.261000px;}
.x1a{left:133.323000px;}
.x10{left:134.389500px;}
.xb{left:139.383000px;}
.x13{left:142.294500px;}
.x6{left:144.822000px;}
.x20{left:147.228000px;}
.x33{left:149.733054px;}
.x1{left:152.019000px;}
.xc{left:155.073000px;}
.x2f{left:162.919500px;}
.xd{left:170.764500px;}
.x21{left:178.609500px;}
.x2e{left:202.147500px;}
.x3a{left:213.529500px;}
.x16{left:225.684000px;}
.x2d{left:237.523500px;}
.xe{left:249.220500px;}
.x15{left:257.065500px;}
.x1d{left:259.483500px;}
.xf{left:264.912000px;}
.x8{left:281.197500px;}
.x27{left:311.985000px;}
.x2{left:316.933500px;}
.x2b{left:319.830000px;}
.x26{left:327.676500px;}
.x29{left:343.368000px;}
.x2c{left:351.213000px;}
.x28{left:359.058000px;}
.x38{left:364.051101px;}
.x18{left:369.550500px;}
.x9{left:374.529000px;}
.x36{left:378.842078px;}
.x1c{left:380.589000px;}
.x39{left:388.523977px;}
.x3{left:400.674000px;}
.x24{left:451.528500px;}
.x7{left:455.263500px;}
.x37{left:500.738454px;}
.x25{left:515.970000px;}
.x1f{left:523.815000px;}
.x23{left:531.661500px;}
.x1e{left:539.506500px;}
.x3b{left:572.325000px;}
.x1b{left:574.246500px;}
.x14{left:619.183500px;}
.x11{left:686.899500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003387pt;}
.ls3{letter-spacing:27.891387pt;}
.ls2{letter-spacing:27.896720pt;}
.ls4{letter-spacing:195.267387pt;}
.ws2b{word-spacing:-27.895280pt;}
.ws22{word-spacing:-21.423659pt;}
.ws5a{word-spacing:-17.853099pt;}
.ws10{word-spacing:-14.877483pt;}
.ws4a{word-spacing:-9.167067pt;}
.ws3d{word-spacing:-3.081764pt;}
.ws24{word-spacing:-2.869229pt;}
.ws8c{word-spacing:-2.125355pt;}
.ws83{word-spacing:-1.912819pt;}
.ws88{word-spacing:-1.859685pt;}
.ws5c{word-spacing:-1.700284pt;}
.ws6f{word-spacing:-1.487748pt;}
.ws81{word-spacing:-1.115811pt;}
.ws74{word-spacing:-1.062677pt;}
.ws99{word-spacing:-0.850142pt;}
.ws20{word-spacing:-0.797008pt;}
.ws25{word-spacing:-0.743874pt;}
.ws8d{word-spacing:-0.371937pt;}
.ws36{word-spacing:-0.053134pt;}
.ws6a{word-spacing:-0.002533pt;}
.ws2d{word-spacing:-0.002453pt;}
.ws63{word-spacing:-0.002027pt;}
.ws67{word-spacing:-0.001600pt;}
.ws37{word-spacing:-0.001520pt;}
.ws65{word-spacing:-0.001093pt;}
.ws61{word-spacing:-0.001013pt;}
.ws62{word-spacing:-0.000587pt;}
.ws2a{word-spacing:-0.000507pt;}
.ws58{word-spacing:-0.000160pt;}
.ws29{word-spacing:-0.000080pt;}
.ws21{word-spacing:0.000000pt;}
.ws35{word-spacing:0.000347pt;}
.ws5f{word-spacing:0.000427pt;}
.ws3a{word-spacing:0.000853pt;}
.ws2c{word-spacing:0.000933pt;}
.ws57{word-spacing:0.001280pt;}
.ws3b{word-spacing:0.001360pt;}
.ws38{word-spacing:0.001787pt;}
.ws71{word-spacing:0.001867pt;}
.ws6c{word-spacing:0.002213pt;}
.ws60{word-spacing:0.002293pt;}
.ws68{word-spacing:0.002373pt;}
.ws66{word-spacing:0.002800pt;}
.ws2e{word-spacing:0.002880pt;}
.ws56{word-spacing:0.003307pt;}
.ws6b{word-spacing:0.003653pt;}
.ws77{word-spacing:0.003733pt;}
.ws59{word-spacing:0.003813pt;}
.ws5e{word-spacing:0.004240pt;}
.ws78{word-spacing:0.004320pt;}
.ws39{word-spacing:0.004827pt;}
.ws64{word-spacing:0.005253pt;}
.ws6d{word-spacing:0.005600pt;}
.ws72{word-spacing:0.006693pt;}
.ws46{word-spacing:0.053134pt;}
.wsa8{word-spacing:0.106268pt;}
.ws82{word-spacing:0.159402pt;}
.wsa1{word-spacing:0.265669pt;}
.ws9{word-spacing:0.318803pt;}
.ws90{word-spacing:0.531339pt;}
.ws1f{word-spacing:0.743874pt;}
.ws16{word-spacing:0.850142pt;}
.ws44{word-spacing:1.168945pt;}
.wsa9{word-spacing:1.328347pt;}
.ws84{word-spacing:1.381481pt;}
.ws73{word-spacing:1.487748pt;}
.ws18{word-spacing:1.540882pt;}
.wsa3{word-spacing:1.594016pt;}
.ws3f{word-spacing:1.700284pt;}
.ws75{word-spacing:1.806551pt;}
.ws7e{word-spacing:1.912819pt;}
.ws3{word-spacing:1.965953pt;}
.ws0{word-spacing:2.019940pt;}
.wsa4{word-spacing:2.125355pt;}
.ws26{word-spacing:2.178489pt;}
.wsa7{word-spacing:2.284756pt;}
.ws12{word-spacing:2.391024pt;}
.ws9d{word-spacing:2.444158pt;}
.ws96{word-spacing:2.497292pt;}
.ws70{word-spacing:2.603559pt;}
.wsb1{word-spacing:2.656693pt;}
.wsac{word-spacing:2.709827pt;}
.wsb{word-spacing:2.762961pt;}
.ws7{word-spacing:2.816095pt;}
.wsd{word-spacing:2.869229pt;}
.ws1{word-spacing:2.933009pt;}
.ws1b{word-spacing:3.028630pt;}
.ws19{word-spacing:3.134898pt;}
.ws95{word-spacing:3.241166pt;}
.ws7d{word-spacing:3.400567pt;}
.wsaf{word-spacing:3.506835pt;}
.ws13{word-spacing:3.666237pt;}
.ws49{word-spacing:3.825638pt;}
.ws43{word-spacing:3.931906pt;}
.ws15{word-spacing:4.091308pt;}
.wse{word-spacing:4.144442pt;}
.ws86{word-spacing:4.197575pt;}
.ws76{word-spacing:4.250709pt;}
.ws14{word-spacing:4.303843pt;}
.ws8e{word-spacing:4.463245pt;}
.ws94{word-spacing:4.516379pt;}
.ws47{word-spacing:4.622646pt;}
.ws9a{word-spacing:4.675780pt;}
.ws87{word-spacing:4.782048pt;}
.ws42{word-spacing:4.835182pt;}
.ws6{word-spacing:4.941450pt;}
.wsc{word-spacing:4.994583pt;}
.ws55{word-spacing:5.047717pt;}
.ws85{word-spacing:5.100851pt;}
.ws1d{word-spacing:5.153985pt;}
.ws5d{word-spacing:5.207119pt;}
.wsa{word-spacing:5.313387pt;}
.ws4f{word-spacing:5.419654pt;}
.ws7c{word-spacing:5.472788pt;}
.ws4{word-spacing:5.632190pt;}
.ws11{word-spacing:5.685324pt;}
.ws1e{word-spacing:5.738458pt;}
.ws8b{word-spacing:5.950993pt;}
.ws54{word-spacing:5.993540pt;}
.ws27{word-spacing:6.057301pt;}
.ws98{word-spacing:6.110395pt;}
.ws40{word-spacing:6.269796pt;}
.wsb0{word-spacing:6.322930pt;}
.ws92{word-spacing:6.376064pt;}
.ws23{word-spacing:6.535466pt;}
.ws89{word-spacing:6.588599pt;}
.ws80{word-spacing:6.641733pt;}
.ws41{word-spacing:6.801135pt;}
.ws7f{word-spacing:6.960537pt;}
.ws1a{word-spacing:7.192228pt;}
.ws2{word-spacing:7.268741pt;}
.ws8a{word-spacing:7.279340pt;}
.ws8{word-spacing:7.332474pt;}
.ws8f{word-spacing:7.385607pt;}
.wsaa{word-spacing:7.545009pt;}
.ws97{word-spacing:7.598143pt;}
.wsf{word-spacing:8.023214pt;}
.ws5b{word-spacing:8.182615pt;}
.ws9b{word-spacing:8.554553pt;}
.wsab{word-spacing:8.979623pt;}
.ws93{word-spacing:9.564096pt;}
.wsa6{word-spacing:9.617230pt;}
.wsad{word-spacing:9.723498pt;}
.ws9c{word-spacing:9.776631pt;}
.ws6e{word-spacing:9.829765pt;}
.ws17{word-spacing:9.936033pt;}
.ws9e{word-spacing:10.148569pt;}
.ws5{word-spacing:10.201702pt;}
.ws34{word-spacing:10.312369pt;}
.ws1c{word-spacing:10.520506pt;}
.ws9f{word-spacing:10.786175pt;}
.wsa5{word-spacing:10.839309pt;}
.wsae{word-spacing:10.998710pt;}
.ws33{word-spacing:11.693702pt;}
.ws2f{word-spacing:12.964663pt;}
.ws28{word-spacing:13.017797pt;}
.ws32{word-spacing:27.895280pt;}
.ws48{word-spacing:30.817643pt;}
.ws3c{word-spacing:34.590147pt;}
.ws53{word-spacing:39.903534pt;}
.ws45{word-spacing:48.830023pt;}
.ws3e{word-spacing:48.883157pt;}
.ws79{word-spacing:55.737426pt;}
.ws31{word-spacing:55.790560pt;}
.ws50{word-spacing:65.354656pt;}
.ws51{word-spacing:83.154501pt;}
.ws52{word-spacing:131.400052pt;}
.ws7b{word-spacing:139.478773pt;}
.ws91{word-spacing:155.829064pt;}
.ws69{word-spacing:167.370160pt;}
.ws30{word-spacing:195.268827pt;}
.wsa2{word-spacing:197.923317pt;}
.wsa0{word-spacing:240.787317pt;}
.ws7a{word-spacing:251.062773pt;}
.ws4c{word-spacing:791.009633pt;}
.ws4e{word-spacing:820.658331pt;}
.ws4d{word-spacing:857.692636pt;}
.ws4b{word-spacing:871.029236pt;}
._7a{margin-left:-91.018314pt;}
._6c{margin-left:-48.192417pt;}
._51{margin-left:-27.895280pt;}
._33{margin-left:-16.205829pt;}
._1e{margin-left:-12.433325pt;}
._5a{margin-left:-8.203846pt;}
._11{margin-left:-7.187566pt;}
._49{margin-left:-6.287205pt;}
._f{margin-left:-4.410111pt;}
._9{margin-left:-3.471110pt;}
._0{margin-left:-2.387202pt;}
._5{margin-left:-0.939001pt;}
._3{width:0.992134pt;}
._2{width:2.387202pt;}
._15{width:13.025392pt;}
._1d{width:14.080475pt;}
._13{width:15.121921pt;}
._54{width:17.636622pt;}
._6{width:19.570672pt;}
._53{width:20.499780pt;}
._c{width:21.489318pt;}
._e{width:22.578071pt;}
._a{width:23.729607pt;}
._59{width:25.238587pt;}
._d{width:26.261717pt;}
._10{width:27.806421pt;}
._b{width:29.908441pt;}
._7{width:31.901551pt;}
._5b{width:33.314934pt;}
._61{width:34.338972pt;}
._14{width:35.298297pt;}
._1{width:36.909818pt;}
._4{width:38.256533pt;}
._62{width:43.516637pt;}
._8{width:45.305779pt;}
._12{width:46.704669pt;}
._27{width:48.670622pt;}
._16{width:55.790560pt;}
._4d{width:57.862781pt;}
._50{width:60.732010pt;}
._4c{width:62.326026pt;}
._2e{width:63.760640pt;}
._4b{width:70.827444pt;}
._75{width:74.795075pt;}
._78{width:77.252820pt;}
._79{width:79.417722pt;}
._1b{width:83.685840pt;}
._3a{width:89.158628pt;}
._3b{width:90.486975pt;}
._3c{width:92.966858pt;}
._2b{width:100.877977pt;}
._7d{width:110.199639pt;}
._18{width:111.581120pt;}
._67{width:117.620972pt;}
._48{width:120.720145pt;}
._69{width:122.243618pt;}
._39{width:124.067579pt;}
._3d{width:125.820996pt;}
._64{width:133.684809pt;}
._52{width:139.484453pt;}
._7c{width:142.664432pt;}
._28{width:144.878645pt;}
._45{width:149.624969pt;}
._3f{width:150.976825pt;}
._71{width:153.025536pt;}
._74{width:155.044623pt;}
._77{width:160.676477pt;}
._55{width:167.425667pt;}
._60{width:173.183464pt;}
._38{width:176.644906pt;}
._4a{width:177.879169pt;}
._6f{width:180.022638pt;}
._40{width:181.407299pt;}
._70{width:185.528096pt;}
._7b{width:192.862131pt;}
._22{width:195.269253pt;}
._66{width:197.908287pt;}
._68{width:203.540477pt;}
._41{width:213.703467pt;}
._1a{width:223.168267pt;}
._6b{width:224.368953pt;}
._2c{width:230.761449pt;}
._19{width:251.057440pt;}
._1f{width:272.784497pt;}
._17{width:278.955093pt;}
._5d{width:285.755668pt;}
._30{width:293.564278pt;}
._29{width:324.592035pt;}
._4f{width:326.345067pt;}
._58{width:334.744720pt;}
._76{width:349.346555pt;}
._42{width:350.388267pt;}
._21{width:356.734566pt;}
._56{width:362.692787pt;}
._6a{width:368.249889pt;}
._43{width:384.079834pt;}
._57{width:390.430106pt;}
._5e{width:397.869318pt;}
._7e{width:430.338276pt;}
._2a{width:435.776959pt;}
._6d{width:446.261077pt;}
._47{width:461.166400pt;}
._25{width:474.222907pt;}
._65{width:475.682746pt;}
._4e{width:488.502355pt;}
._5f{width:502.173641pt;}
._3e{width:509.582027pt;}
._44{width:522.980906pt;}
._46{width:560.653130pt;}
._6e{width:563.224084pt;}
._36{width:566.076566pt;}
._24{width:585.804027pt;}
._2f{width:586.973312pt;}
._26{width:590.761075pt;}
._5c{width:627.192923pt;}
._23{width:641.596533pt;}
._35{width:648.593461pt;}
._37{width:652.188249pt;}
._73{width:717.069852pt;}
._34{width:733.778064pt;}
._31{width:734.901819pt;}
._63{width:1010.809283pt;}
._72{width:1055.086617pt;}
._2d{width:1121.854209pt;}
._32{width:1356.991923pt;}
._20{width:1483.459742pt;}
._1c{width:1753.763419pt;}
.fs4{font-size:31.200480pt;}
.fs5{font-size:38.133920pt;}
.fs6{font-size:45.067360pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y22a{bottom:6.846772pt;}
.y229{bottom:17.784274pt;}
.y223{bottom:34.034524pt;}
.y27{bottom:56.149333pt;}
.y224{bottom:71.180428pt;}
.y121{bottom:99.040000pt;}
.yfc{bottom:99.710667pt;}
.y4e{bottom:100.618667pt;}
.y1de{bottom:101.034667pt;}
.y14c{bottom:101.190667pt;}
.y22d{bottom:101.626897pt;}
.ya8{bottom:104.134667pt;}
.y221{bottom:104.832000pt;}
.y1bc{bottom:105.481333pt;}
.y26{bottom:105.988000pt;}
.y22b{bottom:106.081632pt;}
.y175{bottom:107.689333pt;}
.y225{bottom:108.335000pt;}
.y196{bottom:112.073333pt;}
.y120{bottom:114.980000pt;}
.yfb{bottom:115.650667pt;}
.y4d{bottom:116.560000pt;}
.y1dd{bottom:116.974667pt;}
.y14b{bottom:117.130667pt;}
.ya7{bottom:120.074667pt;}
.y220{bottom:120.772000pt;}
.y202{bottom:121.882667pt;}
.y25{bottom:121.928000pt;}
.y174{bottom:123.629333pt;}
.y7a{bottom:129.488000pt;}
.y11f{bottom:130.920000pt;}
.yfa{bottom:131.592000pt;}
.y1dc{bottom:132.914667pt;}
.y14a{bottom:133.070667pt;}
.ya6{bottom:136.014667pt;}
.y21f{bottom:136.713333pt;}
.y1bb{bottom:137.361333pt;}
.y201{bottom:137.822667pt;}
.y173{bottom:139.570667pt;}
.y195{bottom:142.997333pt;}
.y79{bottom:145.428000pt;}
.y226{bottom:145.489572pt;}
.y24{bottom:145.838667pt;}
.y11e{bottom:146.860000pt;}
.y4c{bottom:147.404000pt;}
.yf9{bottom:147.532000pt;}
.y1db{bottom:148.854667pt;}
.y149{bottom:149.010667pt;}
.y272{bottom:149.604000pt;}
.yd1{bottom:150.102667pt;}
.ya5{bottom:151.956000pt;}
.y1ba{bottom:153.301333pt;}
.y200{bottom:153.764000pt;}
.y194{bottom:158.937333pt;}
.y23{bottom:161.778667pt;}
.yf8{bottom:163.472000pt;}
.y1da{bottom:164.796000pt;}
.y148{bottom:164.950667pt;}
.y271{bottom:165.545333pt;}
.yd0{bottom:166.042667pt;}
.ya4{bottom:167.896000pt;}
.y4b{bottom:168.577333pt;}
.y21e{bottom:168.593333pt;}
.y22e{bottom:169.227937pt;}
.y1b9{bottom:169.242667pt;}
.y172{bottom:171.450667pt;}
.y274{bottom:174.132000pt;}
.y78{bottom:177.308000pt;}
.y22{bottom:177.718667pt;}
.y11d{bottom:177.797333pt;}
.y1ff{bottom:178.292000pt;}
.y36{bottom:178.538667pt;}
.yf7{bottom:179.412000pt;}
.y1d9{bottom:180.736000pt;}
.y147{bottom:180.890667pt;}
.ycf{bottom:181.982667pt;}
.y227{bottom:182.635476pt;}
.ya3{bottom:183.836000pt;}
.y4a{bottom:184.517333pt;}
.y21d{bottom:184.533333pt;}
.y1b8{bottom:185.182667pt;}
.y171{bottom:187.390667pt;}
.y270{bottom:190.073333pt;}
.y193{bottom:190.817333pt;}
.y77{bottom:193.248000pt;}
.y21{bottom:193.658667pt;}
.yf6{bottom:195.352000pt;}
.y1d8{bottom:196.676000pt;}
.y146{bottom:196.832000pt;}
.yce{bottom:197.922667pt;}
.ya2{bottom:199.776000pt;}
.y49{bottom:200.458667pt;}
.y21c{bottom:200.473333pt;}
.y1b7{bottom:201.122667pt;}
.y243{bottom:202.113333pt;}
.y170{bottom:203.330667pt;}
.y11c{bottom:205.998667pt;}
.y273{bottom:206.013333pt;}
.y192{bottom:206.758667pt;}
.y76{bottom:209.189333pt;}
.y20{bottom:209.600000pt;}
.yf5{bottom:211.292000pt;}
.y1d7{bottom:212.616000pt;}
.ycd{bottom:213.864000pt;}
.y1fe{bottom:215.494667pt;}
.ya1{bottom:215.716000pt;}
.y48{bottom:216.398667pt;}
.y21b{bottom:216.413333pt;}
.y1b6{bottom:217.062667pt;}
.y16f{bottom:219.270667pt;}
.y228{bottom:219.790048pt;}
.y11b{bottom:221.938667pt;}
.y75{bottom:225.129333pt;}
.y1f{bottom:225.540000pt;}
.y242{bottom:226.641333pt;}
.yf4{bottom:227.233333pt;}
.y1d6{bottom:228.556000pt;}
.y145{bottom:228.712000pt;}
.y1fd{bottom:231.436000pt;}
.y21a{bottom:232.354667pt;}
.y1b5{bottom:233.002667pt;}
.y22c{bottom:236.768309pt;}
.y11a{bottom:237.878667pt;}
.y26f{bottom:238.058667pt;}
.ya0{bottom:238.332000pt;}
.y191{bottom:238.638667pt;}
.y74{bottom:241.069333pt;}
.y1e{bottom:241.480000pt;}
.y1d5{bottom:244.496000pt;}
.y144{bottom:244.652000pt;}
.y47{bottom:246.512000pt;}
.y1fc{bottom:247.376000pt;}
.y219{bottom:248.294667pt;}
.y16e{bottom:251.152000pt;}
.y119{bottom:253.818667pt;}
.y26e{bottom:253.998667pt;}
.y190{bottom:254.578667pt;}
.y73{bottom:257.009333pt;}
.ycc{bottom:258.089333pt;}
.y143{bottom:260.592000pt;}
.y241{bottom:261.188000pt;}
.yf3{bottom:261.838667pt;}
.y46{bottom:262.452000pt;}
.y1fb{bottom:263.316000pt;}
.y218{bottom:264.234667pt;}
.y1b4{bottom:264.884000pt;}
.y16d{bottom:267.092000pt;}
.y118{bottom:269.760000pt;}
.y26d{bottom:269.938667pt;}
.y1d{bottom:270.588000pt;}
.y9f{bottom:272.384000pt;}
.y72{bottom:272.949333pt;}
.ycb{bottom:274.029333pt;}
.y1d4{bottom:275.341333pt;}
.y240{bottom:277.128000pt;}
.y1fa{bottom:279.256000pt;}
.y1b3{bottom:280.824000pt;}
.y117{bottom:285.700000pt;}
.y26c{bottom:285.878667pt;}
.y18f{bottom:286.458667pt;}
.y142{bottom:287.610667pt;}
.y9e{bottom:288.324000pt;}
.y71{bottom:288.889333pt;}
.y45{bottom:289.697333pt;}
.yca{bottom:289.970667pt;}
.y1f9{bottom:295.196000pt;}
.yf2{bottom:295.964000pt;}
.y217{bottom:296.114667pt;}
.y1d3{bottom:296.514667pt;}
.y16c{bottom:298.972000pt;}
.y23f{bottom:301.038667pt;}
.y116{bottom:301.640000pt;}
.y26b{bottom:301.818667pt;}
.y1b2{bottom:301.997333pt;}
.y18e{bottom:302.400000pt;}
.y141{bottom:303.550667pt;}
.y9d{bottom:304.264000pt;}
.y70{bottom:304.830667pt;}
.yc9{bottom:305.910667pt;}
.y216{bottom:312.054667pt;}
.y1c{bottom:314.536000pt;}
.y16b{bottom:314.912000pt;}
.y23e{bottom:316.978667pt;}
.yf1{bottom:317.137333pt;}
.y115{bottom:317.580000pt;}
.y26a{bottom:317.758667pt;}
.y1b1{bottom:317.937333pt;}
.y1f8{bottom:319.106667pt;}
.y140{bottom:319.492000pt;}
.y9c{bottom:320.204000pt;}
.y6f{bottom:320.770667pt;}
.y44{bottom:321.577333pt;}
.yc8{bottom:321.850667pt;}
.y1d2{bottom:327.358667pt;}
.y1b{bottom:330.477333pt;}
.y16a{bottom:330.853333pt;}
.y23d{bottom:332.920000pt;}
.yf0{bottom:333.077333pt;}
.y114{bottom:333.520000pt;}
.y269{bottom:333.700000pt;}
.y18d{bottom:334.280000pt;}
.y1f7{bottom:335.046667pt;}
.y13f{bottom:335.432000pt;}
.y6e{bottom:336.710667pt;}
.y43{bottom:337.517333pt;}
.yc7{bottom:337.790667pt;}
.y9b{bottom:341.352000pt;}
.y1b0{bottom:342.465333pt;}
.y169{bottom:346.793333pt;}
.y1d1{bottom:348.533333pt;}
.y113{bottom:349.460000pt;}
.y268{bottom:349.640000pt;}
.y18c{bottom:350.220000pt;}
.y1f6{bottom:350.986667pt;}
.y13e{bottom:351.372000pt;}
.y6d{bottom:352.650667pt;}
.y42{bottom:353.457333pt;}
.yc6{bottom:353.730667pt;}
.y1a{bottom:354.386667pt;}
.y215{bottom:356.348000pt;}
.y23c{bottom:356.829333pt;}
.yef{bottom:356.988000pt;}
.y9a{bottom:357.292000pt;}
.y168{bottom:362.733333pt;}
.y1d0{bottom:364.473333pt;}
.y112{bottom:365.401333pt;}
.y267{bottom:365.580000pt;}
.y18b{bottom:366.160000pt;}
.y1f5{bottom:366.928000pt;}
.y13d{bottom:367.312000pt;}
.y6c{bottom:368.590667pt;}
.y41{bottom:369.397333pt;}
.yc5{bottom:369.670667pt;}
.y19{bottom:370.326667pt;}
.y214{bottom:372.288000pt;}
.y23b{bottom:372.769333pt;}
.yee{bottom:372.928000pt;}
.y167{bottom:378.673333pt;}
.y1af{bottom:379.669333pt;}
.y1cf{bottom:380.413333pt;}
.y111{bottom:381.341333pt;}
.y266{bottom:381.520000pt;}
.y18a{bottom:382.100000pt;}
.y1f4{bottom:382.868000pt;}
.y13c{bottom:383.252000pt;}
.y6b{bottom:384.532000pt;}
.y40{bottom:385.338667pt;}
.yc4{bottom:385.612000pt;}
.y18{bottom:386.268000pt;}
.y23a{bottom:388.710667pt;}
.y213{bottom:394.904000pt;}
.y1ae{bottom:395.609333pt;}
.y1ce{bottom:396.353333pt;}
.y265{bottom:397.460000pt;}
.y1f3{bottom:398.808000pt;}
.y13b{bottom:399.192000pt;}
.y6a{bottom:400.472000pt;}
.y3f{bottom:401.278667pt;}
.yc3{bottom:401.552000pt;}
.yed{bottom:402.036000pt;}
.y17{bottom:402.208000pt;}
.y99{bottom:402.372000pt;}
.y239{bottom:404.650667pt;}
.y166{bottom:410.553333pt;}
.y1cd{bottom:412.293333pt;}
.y110{bottom:413.221333pt;}
.y264{bottom:413.400000pt;}
.y189{bottom:413.981333pt;}
.y1f2{bottom:414.748000pt;}
.y13a{bottom:415.133333pt;}
.y69{bottom:416.412000pt;}
.y3e{bottom:417.218667pt;}
.yc2{bottom:417.492000pt;}
.y98{bottom:418.312000pt;}
.y1ad{bottom:419.520000pt;}
.y238{bottom:420.590667pt;}
.y16{bottom:426.118667pt;}
.y165{bottom:426.494667pt;}
.y1cc{bottom:428.234667pt;}
.y10f{bottom:429.161333pt;}
.y263{bottom:429.341333pt;}
.y188{bottom:429.921333pt;}
.y212{bottom:430.106667pt;}
.y1f1{bottom:430.688000pt;}
.y68{bottom:432.352000pt;}
.y3d{bottom:433.158667pt;}
.yc1{bottom:433.432000pt;}
.y97{bottom:434.252000pt;}
.y139{bottom:435.284000pt;}
.y15{bottom:442.058667pt;}
.y164{bottom:442.434667pt;}
.y1cb{bottom:444.174667pt;}
.y237{bottom:444.501333pt;}
.y10e{bottom:445.101333pt;}
.y262{bottom:445.281333pt;}
.y187{bottom:445.861333pt;}
.y67{bottom:448.292000pt;}
.y3c{bottom:449.098667pt;}
.y96{bottom:450.192000pt;}
.y1ac{bottom:450.444000pt;}
.y138{bottom:451.224000pt;}
.y1f0{bottom:454.598667pt;}
.yc0{bottom:456.048000pt;}
.yec{bottom:457.992000pt;}
.y14{bottom:457.998667pt;}
.y1ca{bottom:460.114667pt;}
.y236{bottom:460.441333pt;}
.y10d{bottom:461.042667pt;}
.y261{bottom:461.221333pt;}
.y186{bottom:461.801333pt;}
.y163{bottom:463.608000pt;}
.y66{bottom:464.232000pt;}
.y3b{bottom:465.038667pt;}
.y95{bottom:466.132000pt;}
.y137{bottom:467.164000pt;}
.y1ef{bottom:470.538667pt;}
.y1ab{bottom:471.618667pt;}
.yeb{bottom:473.932000pt;}
.y13{bottom:473.938667pt;}
.y1c9{bottom:476.054667pt;}
.y235{bottom:476.381333pt;}
.y260{bottom:477.161333pt;}
.y185{bottom:477.741333pt;}
.y65{bottom:480.173333pt;}
.y3a{bottom:480.980000pt;}
.y10c{bottom:481.193333pt;}
.y94{bottom:482.073333pt;}
.y136{bottom:483.104000pt;}
.y1ee{bottom:486.478667pt;}
.y162{bottom:487.518667pt;}
.yea{bottom:489.872000pt;}
.y1c8{bottom:491.994667pt;}
.y234{bottom:492.321333pt;}
.ybf{bottom:493.004000pt;}
.y25f{bottom:493.101333pt;}
.y64{bottom:496.113333pt;}
.y39{bottom:496.920000pt;}
.y10b{bottom:497.133333pt;}
.y12{bottom:497.849333pt;}
.y93{bottom:498.013333pt;}
.y1ed{bottom:502.418667pt;}
.y1aa{bottom:502.542667pt;}
.ye9{bottom:505.813333pt;}
.y135{bottom:507.632000pt;}
.y1c7{bottom:507.934667pt;}
.y233{bottom:508.261333pt;}
.ybe{bottom:508.945333pt;}
.y25e{bottom:509.041333pt;}
.y184{bottom:509.622667pt;}
.y63{bottom:512.053333pt;}
.y10a{bottom:513.073333pt;}
.y11{bottom:513.789333pt;}
.y92{bottom:513.953333pt;}
.y1ec{bottom:518.360000pt;}
.y161{bottom:518.456000pt;}
.y1a9{bottom:518.482667pt;}
.ye8{bottom:521.753333pt;}
.y1c6{bottom:523.876000pt;}
.y232{bottom:524.202667pt;}
.ybd{bottom:524.885333pt;}
.y25d{bottom:524.982667pt;}
.y183{bottom:525.562667pt;}
.y62{bottom:527.993333pt;}
.y10{bottom:529.729333pt;}
.y91{bottom:529.893333pt;}
.y38{bottom:530.305333pt;}
.y1eb{bottom:534.300000pt;}
.y109{bottom:537.601333pt;}
.ye7{bottom:537.693333pt;}
.y160{bottom:539.629333pt;}
.y1c5{bottom:539.816000pt;}
.y231{bottom:540.142667pt;}
.ybc{bottom:540.825333pt;}
.y25c{bottom:540.922667pt;}
.y182{bottom:541.502667pt;}
.y134{bottom:543.920000pt;}
.y61{bottom:543.933333pt;}
.yf{bottom:545.669333pt;}
.y90{bottom:545.833333pt;}
.y1ea{bottom:550.240000pt;}
.y1a8{bottom:550.362667pt;}
.ye6{bottom:553.633333pt;}
.y1c4{bottom:555.756000pt;}
.y230{bottom:556.082667pt;}
.ybb{bottom:556.765333pt;}
.y25b{bottom:556.862667pt;}
.y181{bottom:557.442667pt;}
.y289{bottom:557.560000pt;}
.y133{bottom:559.860000pt;}
.y60{bottom:559.873333pt;}
.y8f{bottom:561.773333pt;}
.y1a7{bottom:566.302667pt;}
.ye5{bottom:569.573333pt;}
.ye{bottom:569.580000pt;}
.y15f{bottom:570.566667pt;}
.y1c3{bottom:571.696000pt;}
.y22f{bottom:572.022667pt;}
.y25a{bottom:572.802667pt;}
.y37{bottom:572.892000pt;}
.y180{bottom:573.382667pt;}
.y288{bottom:573.500000pt;}
.y1e9{bottom:574.150667pt;}
.y132{bottom:575.801333pt;}
.y5f{bottom:575.814667pt;}
.yba{bottom:576.916000pt;}
.y8e{bottom:577.714667pt;}
.ye4{bottom:585.513333pt;}
.yd{bottom:585.520000pt;}
.y1c2{bottom:587.636000pt;}
.y108{bottom:588.244000pt;}
.y259{bottom:588.742667pt;}
.y1e8{bottom:590.090667pt;}
.y131{bottom:591.741333pt;}
.y5e{bottom:591.754667pt;}
.yb9{bottom:592.857333pt;}
.y17f{bottom:593.601333pt;}
.y8d{bottom:593.654667pt;}
.y222{bottom:595.933026pt;}
.y287{bottom:597.410667pt;}
.y1a6{bottom:598.184000pt;}
.ye3{bottom:601.454667pt;}
.yc{bottom:601.460000pt;}
.y1c1{bottom:603.576000pt;}
.y258{bottom:604.682667pt;}
.y1e7{bottom:606.030667pt;}
.y130{bottom:607.681333pt;}
.y211{bottom:607.694667pt;}
.yb8{bottom:608.797333pt;}
.y17e{bottom:609.541333pt;}
.y8c{bottom:609.594667pt;}
.y107{bottom:610.860000pt;}
.y286{bottom:613.350667pt;}
.y1a5{bottom:614.124000pt;}
.ye2{bottom:617.394667pt;}
.yb{bottom:617.401333pt;}
.y1c0{bottom:619.517333pt;}
.y257{bottom:620.624000pt;}
.y1e6{bottom:621.970667pt;}
.y15e{bottom:622.678667pt;}
.y12f{bottom:623.621333pt;}
.y5d{bottom:623.634667pt;}
.yb7{bottom:624.737333pt;}
.y17d{bottom:625.481333pt;}
.y8b{bottom:632.210667pt;}
.ye1{bottom:633.334667pt;}
.ya{bottom:633.341333pt;}
.y256{bottom:636.564000pt;}
.y15d{bottom:638.618667pt;}
.y12e{bottom:639.561333pt;}
.y210{bottom:639.574667pt;}
.y17c{bottom:641.421333pt;}
.y285{bottom:642.458667pt;}
.y5c{bottom:643.852000pt;}
.y35{bottom:645.173333pt;}
.y106{bottom:645.398667pt;}
.y1a4{bottom:646.004000pt;}
.y1e5{bottom:646.498667pt;}
.yb6{bottom:648.648000pt;}
.ye0{bottom:649.274667pt;}
.y1bf{bottom:650.361333pt;}
.y255{bottom:652.504000pt;}
.y12d{bottom:655.501333pt;}
.y20f{bottom:655.514667pt;}
.y9{bottom:657.250667pt;}
.y17b{bottom:657.361333pt;}
.y1a3{bottom:661.944000pt;}
.yb5{bottom:664.588000pt;}
.ydf{bottom:665.214667pt;}
.y8a{bottom:666.261333pt;}
.y5b{bottom:667.762667pt;}
.y254{bottom:668.444000pt;}
.y15c{bottom:670.498667pt;}
.y12c{bottom:671.442667pt;}
.y20e{bottom:671.456000pt;}
.y1be{bottom:671.534667pt;}
.y8{bottom:673.192000pt;}
.y1a2{bottom:677.884000pt;}
.yb4{bottom:680.528000pt;}
.yde{bottom:681.154667pt;}
.y17a{bottom:681.272000pt;}
.y89{bottom:682.201333pt;}
.y34{bottom:682.377333pt;}
.y1e4{bottom:683.702667pt;}
.y253{bottom:684.384000pt;}
.y284{bottom:686.406667pt;}
.y15b{bottom:686.438667pt;}
.y12b{bottom:687.382667pt;}
.y20d{bottom:687.396000pt;}
.y7{bottom:689.132000pt;}
.y5a{bottom:691.673333pt;}
.y105{bottom:693.384000pt;}
.yb3{bottom:696.468000pt;}
.y88{bottom:698.142667pt;}
.y33{bottom:698.317333pt;}
.y1e3{bottom:699.642667pt;}
.y252{bottom:700.324000pt;}
.y283{bottom:702.346667pt;}
.y15a{bottom:702.380000pt;}
.y12a{bottom:703.322667pt;}
.y20c{bottom:703.336000pt;}
.ydd{bottom:703.770667pt;}
.y6{bottom:705.072000pt;}
.y104{bottom:709.324000pt;}
.y1a1{bottom:709.765333pt;}
.y179{bottom:711.385333pt;}
.yb2{bottom:712.408000pt;}
.y87{bottom:714.082667pt;}
.y32{bottom:714.257333pt;}
.y59{bottom:715.582667pt;}
.y251{bottom:716.265333pt;}
.y282{bottom:718.288000pt;}
.y1bd{bottom:718.320000pt;}
.y129{bottom:719.262667pt;}
.y5{bottom:721.012000pt;}
.y1a0{bottom:725.705333pt;}
.y31{bottom:730.197333pt;}
.y1e2{bottom:731.524000pt;}
.y103{bottom:731.940000pt;}
.y250{bottom:732.205333pt;}
.y178{bottom:732.560000pt;}
.y281{bottom:734.228000pt;}
.y159{bottom:734.260000pt;}
.y128{bottom:735.202667pt;}
.y20b{bottom:735.216000pt;}
.y86{bottom:735.229333pt;}
.y58{bottom:739.493333pt;}
.ydc{bottom:740.728000pt;}
.y19f{bottom:741.645333pt;}
.yb1{bottom:743.253333pt;}
.y1e1{bottom:747.464000pt;}
.y24f{bottom:748.145333pt;}
.y4{bottom:750.120000pt;}
.y280{bottom:750.168000pt;}
.y158{bottom:750.200000pt;}
.y127{bottom:751.142667pt;}
.y20a{bottom:751.156000pt;}
.y30{bottom:754.108000pt;}
.ydb{bottom:756.668000pt;}
.y19e{bottom:757.585333pt;}
.yb0{bottom:759.193333pt;}
.y177{bottom:762.673333pt;}
.y57{bottom:763.404000pt;}
.y24e{bottom:764.085333pt;}
.y27f{bottom:766.108000pt;}
.y157{bottom:766.140000pt;}
.y85{bottom:766.166667pt;}
.y102{bottom:766.492000pt;}
.y209{bottom:767.097333pt;}
.yda{bottom:772.608000pt;}
.yaf{bottom:775.133333pt;}
.y2f{bottom:778.018667pt;}
.y19d{bottom:778.760000pt;}
.y1e0{bottom:779.344000pt;}
.y24d{bottom:780.025333pt;}
.y27e{bottom:782.048000pt;}
.y126{bottom:782.080000pt;}
.y208{bottom:783.037333pt;}
.y176{bottom:783.846667pt;}
.y56{bottom:787.314667pt;}
.yd9{bottom:788.548000pt;}
.yae{bottom:791.073333pt;}
.y1df{bottom:795.284000pt;}
.y24c{bottom:795.965333pt;}
.y27d{bottom:797.988000pt;}
.y156{bottom:798.021333pt;}
.y84{bottom:798.046667pt;}
.y207{bottom:798.977333pt;}
.y2e{bottom:801.929333pt;}
.y19c{bottom:802.670667pt;}
.y125{bottom:803.254667pt;}
.yad{bottom:807.013333pt;}
.yd8{bottom:809.696000pt;}
.y55{bottom:811.224000pt;}
.y24b{bottom:811.906667pt;}
.y27c{bottom:813.929333pt;}
.y155{bottom:813.961333pt;}
.y83{bottom:813.988000pt;}
.y101{bottom:814.477333pt;}
.y206{bottom:814.917333pt;}
.y3{bottom:815.209333pt;}
.y19b{bottom:818.610667pt;}
.y124{bottom:819.194667pt;}
.yac{bottom:822.953333pt;}
.yd7{bottom:825.636000pt;}
.y2d{bottom:825.838667pt;}
.y24a{bottom:827.846667pt;}
.y154{bottom:829.901333pt;}
.y82{bottom:829.928000pt;}
.y100{bottom:830.418667pt;}
.y205{bottom:830.857333pt;}
.y19a{bottom:834.550667pt;}
.y54{bottom:835.134667pt;}
.y27b{bottom:837.838667pt;}
.yab{bottom:838.894667pt;}
.yd6{bottom:841.576000pt;}
.y2c{bottom:841.780000pt;}
.y249{bottom:843.786667pt;}
.y153{bottom:845.841333pt;}
.y81{bottom:845.868000pt;}
.y204{bottom:846.797333pt;}
.y123{bottom:851.074667pt;}
.yff{bottom:853.033333pt;}
.y27a{bottom:853.780000pt;}
.yaa{bottom:854.834667pt;}
.y2b{bottom:857.720000pt;}
.y199{bottom:858.461333pt;}
.y53{bottom:859.045333pt;}
.y248{bottom:859.726667pt;}
.y2{bottom:861.701333pt;}
.y152{bottom:861.781333pt;}
.y80{bottom:861.808000pt;}
.y203{bottom:862.738667pt;}
.y122{bottom:867.016000pt;}
.y279{bottom:869.720000pt;}
.y2a{bottom:873.660000pt;}
.ya9{bottom:874.985333pt;}
.y247{bottom:875.666667pt;}
.y151{bottom:877.721333pt;}
.y7f{bottom:877.748000pt;}
.y52{bottom:882.956000pt;}
.y278{bottom:885.660000pt;}
.yfe{bottom:887.573333pt;}
.y198{bottom:889.385333pt;}
.yd5{bottom:889.561333pt;}
.y1{bottom:890.925333pt;}
.y246{bottom:891.606667pt;}
.y150{bottom:893.662667pt;}
.y7e{bottom:893.689333pt;}
.y51{bottom:898.896000pt;}
.y277{bottom:901.600000pt;}
.y29{bottom:902.768000pt;}
.yd4{bottom:905.501333pt;}
.y14f{bottom:909.602667pt;}
.y7d{bottom:909.629333pt;}
.y197{bottom:910.558667pt;}
.y245{bottom:914.222667pt;}
.y50{bottom:914.836000pt;}
.y276{bottom:917.540000pt;}
.yd3{bottom:921.442667pt;}
.y14e{bottom:925.542667pt;}
.y7c{bottom:925.569333pt;}
.y4f{bottom:930.776000pt;}
.yfd{bottom:935.558667pt;}
.y14d{bottom:941.482667pt;}
.y7b{bottom:941.509333pt;}
.yd2{bottom:944.057333pt;}
.y275{bottom:946.648000pt;}
.y28{bottom:946.716000pt;}
.y244{bottom:948.841333pt;}
.hb{height:32.541126pt;}
.h7{height:36.874903pt;}
.h9{height:37.034305pt;}
.h5{height:38.043849pt;}
.hc{height:39.772487pt;}
.h4{height:39.850400pt;}
.h8{height:39.855733pt;}
.h2{height:44.250180pt;}
.hd{height:47.003848pt;}
.h6{height:47.820800pt;}
.h3{height:57.384800pt;}
.h1{height:64.454458pt;}
.ha{height:249.603840pt;}
.h0{height:1056.000000pt;}
.w1{width:624.009600pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x34{left:11.596178pt;}
.x31{left:16.068247pt;}
.x30{left:24.743714pt;}
.x35{left:33.349846pt;}
.x32{left:43.628671pt;}
.x2a{left:94.113333pt;}
.x4{left:96.000000pt;}
.x12{left:99.810667pt;}
.x17{left:101.089333pt;}
.x22{left:102.973333pt;}
.x19{left:104.660000pt;}
.xa{left:109.948000pt;}
.x5{left:112.232000pt;}
.x1a{left:118.509333pt;}
.x10{left:119.457333pt;}
.xb{left:123.896000pt;}
.x13{left:126.484000pt;}
.x6{left:128.730667pt;}
.x20{left:130.869333pt;}
.x33{left:133.096048pt;}
.x1{left:135.128000pt;}
.xc{left:137.842667pt;}
.x2f{left:144.817333pt;}
.xd{left:151.790667pt;}
.x21{left:158.764000pt;}
.x2e{left:179.686667pt;}
.x3a{left:189.804000pt;}
.x16{left:200.608000pt;}
.x2d{left:211.132000pt;}
.xe{left:221.529333pt;}
.x15{left:228.502667pt;}
.x1d{left:230.652000pt;}
.xf{left:235.477333pt;}
.x8{left:249.953333pt;}
.x27{left:277.320000pt;}
.x2{left:281.718667pt;}
.x2b{left:284.293333pt;}
.x26{left:291.268000pt;}
.x29{left:305.216000pt;}
.x2c{left:312.189333pt;}
.x28{left:319.162667pt;}
.x38{left:323.600978pt;}
.x18{left:328.489333pt;}
.x9{left:332.914667pt;}
.x36{left:336.748514pt;}
.x1c{left:338.301333pt;}
.x39{left:345.354646pt;}
.x3{left:356.154667pt;}
.x24{left:401.358667pt;}
.x7{left:404.678667pt;}
.x37{left:445.100848pt;}
.x25{left:458.640000pt;}
.x1f{left:465.613333pt;}
.x23{left:472.588000pt;}
.x1e{left:479.561333pt;}
.x3b{left:508.733333pt;}
.x1b{left:510.441333pt;}
.x14{left:550.385333pt;}
.x11{left:610.577333pt;}
}




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