
    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_5af35b386de01de838511271.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_ae299821aa2d9d6941fa0e90.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_6a7f0ccbccf48860e09bc4e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107910;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_e3579c8d041d285cd741769c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107910;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_1bd74287d02e33bb9e53bd53.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.475000;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_1f55c733967a9b8fe1f4d63f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.109863;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_23b0e7ce508e59a4b7e1ea9d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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_820dd5159bc1e726bf886b19.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8af7898e559799c3768b03fa.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.022949;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_1add5641807873c825d80314.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.234000;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:ffd;src:url('chunks/assets/font_d6bfdea3f55dae4dcd557952.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.188000;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:ffe;src:url('chunks/assets/font_c6631420b5c9dd6588bd0c6a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.692383;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:fff;src:url('chunks/assets/font_97b58bc55c9381dbafafe030.woff2')format("woff");}.fff{font-family:fff;line-height:0.230000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.060518px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:12.574550px;}
.ls6{letter-spacing:12.782286px;}
.ls8{letter-spacing:12.807908px;}
.ls5{letter-spacing:13.122286px;}
.ls1{letter-spacing:19.038201px;}
.ls4{letter-spacing:42.809001px;}
.ls3{letter-spacing:43.153309px;}
.ls2{letter-spacing:49.613872px;}
.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;}
}
.ws3{word-spacing:-24.230394px;}
.ws2{word-spacing:-15.192414px;}
.ws6{word-spacing:-14.011436px;}
.ws5{word-spacing:-12.610134px;}
.ws8{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.620260px;}
.wsa{word-spacing:-11.208832px;}
.ws4{word-spacing:-10.759500px;}
.ws7{word-spacing:-10.061328px;}
.ws9{word-spacing:-9.563850px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-17.343592px;}
._e{margin-left:-4.462266px;}
._8{margin-left:-3.344053px;}
._6{margin-left:-2.027090px;}
._7{margin-left:-1.011393px;}
._4{width:1.070378px;}
._2{width:2.227237px;}
._1{width:3.421553px;}
._a{width:4.686806px;}
._10{width:5.735954px;}
._9{width:6.791365px;}
._c{width:8.530132px;}
._b{width:9.575955px;}
._3{width:10.933133px;}
._d{width:11.938116px;}
._16{width:12.952507px;}
._0{width:15.579756px;}
._12{width:16.804550px;}
._f{width:17.994892px;}
._11{width:19.027817px;}
._17{width:20.950205px;}
._15{width:22.092673px;}
._13{width:23.389055px;}
._14{width:24.455455px;}
._18{width:25.727483px;}
._1b{width:129.226741px;}
._1c{width:130.366752px;}
._31{width:143.985675px;}
._33{width:159.134813px;}
._25{width:163.763716px;}
._1e{width:169.119472px;}
._30{width:170.305390px;}
._29{width:175.393358px;}
._2b{width:180.389513px;}
._2a{width:181.628988px;}
._3a{width:184.230355px;}
._3b{width:190.909748px;}
._34{width:198.729152px;}
._39{width:202.784224px;}
._2f{width:210.894369px;}
._24{width:212.883650px;}
._35{width:215.102463px;}
._37{width:217.703830px;}
._27{width:219.769622px;}
._36{width:227.688490px;}
._26{width:232.546926px;}
._2c{width:237.099318px;}
._2d{width:238.132214px;}
._38{width:240.159750px;}
._28{width:245.171208px;}
._32{width:254.390759px;}
._2e{width:259.999001px;}
._19{width:262.217814px;}
._1a{width:268.927811px;}
._1d{width:307.894761px;}
._21{width:332.240498px;}
._23{width:362.511996px;}
._20{width:375.438496px;}
._22{width:419.657912px;}
._1f{width:438.024330px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(46,116,163);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.255400px;}
.fsc{font-size:38.256000px;}
.fs9{font-size:41.842200px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.038000px;}
.fsa{font-size:47.820600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:63.362400px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:80.697000px;}
.fsb{font-size:83.685000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:0.000732px;}
.y5b{bottom:47.430000px;}
.y5{bottom:66.525004px;}
.y26{bottom:76.860000px;}
.y197{bottom:78.407136px;}
.ycf{bottom:78.411098px;}
.y126{bottom:78.411223px;}
.y187{bottom:78.412270px;}
.y99{bottom:78.416181px;}
.y164{bottom:78.491250px;}
.yd9{bottom:80.027434px;}
.y1ee{bottom:84.710205px;}
.y12a{bottom:86.575394px;}
.y196{bottom:90.397335px;}
.y25{bottom:91.200000px;}
.y186{bottom:94.144052px;}
.yce{bottom:94.144075px;}
.y98{bottom:94.147962px;}
.y108{bottom:95.082855px;}
.yd8{bottom:95.759216px;}
.y243{bottom:96.698491px;}
.y1ed{bottom:96.700404px;}
.y4{bottom:97.125005px;}
.y163{bottom:99.671940px;}
.y195{bottom:102.303372px;}
.y129{bottom:102.307176px;}
.y24{bottom:105.630000px;}
.y242{bottom:108.603572px;}
.y1ec{bottom:108.605485px;}
.y185{bottom:109.790952px;}
.ycd{bottom:109.790976px;}
.y125{bottom:109.791100px;}
.y97{bottom:109.794863px;}
.y107{bottom:110.730951px;}
.yd7{bottom:111.406116px;}
.y194{bottom:114.293571px;}
.y128{bottom:117.954077px;}
.y59{bottom:119.905636px;}
.y241{bottom:120.593771px;}
.y1eb{bottom:120.595683px;}
.ycc{bottom:125.522758px;}
.y184{bottom:125.523929px;}
.y96{bottom:125.526645px;}
.y193{bottom:126.198651px;}
.y106{bottom:126.462733px;}
.yd6{bottom:127.139094px;}
.y240{bottom:132.584926px;}
.y1ea{bottom:132.586839px;}
.y162{bottom:132.836502px;}
.y127{bottom:133.687054px;}
.y58{bottom:134.192100px;}
.y192{bottom:138.188850px;}
.y21{bottom:139.264499px;}
.ycb{bottom:141.169658px;}
.y183{bottom:141.170830px;}
.y95{bottom:141.174740px;}
.y105{bottom:142.109633px;}
.yd5{bottom:142.785994px;}
.y23f{bottom:144.490006px;}
.y1e9{bottom:144.491919px;}
.y161{bottom:145.677884px;}
.y124{bottom:149.333954px;}
.y23e{bottom:156.480205px;}
.y1e8{bottom:156.482118px;}
.yca{bottom:156.901440px;}
.y182{bottom:156.902612px;}
.y94{bottom:156.906522px;}
.y104{bottom:157.841415px;}
.yd4{bottom:158.517776px;}
.y160{bottom:158.518309px;}
.y54{bottom:159.703500px;}
.y123{bottom:165.065736px;}
.y191{bottom:165.747032px;}
.y23d{bottom:168.386242px;}
.y1e7{bottom:168.388155px;}
.y15f{bottom:171.444808px;}
.y181{bottom:172.549512px;}
.yc9{bottom:172.549536px;}
.yae{bottom:172.553423px;}
.y10b{bottom:173.318552px;}
.y103{bottom:173.574392px;}
.yd3{bottom:174.164676px;}
.y23c{bottom:180.376441px;}
.y1e6{bottom:180.378353px;}
.y122{bottom:180.712637px;}
.y15e{bottom:184.285233px;}
.y180{bottom:188.282489px;}
.y93{bottom:188.285205px;}
.y10a{bottom:189.051530px;}
.y102{bottom:189.221293px;}
.yd2{bottom:189.896458px;}
.y23b{bottom:192.281521px;}
.y1e5{bottom:192.283434px;}
.y121{bottom:196.445614px;}
.y18{bottom:196.933500px;}
.y190{bottom:197.125714px;}
.y52{bottom:202.396478px;}
.yc8{bottom:203.928218px;}
.y17f{bottom:203.929390px;}
.yad{bottom:203.933300px;}
.y23a{bottom:204.271720px;}
.y1e4{bottom:204.273633px;}
.y109{bottom:204.698430px;}
.y101{bottom:204.953075px;}
.yd1{bottom:205.544554px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y120{bottom:212.092514px;}
.y18f{bottom:212.858691px;}
.y239{bottom:216.262875px;}
.y1e3{bottom:216.264788px;}
.y15d{bottom:217.449796px;}
.y51{bottom:218.129456px;}
.y17e{bottom:219.661172px;}
.yac{bottom:219.665082px;}
.y92{bottom:220.430212px;}
.y100{bottom:220.599975px;}
.yd0{bottom:221.276336px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y11f{bottom:227.824296px;}
.y238{bottom:228.167955px;}
.y1e2{bottom:228.169868px;}
.y18e{bottom:228.505592px;}
.y15c{bottom:230.291177px;}
.y50{bottom:233.776356px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y17d{bottom:235.308072px;}
.yab{bottom:235.311983px;}
.y91{bottom:236.077112px;}
.yff{bottom:236.332952px;}
.yc7{bottom:237.008118px;}
.y237{bottom:240.158154px;}
.y1e1{bottom:240.160067px;}
.y15b{bottom:243.131602px;}
.y11e{bottom:243.471197px;}
.y4f{bottom:249.508138px;}
.y17c{bottom:251.039854px;}
.yaa{bottom:251.043764px;}
.y90{bottom:251.810090px;}
.yfe{bottom:251.979853px;}
.y236{bottom:252.063235px;}
.y1e0{bottom:252.065147px;}
.yc6{bottom:252.655018px;}
.y15a{bottom:255.972984px;}
.y11d{bottom:259.202978px;}
.y18d{bottom:259.884274px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y235{bottom:264.054390px;}
.y1df{bottom:264.056303px;}
.y4e{bottom:265.155038px;}
.y17b{bottom:266.687950px;}
.ya9{bottom:266.691860px;}
.y8f{bottom:267.456990px;}
.yfd{bottom:267.711635px;}
.yc5{bottom:268.387996px;}
.y159{bottom:268.813409px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y11c{bottom:274.851074px;}
.y234{bottom:276.044589px;}
.y1de{bottom:276.046501px;}
.y4d{bottom:280.888016px;}
.y158{bottom:281.738952px;}
.y17a{bottom:282.419732px;}
.ya8{bottom:282.423642px;}
.y8e{bottom:283.188772px;}
.yfc{bottom:283.358535px;}
.yc4{bottom:284.034896px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y233{bottom:287.949669px;}
.y1dd{bottom:287.951582px;}
.y11b{bottom:290.582856px;}
.y18c{bottom:291.518796px;}
.y157{bottom:294.580334px;}
.y4c{bottom:296.534916px;}
.y179{bottom:298.066632px;}
.ya7{bottom:298.070543px;}
.y8d{bottom:298.835672px;}
.yfb{bottom:299.091512px;}
.yc3{bottom:299.766678px;}
.y232{bottom:299.939868px;}
.y1dc{bottom:299.941781px;}
.y11a{bottom:306.229756px;}
.y18b{bottom:307.165697px;}
.y156{bottom:307.420759px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y231{bottom:311.845905px;}
.y1db{bottom:311.847817px;}
.y4b{bottom:312.266698px;}
.y178{bottom:313.798414px;}
.ya6{bottom:313.802324px;}
.y8c{bottom:314.567454px;}
.yfa{bottom:314.738413px;}
.yc2{bottom:315.413578px;}
.y155{bottom:320.262140px;}
.y119{bottom:321.961538px;}
.y18a{bottom:322.897478px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y230{bottom:323.836103px;}
.y1da{bottom:323.838016px;}
.y4a{bottom:327.913598px;}
.ya5{bottom:329.449225px;}
.y8b{bottom:330.215550px;}
.yf9{bottom:330.470195px;}
.yc1{bottom:331.146555px;}
.y154{bottom:333.102565px;}
.y22f{bottom:335.741184px;}
.y1d9{bottom:335.743097px;}
.y118{bottom:337.609634px;}
.y189{bottom:338.545574px;}
.y49{bottom:343.646576px;}
.y177{bottom:345.178291px;}
.ya4{bottom:345.182202px;}
.y153{bottom:345.942990px;}
.y8a{bottom:345.947332px;}
.yf8{bottom:346.117095px;}
.yc0{bottom:346.793456px;}
.y22e{bottom:347.732339px;}
.y1d8{bottom:347.734252px;}
.yf{bottom:348.133500px;}
.y117{bottom:353.341416px;}
.y152{bottom:358.784371px;}
.y48{bottom:359.378358px;}
.y22d{bottom:359.722538px;}
.y1d7{bottom:359.724451px;}
.ya3{bottom:360.829102px;}
.yf7{bottom:361.848877px;}
.ybf{bottom:362.525238px;}
.y116{bottom:368.988316px;}
.y188{bottom:369.924256px;}
.y151{bottom:371.624796px;}
.y22c{bottom:371.627618px;}
.y1d6{bottom:371.629531px;}
.y47{bottom:375.025258px;}
.ya2{bottom:376.560884px;}
.y89{bottom:377.326014px;}
.yf6{bottom:377.496973px;}
.ybe{bottom:378.172138px;}
.y22b{bottom:383.617817px;}
.y1d5{bottom:383.619730px;}
.y150{bottom:384.550340px;}
.y115{bottom:384.720098px;}
.y176{bottom:385.656038px;}
.ye{bottom:386.785499px;}
.y46{bottom:390.757040px;}
.ya1{bottom:392.207785px;}
.yf5{bottom:393.228754px;}
.ybd{bottom:393.905115px;}
.y22a{bottom:395.523854px;}
.y1d4{bottom:395.525767px;}
.y114{bottom:400.368194px;}
.y175{bottom:401.389016px;}
.y45{bottom:406.405136px;}
.y229{bottom:407.514053px;}
.y1d3{bottom:407.515965px;}
.ya0{bottom:407.940762px;}
.yd{bottom:408.044999px;}
.y88{bottom:408.875655px;}
.ybc{bottom:409.552016px;}
.y113{bottom:416.099976px;}
.y174{bottom:417.035916px;}
.y14f{bottom:417.715859px;}
.y228{bottom:419.504251px;}
.y1d2{bottom:419.506164px;}
.y44{bottom:422.136917px;}
.y9f{bottom:423.587662px;}
.y87{bottom:424.607437px;}
.ybb{bottom:425.283798px;}
.y14e{bottom:430.556284px;}
.y227{bottom:431.409332px;}
.y1d1{bottom:431.411245px;}
.y112{bottom:431.746876px;}
.y173{bottom:432.767698px;}
.y43{bottom:437.783818px;}
.y9e{bottom:439.319444px;}
.y86{bottom:440.255532px;}
.yba{bottom:440.930698px;}
.y226{bottom:443.400487px;}
.y1d0{bottom:443.402400px;}
.y111{bottom:447.478658px;}
.y172{bottom:448.414598px;}
.y53{bottom:453.515600px;}
.y9d{bottom:454.966345px;}
.y225{bottom:455.305567px;}
.y1cf{bottom:455.307480px;}
.y85{bottom:455.987314px;}
.yb9{bottom:456.662480px;}
.y110{bottom:463.125559px;}
.y14d{bottom:463.721803px;}
.y171{bottom:464.147576px;}
.y224{bottom:467.295766px;}
.y1ce{bottom:467.297679px;}
.y42{bottom:469.162500px;}
.y9c{bottom:470.699322px;}
.y84{bottom:471.634215px;}
.yb8{bottom:472.310576px;}
.y14c{bottom:476.562228px;}
.y10f{bottom:478.858536px;}
.y223{bottom:479.286921px;}
.y1cd{bottom:479.288834px;}
.y170{bottom:479.794476px;}
.y9b{bottom:486.346222px;}
.y83{bottom:487.365997px;}
.yb7{bottom:488.042358px;}
.y14b{bottom:489.403609px;}
.y222{bottom:491.192002px;}
.y1cc{bottom:491.193915px;}
.y10e{bottom:494.590318px;}
.y16f{bottom:495.526258px;}
.yf4{bottom:502.078004px;}
.y14a{bottom:502.244034px;}
.yc{bottom:502.864502px;}
.y82{bottom:503.014092px;}
.y221{bottom:503.182201px;}
.y1cb{bottom:503.184113px;}
.yb6{bottom:503.689258px;}
.y10d{bottom:510.237218px;}
.y16e{bottom:511.173158px;}
.y149{bottom:515.084459px;}
.y220{bottom:515.087281px;}
.y1ca{bottom:515.089194px;}
.y9a{bottom:517.724904px;}
.y81{bottom:518.745874px;}
.yb5{bottom:519.421040px;}
.yb{bottom:520.864502px;}
.y10c{bottom:525.969000px;}
.y16d{bottom:526.906136px;}
.y21f{bottom:527.078436px;}
.y1c9{bottom:527.080349px;}
.y148{bottom:528.010959px;}
.y41{bottom:528.692574px;}
.yf3{bottom:533.457882px;}
.y80{bottom:534.392775px;}
.yb4{bottom:535.069136px;}
.ya{bottom:538.864499px;}
.y21e{bottom:538.983517px;}
.y1c8{bottom:538.985429px;}
.y147{bottom:540.851384px;}
.y16c{bottom:542.553036px;}
.y40{bottom:543.064038px;}
.yf2{bottom:549.189664px;}
.y7f{bottom:550.124557px;}
.yb3{bottom:550.800917px;}
.y21d{bottom:550.973715px;}
.y1c7{bottom:550.975628px;}
.y146{bottom:553.691809px;}
.y9{bottom:556.864499px;}
.y3f{bottom:557.350502px;}
.y16b{bottom:558.284818px;}
.y12b{bottom:559.558500px;}
.y21c{bottom:562.963914px;}
.y1c6{bottom:562.965827px;}
.yf1{bottom:564.836564px;}
.y7e{bottom:565.771457px;}
.yb2{bottom:566.447818px;}
.y145{bottom:566.533190px;}
.y3e{bottom:571.721966px;}
.y16a{bottom:573.931718px;}
.y21b{bottom:574.869951px;}
.y1c5{bottom:574.871864px;}
.yf0{bottom:580.568346px;}
.y7d{bottom:581.504434px;}
.yb1{bottom:582.179600px;}
.y3d{bottom:586.093430px;}
.y144{bottom:586.261500px;}
.y21a{bottom:586.860150px;}
.y1c4{bottom:586.862062px;}
.y169{bottom:589.663500px;}
.yef{bottom:596.215246px;}
.y7c{bottom:597.151335px;}
.yb0{bottom:597.826500px;}
.y219{bottom:598.765230px;}
.y1c3{bottom:598.767143px;}
.y3c{bottom:600.379894px;}
.y143{bottom:605.991036px;}
.y218{bottom:610.755429px;}
.y1c2{bottom:610.757342px;}
.yee{bottom:611.948224px;}
.y7b{bottom:612.883116px;}
.y3b{bottom:614.751359px;}
.y142{bottom:620.362500px;}
.y217{bottom:622.746584px;}
.y1c1{bottom:622.748497px;}
.y198{bottom:623.338500px;}
.yed{bottom:627.595124px;}
.y7a{bottom:628.530017px;}
.y3a{bottom:629.122823px;}
.yda{bottom:631.503000px;}
.y216{bottom:634.651665px;}
.y1c0{bottom:634.653577px;}
.yec{bottom:643.326906px;}
.y39{bottom:643.409287px;}
.y79{bottom:644.262994px;}
.y8{bottom:645.510000px;}
.y215{bottom:646.641863px;}
.y1bf{bottom:646.643776px;}
.y141{bottom:654.381833px;}
.y38{bottom:657.780751px;}
.y214{bottom:658.547900px;}
.y1be{bottom:658.549813px;}
.yeb{bottom:658.973806px;}
.y78{bottom:659.909894px;}
.y7{bottom:666.771000px;}
.y140{bottom:670.028733px;}
.y213{bottom:670.538099px;}
.y1bd{bottom:670.540012px;}
.y37{bottom:672.152215px;}
.yea{bottom:674.706784px;}
.y77{bottom:675.641676px;}
.y212{bottom:682.443179px;}
.y1bc{bottom:682.445092px;}
.y13f{bottom:685.761711px;}
.y36{bottom:686.523679px;}
.ye9{bottom:690.353684px;}
.y76{bottom:691.288577px;}
.y211{bottom:694.433378px;}
.y1bb{bottom:694.435291px;}
.y35{bottom:700.810143px;}
.y13e{bottom:701.408611px;}
.ye8{bottom:706.085466px;}
.y210{bottom:706.424533px;}
.y1ba{bottom:706.426446px;}
.y75{bottom:707.021554px;}
.y30{bottom:708.293225px;}
.y34{bottom:715.181608px;}
.y13d{bottom:717.140393px;}
.y20f{bottom:718.329614px;}
.y1b9{bottom:718.331527px;}
.y2f{bottom:721.133650px;}
.y168{bottom:721.732366px;}
.y74{bottom:722.753336px;}
.y6{bottom:726.298500px;}
.y33{bottom:729.553072px;}
.y20e{bottom:730.319812px;}
.y1b8{bottom:730.321725px;}
.y13c{bottom:732.787293px;}
.y2e{bottom:733.975032px;}
.ye7{bottom:737.465344px;}
.y73{bottom:738.400236px;}
.y20d{bottom:742.224893px;}
.y1b7{bottom:742.226806px;}
.y32{bottom:743.839536px;}
.y2d{bottom:746.900575px;}
.y13b{bottom:748.520271px;}
.y3{bottom:752.599495px;}
.y167{bottom:753.112244px;}
.y72{bottom:754.132018px;}
.y20c{bottom:754.216048px;}
.y1b6{bottom:754.217961px;}
.y31{bottom:758.211000px;}
.y2c{bottom:759.741000px;}
.y13a{bottom:764.167171px;}
.y20b{bottom:766.206247px;}
.y1b5{bottom:766.208160px;}
.ye6{bottom:769.609155px;}
.y71{bottom:769.780114px;}
.y20a{bottom:778.111327px;}
.y1b4{bottom:778.113240px;}
.y139{bottom:779.898953px;}
.y166{bottom:784.490926px;}
.ye5{bottom:785.256056px;}
.y70{bottom:785.511896px;}
.y2b{bottom:787.549500px;}
.y209{bottom:790.102482px;}
.y1b3{bottom:790.104395px;}
.y138{bottom:795.545853px;}
.ye4{bottom:800.989033px;}
.y6f{bottom:801.158796px;}
.y208{bottom:802.007563px;}
.y1b2{bottom:802.009476px;}
.y137{bottom:811.278831px;}
.y207{bottom:813.997762px;}
.y1b1{bottom:813.999674px;}
.ye3{bottom:816.635933px;}
.y6e{bottom:816.890578px;}
.y206{bottom:825.902842px;}
.y1b0{bottom:825.904755px;}
.y136{bottom:826.925731px;}
.ye2{bottom:832.367715px;}
.y6d{bottom:832.537478px;}
.y2a{bottom:836.958000px;}
.y205{bottom:837.893997px;}
.y1af{bottom:837.895910px;}
.y135{bottom:842.657513px;}
.ye1{bottom:848.014616px;}
.y6c{bottom:848.270456px;}
.y204{bottom:849.884196px;}
.y1ae{bottom:849.886109px;}
.y134{bottom:858.304413px;}
.y29{bottom:861.619500px;}
.y203{bottom:861.789277px;}
.y1ad{bottom:861.791189px;}
.ye0{bottom:863.747593px;}
.y6b{bottom:863.917356px;}
.y202{bottom:873.779475px;}
.y1ac{bottom:873.781388px;}
.y133{bottom:874.037391px;}
.y2{bottom:879.369000px;}
.ydf{bottom:879.479375px;}
.y6a{bottom:879.649138px;}
.y201{bottom:885.685512px;}
.y1ab{bottom:885.687425px;}
.y132{bottom:889.684291px;}
.yde{bottom:895.126275px;}
.y69{bottom:895.296038px;}
.y200{bottom:897.675711px;}
.y1aa{bottom:897.677624px;}
.y28{bottom:899.122216px;}
.y131{bottom:905.416073px;}
.y1ff{bottom:909.665910px;}
.y1a9{bottom:909.667822px;}
.ydd{bottom:910.858057px;}
.y68{bottom:911.029016px;}
.y130{bottom:921.147855px;}
.y1fe{bottom:921.570990px;}
.y1a8{bottom:921.572903px;}
.y27{bottom:924.973500px;}
.ydc{bottom:926.506153px;}
.y67{bottom:926.675916px;}
.y1fd{bottom:933.562145px;}
.y1a7{bottom:933.564058px;}
.y12f{bottom:936.795951px;}
.y165{bottom:942.237935px;}
.y66{bottom:942.407698px;}
.y1fc{bottom:945.467226px;}
.y1a6{bottom:945.469138px;}
.y12e{bottom:952.527732px;}
.y1fb{bottom:957.457424px;}
.y1a5{bottom:957.459337px;}
.ydb{bottom:957.884835px;}
.y65{bottom:958.054598px;}
.y1{bottom:966.726000px;}
.y12d{bottom:968.174633px;}
.y1fa{bottom:969.363461px;}
.y1a4{bottom:969.365374px;}
.y64{bottom:973.787576px;}
.y1f9{bottom:981.353660px;}
.y1a3{bottom:981.355573px;}
.y63{bottom:989.434476px;}
.y1f8{bottom:993.343859px;}
.y1a2{bottom:993.345772px;}
.y12c{bottom:999.553315px;}
.y57{bottom:1003.719000px;}
.y62{bottom:1005.166258px;}
.y1f7{bottom:1005.248939px;}
.y1a1{bottom:1005.250852px;}
.y1f6{bottom:1017.240094px;}
.y1a0{bottom:1017.242007px;}
.y61{bottom:1020.813158px;}
.y1f5{bottom:1029.145175px;}
.y19f{bottom:1029.147088px;}
.y60{bottom:1036.546136px;}
.y1f4{bottom:1041.135374px;}
.y19e{bottom:1041.137286px;}
.y56{bottom:1045.474500px;}
.y5f{bottom:1052.193036px;}
.y1f3{bottom:1053.125572px;}
.y19d{bottom:1053.127485px;}
.y1f2{bottom:1065.031609px;}
.y19c{bottom:1065.033522px;}
.y5e{bottom:1067.924818px;}
.y1f1{bottom:1077.021808px;}
.y19b{bottom:1077.023721px;}
.y5d{bottom:1083.571718px;}
.y55{bottom:1087.312500px;}
.y1f0{bottom:1088.926888px;}
.y19a{bottom:1088.928801px;}
.y5c{bottom:1099.303500px;}
.y1ef{bottom:1100.917087px;}
.y199{bottom:1100.919000px;}
.y23{bottom:1127.505000px;}
.y5a{bottom:1128.630000px;}
.y244{bottom:1128.637906px;}
.yaf{bottom:1128.642000px;}
.h7{height:32.130000px;}
.he{height:33.622910px;}
.h13{height:33.623438px;}
.h12{height:34.526473px;}
.hf{height:36.775371px;}
.hb{height:37.826367px;}
.h10{height:42.029824px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hd{height:55.689609px;}
.hc{height:70.925098px;}
.h11{height:73.551270px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.ha{height:1190.550018px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:56.276979px;}
.x12{left:65.395200px;}
.x8{left:74.323389px;}
.x14{left:75.600000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x17{left:129.599066px;}
.x13{left:163.189392px;}
.x4{left:203.484001px;}
.x15{left:204.519000px;}
.xb{left:232.158000px;}
.x11{left:280.204500px;}
.x7{left:302.995500px;}
.xa{left:328.591500px;}
.x5{left:342.746979px;}
.x10{left:359.802000px;}
.x16{left:441.626979px;}
.xd{left:444.311979px;}
.x3{left:454.959000px;}
.x9{left:459.888932px;}
.xe{left:477.831221px;}
.xf{left:575.201136px;}
.xc{left:660.311979px;}
.x18{left:734.221838px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.720461pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:11.177378pt;}
.ls6{letter-spacing:11.362032pt;}
.ls8{letter-spacing:11.384807pt;}
.ls5{letter-spacing:11.664254pt;}
.ls1{letter-spacing:16.922845pt;}
.ls4{letter-spacing:38.052445pt;}
.ls3{letter-spacing:38.358497pt;}
.ls2{letter-spacing:44.101220pt;}
.ws3{word-spacing:-21.538128pt;}
.ws2{word-spacing:-13.504368pt;}
.ws6{word-spacing:-12.454610pt;}
.ws5{word-spacing:-11.209008pt;}
.ws8{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.329120pt;}
.wsa{word-spacing:-9.963406pt;}
.ws4{word-spacing:-9.564000pt;}
.ws7{word-spacing:-8.943403pt;}
.ws9{word-spacing:-8.501200pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-15.416526pt;}
._e{margin-left:-3.966459pt;}
._8{margin-left:-2.972491pt;}
._6{margin-left:-1.801858pt;}
._7{margin-left:-0.899016pt;}
._4{width:0.951447pt;}
._2{width:1.979766pt;}
._1{width:3.041380pt;}
._a{width:4.166050pt;}
._10{width:5.098626pt;}
._9{width:6.036769pt;}
._c{width:7.582339pt;}
._b{width:8.511960pt;}
._3{width:9.718341pt;}
._d{width:10.611658pt;}
._16{width:11.513339pt;}
._0{width:13.848672pt;}
._12{width:14.937378pt;}
._f{width:15.995459pt;}
._11{width:16.913615pt;}
._17{width:18.622404pt;}
._15{width:19.637932pt;}
._13{width:20.790272pt;}
._14{width:21.738182pt;}
._18{width:22.868874pt;}
._1b{width:114.868214pt;}
._1c{width:115.881557pt;}
._31{width:127.987266pt;}
._33{width:141.453167pt;}
._25{width:145.567748pt;}
._1e{width:150.328420pt;}
._30{width:151.382569pt;}
._29{width:155.905207pt;}
._2b{width:160.346234pt;}
._2a{width:161.447989pt;}
._3a{width:163.760316pt;}
._3b{width:169.697554pt;}
._34{width:176.648135pt;}
._39{width:180.252644pt;}
._2f{width:187.461661pt;}
._24{width:189.229911pt;}
._35{width:191.202189pt;}
._37{width:193.514516pt;}
._27{width:195.350775pt;}
._36{width:202.389769pt;}
._26{width:206.708378pt;}
._2c{width:210.754949pt;}
._2d{width:211.673079pt;}
._38{width:213.475333pt;}
._28{width:217.929962pt;}
._32{width:226.125119pt;}
._2e{width:231.110223pt;}
._19{width:233.082501pt;}
._1a{width:239.046943pt;}
._1d{width:273.684232pt;}
._21{width:295.324887pt;}
._23{width:322.232885pt;}
._20{width:333.723107pt;}
._22{width:373.029256pt;}
._1f{width:389.354960pt;}
.fs8{font-size:34.004800pt;}
.fsc{font-size:34.005333pt;}
.fs9{font-size:37.193067pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.256000pt;}
.fsa{font-size:42.507200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:56.322133pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:71.730667pt;}
.fsb{font-size:74.386667pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:0.000651pt;}
.y5b{bottom:42.160000pt;}
.y5{bottom:59.133337pt;}
.y26{bottom:68.320000pt;}
.y197{bottom:69.695232pt;}
.ycf{bottom:69.698754pt;}
.y126{bottom:69.698864pt;}
.y187{bottom:69.699795pt;}
.y99{bottom:69.703272pt;}
.y164{bottom:69.770000pt;}
.yd9{bottom:71.135497pt;}
.y1ee{bottom:75.297960pt;}
.y12a{bottom:76.955906pt;}
.y196{bottom:80.353187pt;}
.y25{bottom:81.066667pt;}
.y186{bottom:83.683602pt;}
.yce{bottom:83.683623pt;}
.y98{bottom:83.687078pt;}
.y108{bottom:84.518093pt;}
.yd8{bottom:85.119303pt;}
.y243{bottom:85.954215pt;}
.y1ed{bottom:85.955915pt;}
.y4{bottom:86.333337pt;}
.y163{bottom:88.597280pt;}
.y195{bottom:90.936331pt;}
.y129{bottom:90.939712pt;}
.y24{bottom:93.893333pt;}
.y242{bottom:96.536508pt;}
.y1ec{bottom:96.538209pt;}
.y185{bottom:97.591957pt;}
.ycd{bottom:97.591978pt;}
.y125{bottom:97.592089pt;}
.y97{bottom:97.595434pt;}
.y107{bottom:98.427512pt;}
.yd7{bottom:99.027659pt;}
.y194{bottom:101.594285pt;}
.y128{bottom:104.848068pt;}
.y59{bottom:106.582787pt;}
.y241{bottom:107.194463pt;}
.y1eb{bottom:107.196163pt;}
.ycc{bottom:111.575784pt;}
.y184{bottom:111.576826pt;}
.y96{bottom:111.579240pt;}
.y193{bottom:112.176579pt;}
.y106{bottom:112.411318pt;}
.yd6{bottom:113.012528pt;}
.y240{bottom:117.853267pt;}
.y1ea{bottom:117.854968pt;}
.y162{bottom:118.076891pt;}
.y127{bottom:118.832937pt;}
.y58{bottom:119.281867pt;}
.y192{bottom:122.834533pt;}
.y21{bottom:123.790666pt;}
.ycb{bottom:125.484140pt;}
.y183{bottom:125.485182pt;}
.y95{bottom:125.488658pt;}
.y105{bottom:126.319674pt;}
.yd5{bottom:126.920884pt;}
.y23f{bottom:128.435561pt;}
.y1e9{bottom:128.437261pt;}
.y161{bottom:129.491452pt;}
.y124{bottom:132.741293pt;}
.y23e{bottom:139.093516pt;}
.y1e8{bottom:139.095216pt;}
.yca{bottom:139.467946pt;}
.y182{bottom:139.468988pt;}
.y94{bottom:139.472464pt;}
.y104{bottom:140.303480pt;}
.yd4{bottom:140.904690pt;}
.y160{bottom:140.905163pt;}
.y54{bottom:141.958667pt;}
.y123{bottom:146.725099pt;}
.y191{bottom:147.330695pt;}
.y23d{bottom:149.676659pt;}
.y1e7{bottom:149.678360pt;}
.y15f{bottom:152.395385pt;}
.y181{bottom:153.377344pt;}
.yc9{bottom:153.377365pt;}
.yae{bottom:153.380820pt;}
.y10b{bottom:154.060935pt;}
.y103{bottom:154.288349pt;}
.yd3{bottom:154.813046pt;}
.y23c{bottom:160.334614pt;}
.y1e6{bottom:160.336314pt;}
.y122{bottom:160.633455pt;}
.y15e{bottom:163.809096pt;}
.y180{bottom:167.362213pt;}
.y93{bottom:167.364626pt;}
.y10a{bottom:168.045804pt;}
.y102{bottom:168.196705pt;}
.yd2{bottom:168.796852pt;}
.y23b{bottom:170.916908pt;}
.y1e5{bottom:170.918608pt;}
.y121{bottom:174.618324pt;}
.y18{bottom:175.052000pt;}
.y190{bottom:175.222857pt;}
.y52{bottom:179.907981pt;}
.yc8{bottom:181.269527pt;}
.y17f{bottom:181.270569pt;}
.yad{bottom:181.274045pt;}
.y23a{bottom:181.574862pt;}
.y1e4{bottom:181.576562pt;}
.y109{bottom:181.954160pt;}
.y101{bottom:182.180511pt;}
.yd1{bottom:182.706270pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y120{bottom:188.526679pt;}
.y18f{bottom:189.207726pt;}
.y239{bottom:192.233667pt;}
.y1e3{bottom:192.235367pt;}
.y15d{bottom:193.288708pt;}
.y51{bottom:193.892850pt;}
.y17e{bottom:195.254375pt;}
.yac{bottom:195.257851pt;}
.y92{bottom:195.937966pt;}
.y100{bottom:196.088867pt;}
.yd0{bottom:196.690076pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y11f{bottom:202.510486pt;}
.y238{bottom:202.815960pt;}
.y1e2{bottom:202.817661pt;}
.y18e{bottom:203.116081pt;}
.y15c{bottom:204.703269pt;}
.y50{bottom:207.801205pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y17d{bottom:209.162731pt;}
.yab{bottom:209.166207pt;}
.y91{bottom:209.846322pt;}
.yff{bottom:210.073735pt;}
.yc7{bottom:210.673883pt;}
.y237{bottom:213.473915pt;}
.y1e1{bottom:213.475615pt;}
.y15b{bottom:216.116980pt;}
.y11e{bottom:216.418841pt;}
.y4f{bottom:221.785012pt;}
.y17c{bottom:223.146537pt;}
.yaa{bottom:223.150013pt;}
.y90{bottom:223.831191pt;}
.yfe{bottom:223.982091pt;}
.y236{bottom:224.056209pt;}
.y1e0{bottom:224.057909pt;}
.yc6{bottom:224.582238pt;}
.y15a{bottom:227.531541pt;}
.y11d{bottom:230.402647pt;}
.y18d{bottom:231.008243pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y235{bottom:234.715013pt;}
.y1df{bottom:234.716713pt;}
.y4e{bottom:235.693367pt;}
.y17b{bottom:237.055955pt;}
.ya9{bottom:237.059431pt;}
.y8f{bottom:237.739547pt;}
.yfd{bottom:237.965897pt;}
.yc5{bottom:238.567107pt;}
.y159{bottom:238.945252pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y11c{bottom:244.312066pt;}
.y234{bottom:245.372968pt;}
.y1de{bottom:245.374668pt;}
.y4d{bottom:249.678236pt;}
.y158{bottom:250.434624pt;}
.y17a{bottom:251.039761pt;}
.ya8{bottom:251.043238pt;}
.y8e{bottom:251.723353pt;}
.yfc{bottom:251.874253pt;}
.yc4{bottom:252.475463pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y233{bottom:255.955261pt;}
.y1dd{bottom:255.956962pt;}
.y11b{bottom:258.295872pt;}
.y18c{bottom:259.127819pt;}
.y157{bottom:261.849185pt;}
.y4c{bottom:263.586592pt;}
.y179{bottom:264.948117pt;}
.ya7{bottom:264.951593pt;}
.y8d{bottom:265.631709pt;}
.yfb{bottom:265.859122pt;}
.yc3{bottom:266.459269pt;}
.y232{bottom:266.613216pt;}
.y1dc{bottom:266.614916pt;}
.y11a{bottom:272.204228pt;}
.y18b{bottom:273.036175pt;}
.y156{bottom:273.262896pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y231{bottom:277.196360pt;}
.y1db{bottom:277.198060pt;}
.y4b{bottom:277.570398pt;}
.y178{bottom:278.931923pt;}
.ya6{bottom:278.935399pt;}
.y8c{bottom:279.615515pt;}
.yfa{bottom:279.767478pt;}
.yc2{bottom:280.367625pt;}
.y155{bottom:284.677458pt;}
.y119{bottom:286.188034pt;}
.y18a{bottom:287.019981pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y230{bottom:287.854314pt;}
.y1da{bottom:287.856014pt;}
.y4a{bottom:291.478754pt;}
.ya5{bottom:292.843755pt;}
.y8b{bottom:293.524933pt;}
.yf9{bottom:293.751284pt;}
.yc1{bottom:294.352494pt;}
.y154{bottom:296.091169pt;}
.y22f{bottom:298.436608pt;}
.y1d9{bottom:298.438308pt;}
.y118{bottom:300.097453pt;}
.y189{bottom:300.929399pt;}
.y49{bottom:305.463623pt;}
.y177{bottom:306.825148pt;}
.ya4{bottom:306.828624pt;}
.y153{bottom:307.504880pt;}
.y8a{bottom:307.508739pt;}
.yf8{bottom:307.659640pt;}
.yc0{bottom:308.260850pt;}
.y22e{bottom:309.095412pt;}
.y1d8{bottom:309.097113pt;}
.yf{bottom:309.452000pt;}
.y117{bottom:314.081259pt;}
.y152{bottom:318.919441pt;}
.y48{bottom:319.447429pt;}
.y22d{bottom:319.753367pt;}
.y1d7{bottom:319.755067pt;}
.ya3{bottom:320.736980pt;}
.yf7{bottom:321.643446pt;}
.ybf{bottom:322.244656pt;}
.y116{bottom:327.989615pt;}
.y188{bottom:328.821561pt;}
.y151{bottom:330.333152pt;}
.y22c{bottom:330.335661pt;}
.y1d6{bottom:330.337361pt;}
.y47{bottom:333.355785pt;}
.ya2{bottom:334.720786pt;}
.y89{bottom:335.400901pt;}
.yf6{bottom:335.552865pt;}
.ybe{bottom:336.153012pt;}
.y22b{bottom:340.993615pt;}
.y1d5{bottom:340.995315pt;}
.y150{bottom:341.822524pt;}
.y115{bottom:341.973421pt;}
.y176{bottom:342.805367pt;}
.ye{bottom:343.809333pt;}
.y46{bottom:347.339591pt;}
.ya1{bottom:348.629142pt;}
.yf5{bottom:349.536671pt;}
.ybd{bottom:350.137880pt;}
.y22a{bottom:351.576759pt;}
.y1d4{bottom:351.578459pt;}
.y114{bottom:355.882839pt;}
.y175{bottom:356.790236pt;}
.y45{bottom:361.249009pt;}
.y229{bottom:362.234713pt;}
.y1d3{bottom:362.236414pt;}
.ya0{bottom:362.614011pt;}
.yd{bottom:362.706666pt;}
.y88{bottom:363.445026pt;}
.ybc{bottom:364.046236pt;}
.y113{bottom:369.866645pt;}
.y174{bottom:370.698592pt;}
.y14f{bottom:371.302985pt;}
.y228{bottom:372.892668pt;}
.y1d2{bottom:372.894368pt;}
.y44{bottom:375.232816pt;}
.y9f{bottom:376.522367pt;}
.y87{bottom:377.428833pt;}
.ybb{bottom:378.030042pt;}
.y14e{bottom:382.716697pt;}
.y227{bottom:383.474962pt;}
.y1d1{bottom:383.476662pt;}
.y112{bottom:383.775001pt;}
.y173{bottom:384.682398pt;}
.y43{bottom:389.141171pt;}
.y9e{bottom:390.506173pt;}
.y86{bottom:391.338251pt;}
.yba{bottom:391.938398pt;}
.y226{bottom:394.133766pt;}
.y1d0{bottom:394.135466pt;}
.y111{bottom:397.758807pt;}
.y172{bottom:398.590754pt;}
.y53{bottom:403.124977pt;}
.y9d{bottom:404.414529pt;}
.y225{bottom:404.716060pt;}
.y1cf{bottom:404.717760pt;}
.y85{bottom:405.322057pt;}
.yb9{bottom:405.922204pt;}
.y110{bottom:411.667163pt;}
.y14d{bottom:412.197158pt;}
.y171{bottom:412.575623pt;}
.y224{bottom:415.374014pt;}
.y1ce{bottom:415.375715pt;}
.y42{bottom:417.033333pt;}
.y9c{bottom:418.399397pt;}
.y84{bottom:419.230413pt;}
.yb8{bottom:419.831623pt;}
.y14c{bottom:423.610869pt;}
.y10f{bottom:425.652032pt;}
.y223{bottom:426.032819pt;}
.y1cd{bottom:426.034519pt;}
.y170{bottom:426.483979pt;}
.y9b{bottom:432.307753pt;}
.y83{bottom:433.214219pt;}
.yb7{bottom:433.815429pt;}
.y14b{bottom:435.025430pt;}
.y222{bottom:436.615113pt;}
.y1cc{bottom:436.616813pt;}
.y10e{bottom:439.635838pt;}
.y16f{bottom:440.467785pt;}
.yf4{bottom:446.291559pt;}
.y14a{bottom:446.439141pt;}
.yc{bottom:446.990669pt;}
.y82{bottom:447.123638pt;}
.y221{bottom:447.273067pt;}
.y1cb{bottom:447.274767pt;}
.yb6{bottom:447.723785pt;}
.y10d{bottom:453.544194pt;}
.y16e{bottom:454.376141pt;}
.y149{bottom:457.852853pt;}
.y220{bottom:457.855361pt;}
.y1ca{bottom:457.857061pt;}
.y9a{bottom:460.199915pt;}
.y81{bottom:461.107444pt;}
.yb5{bottom:461.707591pt;}
.yb{bottom:462.990669pt;}
.y10c{bottom:467.528000pt;}
.y16d{bottom:468.361009pt;}
.y21f{bottom:468.514165pt;}
.y1c9{bottom:468.515866pt;}
.y148{bottom:469.343074pt;}
.y41{bottom:469.948955pt;}
.yf3{bottom:474.184784pt;}
.y80{bottom:475.015800pt;}
.yb4{bottom:475.617009pt;}
.ya{bottom:478.990666pt;}
.y21e{bottom:479.096459pt;}
.y1c8{bottom:479.098159pt;}
.y147{bottom:480.756786pt;}
.y16c{bottom:482.269365pt;}
.y40{bottom:482.723589pt;}
.yf2{bottom:488.168590pt;}
.y7f{bottom:488.999606pt;}
.yb3{bottom:489.600816pt;}
.y21d{bottom:489.754414pt;}
.y1c7{bottom:489.756114pt;}
.y146{bottom:492.170497pt;}
.y9{bottom:494.990666pt;}
.y3f{bottom:495.422669pt;}
.y16b{bottom:496.253171pt;}
.y12b{bottom:497.385333pt;}
.y21c{bottom:500.412368pt;}
.y1c6{bottom:500.414068pt;}
.yf1{bottom:502.076946pt;}
.y7e{bottom:502.907962pt;}
.yb2{bottom:503.509171pt;}
.y145{bottom:503.585058pt;}
.y3e{bottom:508.197303pt;}
.y16a{bottom:510.161527pt;}
.y21b{bottom:510.995512pt;}
.y1c5{bottom:510.997212pt;}
.yf0{bottom:516.060752pt;}
.y7d{bottom:516.892830pt;}
.yb1{bottom:517.492977pt;}
.y3d{bottom:520.971938pt;}
.y144{bottom:521.121333pt;}
.y21a{bottom:521.653466pt;}
.y1c4{bottom:521.655167pt;}
.y169{bottom:524.145333pt;}
.yef{bottom:529.969108pt;}
.y7c{bottom:530.801186pt;}
.yb0{bottom:531.401333pt;}
.y219{bottom:532.235760pt;}
.y1c3{bottom:532.237460pt;}
.y3c{bottom:533.671017pt;}
.y143{bottom:538.658699pt;}
.y218{bottom:542.893715pt;}
.y1c2{bottom:542.895415pt;}
.yee{bottom:543.953977pt;}
.y7b{bottom:544.784992pt;}
.y3b{bottom:546.445652pt;}
.y142{bottom:551.433333pt;}
.y217{bottom:553.552519pt;}
.y1c1{bottom:553.554219pt;}
.y198{bottom:554.078667pt;}
.yed{bottom:557.862332pt;}
.y7a{bottom:558.693348pt;}
.y3a{bottom:559.220287pt;}
.yda{bottom:561.336000pt;}
.y216{bottom:564.134813pt;}
.y1c0{bottom:564.136513pt;}
.yec{bottom:571.846139pt;}
.y39{bottom:571.919366pt;}
.y79{bottom:572.678217pt;}
.y8{bottom:573.786667pt;}
.y215{bottom:574.792767pt;}
.y1bf{bottom:574.794468pt;}
.y141{bottom:581.672741pt;}
.y38{bottom:584.694001pt;}
.y214{bottom:585.375911pt;}
.y1be{bottom:585.377612pt;}
.yeb{bottom:585.754494pt;}
.y78{bottom:586.586573pt;}
.y7{bottom:592.685334pt;}
.y140{bottom:595.581096pt;}
.y213{bottom:596.033866pt;}
.y1bd{bottom:596.035566pt;}
.y37{bottom:597.468636pt;}
.yea{bottom:599.739363pt;}
.y77{bottom:600.570379pt;}
.y212{bottom:606.616159pt;}
.y1bc{bottom:606.617860pt;}
.y13f{bottom:609.565965pt;}
.y36{bottom:610.243271pt;}
.ye9{bottom:613.647719pt;}
.y76{bottom:614.478735pt;}
.y211{bottom:617.274114pt;}
.y1bb{bottom:617.275814pt;}
.y35{bottom:622.942350pt;}
.y13e{bottom:623.474321pt;}
.ye8{bottom:627.631525pt;}
.y210{bottom:627.932918pt;}
.y1ba{bottom:627.934619pt;}
.y75{bottom:628.463604pt;}
.y30{bottom:629.593978pt;}
.y34{bottom:635.716985pt;}
.y13d{bottom:637.458127pt;}
.y20f{bottom:638.515212pt;}
.y1b9{bottom:638.516912pt;}
.y2f{bottom:641.007689pt;}
.y168{bottom:641.539881pt;}
.y74{bottom:642.447410pt;}
.y6{bottom:645.598667pt;}
.y33{bottom:648.491619pt;}
.y20e{bottom:649.173167pt;}
.y1b8{bottom:649.174867pt;}
.y13c{bottom:651.366483pt;}
.y2e{bottom:652.422250pt;}
.ye7{bottom:655.524750pt;}
.y73{bottom:656.355766pt;}
.y20d{bottom:659.755460pt;}
.y1b7{bottom:659.757161pt;}
.y32{bottom:661.190699pt;}
.y2d{bottom:663.911622pt;}
.y13b{bottom:665.351352pt;}
.y3{bottom:668.977329pt;}
.y167{bottom:669.433106pt;}
.y72{bottom:670.339572pt;}
.y20c{bottom:670.414265pt;}
.y1b6{bottom:670.415965pt;}
.y31{bottom:673.965333pt;}
.y2c{bottom:675.325333pt;}
.y13a{bottom:679.259708pt;}
.y20b{bottom:681.072219pt;}
.y1b5{bottom:681.073920pt;}
.ye6{bottom:684.097027pt;}
.y71{bottom:684.248990pt;}
.y20a{bottom:691.654513pt;}
.y1b4{bottom:691.656213pt;}
.y139{bottom:693.243514pt;}
.y166{bottom:697.325268pt;}
.ye5{bottom:698.005383pt;}
.y70{bottom:698.232796pt;}
.y2b{bottom:700.044000pt;}
.y209{bottom:702.313318pt;}
.y1b3{bottom:702.315018pt;}
.y138{bottom:707.151870pt;}
.ye4{bottom:711.990252pt;}
.y6f{bottom:712.141152pt;}
.y208{bottom:712.895612pt;}
.y1b2{bottom:712.897312pt;}
.y137{bottom:721.136738pt;}
.y207{bottom:723.553566pt;}
.y1b1{bottom:723.555266pt;}
.ye3{bottom:725.898607pt;}
.y6e{bottom:726.124958pt;}
.y206{bottom:734.135860pt;}
.y1b0{bottom:734.137560pt;}
.y136{bottom:735.045094pt;}
.ye2{bottom:739.882414pt;}
.y6d{bottom:740.033314pt;}
.y2a{bottom:743.962667pt;}
.y205{bottom:744.794664pt;}
.y1af{bottom:744.796365pt;}
.y135{bottom:749.028900pt;}
.ye1{bottom:753.790769pt;}
.y6c{bottom:754.018183pt;}
.y204{bottom:755.452619pt;}
.y1ae{bottom:755.454319pt;}
.y134{bottom:762.937256pt;}
.y29{bottom:765.884000pt;}
.y203{bottom:766.034912pt;}
.y1ad{bottom:766.036613pt;}
.ye0{bottom:767.775638pt;}
.y6b{bottom:767.926539pt;}
.y202{bottom:776.692867pt;}
.y1ac{bottom:776.694567pt;}
.y133{bottom:776.922125pt;}
.y2{bottom:781.661334pt;}
.ydf{bottom:781.759444pt;}
.y6a{bottom:781.910345pt;}
.y201{bottom:787.276011pt;}
.y1ab{bottom:787.277711pt;}
.y132{bottom:790.830481pt;}
.yde{bottom:795.667800pt;}
.y69{bottom:795.818701pt;}
.y200{bottom:797.933965pt;}
.y1aa{bottom:797.935665pt;}
.y28{bottom:799.219748pt;}
.y131{bottom:804.814287pt;}
.y1ff{bottom:808.591920pt;}
.y1a9{bottom:808.593620pt;}
.ydd{bottom:809.651606pt;}
.y68{bottom:809.803570pt;}
.y130{bottom:818.798093pt;}
.y1fe{bottom:819.174213pt;}
.y1a8{bottom:819.175914pt;}
.y27{bottom:822.198667pt;}
.ydc{bottom:823.561025pt;}
.y67{bottom:823.711925pt;}
.y1fd{bottom:829.833018pt;}
.y1a7{bottom:829.834718pt;}
.y12f{bottom:832.707512pt;}
.y165{bottom:837.544831pt;}
.y66{bottom:837.695732pt;}
.y1fc{bottom:840.415312pt;}
.y1a6{bottom:840.417012pt;}
.y12e{bottom:846.691318pt;}
.y1fb{bottom:851.073266pt;}
.y1a5{bottom:851.074966pt;}
.ydb{bottom:851.453187pt;}
.y65{bottom:851.604087pt;}
.y1{bottom:859.312000pt;}
.y12d{bottom:860.599674pt;}
.y1fa{bottom:861.656410pt;}
.y1a4{bottom:861.658110pt;}
.y64{bottom:865.588956pt;}
.y1f9{bottom:872.314365pt;}
.y1a3{bottom:872.316065pt;}
.y63{bottom:879.497312pt;}
.y1f8{bottom:882.972319pt;}
.y1a2{bottom:882.974019pt;}
.y12c{bottom:888.491836pt;}
.y57{bottom:892.194667pt;}
.y62{bottom:893.481118pt;}
.y1f7{bottom:893.554613pt;}
.y1a1{bottom:893.556313pt;}
.y1f6{bottom:904.213417pt;}
.y1a0{bottom:904.215118pt;}
.y61{bottom:907.389474pt;}
.y1f5{bottom:914.795711pt;}
.y19f{bottom:914.797411pt;}
.y60{bottom:921.374343pt;}
.y1f4{bottom:925.453665pt;}
.y19e{bottom:925.455366pt;}
.y56{bottom:929.310667pt;}
.y5f{bottom:935.282699pt;}
.y1f3{bottom:936.111620pt;}
.y19d{bottom:936.113320pt;}
.y1f2{bottom:946.694764pt;}
.y19c{bottom:946.696464pt;}
.y5e{bottom:949.266505pt;}
.y1f1{bottom:957.352718pt;}
.y19b{bottom:957.354418pt;}
.y5d{bottom:963.174861pt;}
.y55{bottom:966.500000pt;}
.y1f0{bottom:967.935012pt;}
.y19a{bottom:967.936712pt;}
.y5c{bottom:977.158667pt;}
.y1ef{bottom:978.592966pt;}
.y199{bottom:978.594667pt;}
.y23{bottom:1002.226667pt;}
.y5a{bottom:1003.226667pt;}
.y244{bottom:1003.233695pt;}
.yaf{bottom:1003.237333pt;}
.h7{height:28.560000pt;}
.he{height:29.887031pt;}
.h13{height:29.887500pt;}
.h12{height:30.690198pt;}
.hf{height:32.689219pt;}
.hb{height:33.623437pt;}
.h10{height:37.359844pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hd{height:49.501875pt;}
.hc{height:63.044531pt;}
.h11{height:65.378906pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.ha{height:1058.266683pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:50.023981pt;}
.x12{left:58.129067pt;}
.x8{left:66.065235pt;}
.x14{left:67.200000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x17{left:115.199170pt;}
.x13{left:145.057237pt;}
.x4{left:180.874667pt;}
.x15{left:181.794667pt;}
.xb{left:206.362667pt;}
.x11{left:249.070667pt;}
.x7{left:269.329333pt;}
.xa{left:292.081333pt;}
.x5{left:304.663981pt;}
.x10{left:319.824000pt;}
.x16{left:392.557314pt;}
.xd{left:394.943981pt;}
.x3{left:404.408000pt;}
.x9{left:408.790162pt;}
.xe{left:424.738863pt;}
.xf{left:511.289898pt;}
.xc{left:586.943981pt;}
.x18{left:652.641634pt;}
}




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