
    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_9d09dc0cbf50ffeaec923509.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_1a8fe4a35b643f77cbf2bd5b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_67ec706e012113ccb093da11.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_d433510931a6e3a5a7ae4d25.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_406accd4934247a0b8cacc60.woff')format("woff");}.ff5{font-family:ff5;line-height:0.774414;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.686523;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_1bc401c69b54ffc9dd42cbd7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_e3a13f91cf10380009d37048.woff')format("woff");}.ff8{font-family:ff8;line-height:0.766113;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_03081973278c4dd6d04dd7a2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_d8c20e0914983d67c809495e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.866699;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_45bab497ac1eb6c1fea57d36.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v1{vertical-align:-7.919997px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018600px;}
.ls6{letter-spacing:0.182573px;}
.lsd{letter-spacing:0.237796px;}
.lse{letter-spacing:0.731051px;}
.ls5{letter-spacing:8.834469px;}
.ls7{letter-spacing:11.709715px;}
.ls4{letter-spacing:62.140415px;}
.ls10{letter-spacing:62.687375px;}
.ls2{letter-spacing:73.060677px;}
.ls1{letter-spacing:132.135508px;}
.ls9{letter-spacing:268.008493px;}
.ls11{letter-spacing:303.309479px;}
.lsb{letter-spacing:320.599672px;}
.ls12{letter-spacing:362.870675px;}
.lsa{letter-spacing:444.512822px;}
.lsf{letter-spacing:658.481737px;}
.lsc{letter-spacing:1466.362168px;}
.ls0{letter-spacing:1484.372787px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-397.106661px;}
.ws0{word-spacing:-46.439981px;}
.wsb{word-spacing:-45.885778px;}
.ws9{word-spacing:-34.235986px;}
.ws5{word-spacing:-32.418587px;}
.ws8{word-spacing:-17.999993px;}
.ws6{word-spacing:-16.613273px;}
.ws3{word-spacing:-16.271993px;}
.ws4{word-spacing:-15.011994px;}
.ws2{word-spacing:-14.939994px;}
.ws1{word-spacing:-9.719996px;}
.ws7{word-spacing:0.000000px;}
.wsa{word-spacing:45.432017px;}
.wsc{word-spacing:86.471785px;}
._7d{margin-left:-363.590495px;}
._3{margin-left:-98.855960px;}
._1f{margin-left:-8.842259px;}
._54{margin-left:-7.684050px;}
._16{margin-left:-6.528175px;}
._2c{margin-left:-5.416380px;}
._2{margin-left:-4.413793px;}
._4{margin-left:-2.592522px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._d{width:2.240656px;}
._7{width:3.259296px;}
._6{width:4.479111px;}
._5{width:5.604538px;}
._a{width:6.683531px;}
._1c{width:7.758361px;}
._9{width:8.967009px;}
._8{width:10.073192px;}
._f{width:11.139055px;}
._c{width:12.367229px;}
._b{width:13.742065px;}
._1e{width:14.911395px;}
._15{width:16.143403px;}
._1b{width:19.056962px;}
._e{width:20.189192px;}
._76{width:21.433543px;}
._13{width:23.441050px;}
._14{width:25.269407px;}
._11{width:26.586292px;}
._10{width:27.985614px;}
._12{width:29.476261px;}
._7e{width:30.961720px;}
._19{width:33.902466px;}
._1a{width:36.016851px;}
._1d{width:42.530540px;}
._73{width:45.731698px;}
._20{width:53.952870px;}
._3c{width:64.759114px;}
._18{width:66.189123px;}
._17{width:67.598470px;}
._34{width:73.602063px;}
._65{width:103.139674px;}
._4b{width:106.543649px;}
._72{width:114.099958px;}
._7a{width:116.463372px;}
._6c{width:119.261102px;}
._75{width:125.900758px;}
._62{width:127.745844px;}
._47{width:132.239610px;}
._6e{width:136.551176px;}
._43{width:141.331321px;}
._35{width:143.014467px;}
._74{width:145.380661px;}
._5e{width:152.535244px;}
._2a{width:156.924531px;}
._42{width:159.474600px;}
._63{width:164.394170px;}
._49{width:173.177931px;}
._4a{width:176.507934px;}
._7c{width:183.186002px;}
._36{width:194.851169px;}
._29{width:196.524084px;}
._77{width:200.487433px;}
._68{width:203.666708px;}
._64{width:211.360620px;}
._7b{width:215.957268px;}
._58{width:220.956869px;}
._2e{width:224.916855px;}
._55{width:229.265953px;}
._23{width:232.008789px;}
._67{width:233.449509px;}
._71{width:236.559054px;}
._30{width:238.502621px;}
._57{width:240.653826px;}
._3f{width:242.815221px;}
._22{width:260.595400px;}
._6d{width:269.449812px;}
._5f{width:276.654129px;}
._4c{width:284.599684px;}
._3a{width:290.786643px;}
._56{width:309.896889px;}
._79{width:318.495286px;}
._52{width:320.599312px;}
._44{width:323.346990px;}
._27{width:339.064915px;}
._38{width:354.794937px;}
._3b{width:356.500701px;}
._3d{width:368.277975px;}
._66{width:371.943585px;}
._37{width:374.706089px;}
._6b{width:385.301134px;}
._2b{width:389.162792px;}
._5d{width:402.591207px;}
._78{width:406.479256px;}
._40{width:415.290863px;}
._31{width:419.871157px;}
._6a{width:425.260695px;}
._6f{width:429.631174px;}
._3e{width:435.210616px;}
._5b{width:442.550768px;}
._70{width:444.422954px;}
._24{width:453.040281px;}
._28{width:463.528788px;}
._61{width:464.669942px;}
._5a{width:482.582776px;}
._33{width:493.903276px;}
._21{width:501.064852px;}
._59{width:507.952654px;}
._60{width:511.903423px;}
._46{width:513.354563px;}
._5c{width:543.952265px;}
._25{width:569.188629px;}
._69{width:570.532110px;}
._2f{width:587.199422px;}
._39{width:590.801580px;}
._26{width:605.188960px;}
._2d{width:622.478989px;}
._4f{width:623.865996px;}
._41{width:633.306763px;}
._32{width:658.478617px;}
._45{width:669.306374px;}
._48{width:705.306678px;}
._4d{width:711.296749px;}
._51{width:724.415723px;}
._50{width:818.377588px;}
._53{width:849.782007px;}
._4e{width:860.350492px;}
.fc12{color:rgb(89,89,89);}
.fc10{color:rgb(0,176,80);}
.fcf{color:rgb(51,51,51);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc11{color:transparent;}
.fcd{color:rgb(0,32,96);}
.fc3{color:rgb(68,84,106);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc7{color:rgb(205,196,214);}
.fc8{color:rgb(225,216,236);}
.fc9{color:rgb(153,142,164);}
.fce{color:rgb(44,62,80);}
.fc0{color:rgb(0,0,0);}
.fc6{color:rgb(180,172,188);}
.fca{color:rgb(243,238,248);}
.fcb{color:rgb(5,99,193);}
.fc13{color:rgb(32,33,36);}
.fcc{color:rgb(83,129,53);}
.fs4{font-size:38.879984px;}
.fs5{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.y6{bottom:-10.979990px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y16{bottom:2.699106px;}
.y3b{bottom:3.958977px;}
.yc4{bottom:3.959037px;}
.y112{bottom:4.318966px;}
.y110{bottom:4.318978px;}
.y5f{bottom:4.318985px;}
.y13b{bottom:4.319001px;}
.y144{bottom:4.319008px;}
.y36{bottom:4.858987px;}
.yda{bottom:4.860038px;}
.ya{bottom:33.240287px;}
.yd9{bottom:49.620240px;}
.y8{bottom:54.480278px;}
.y9{bottom:56.460277px;}
.y161{bottom:158.879936px;}
.y197{bottom:159.779936px;}
.y5d{bottom:161.579935px;}
.yec{bottom:162.839935px;}
.y1c5{bottom:165.539934px;}
.y151{bottom:170.759932px;}
.y1a2{bottom:172.199931px;}
.y179{bottom:173.459931px;}
.y34{bottom:174.179930px;}
.y119{bottom:182.639927px;}
.y105{bottom:182.819927px;}
.y12e{bottom:185.879926px;}
.yd6{bottom:189.119924px;}
.y160{bottom:189.839924px;}
.yb0{bottom:191.819923px;}
.y5c{bottom:192.719923px;}
.y1a1{bottom:198.299921px;}
.y150{bottom:201.899919px;}
.ybc{bottom:204.059918px;}
.y178{bottom:204.599918px;}
.yeb{bottom:205.859918px;}
.y90{bottom:206.219918px;}
.y76{bottom:211.439915px;}
.y104{bottom:213.779914px;}
.y1a0{bottom:214.859914px;}
.y12d{bottom:217.019913px;}
.y15f{bottom:220.979912px;}
.yb1{bottom:221.699911px;}
.y33{bottom:222.419911px;}
.y118{bottom:225.659910px;}
.yd5{bottom:232.139907px;}
.y198{bottom:232.319907px;}
.y14f{bottom:232.859907px;}
.yaf{bottom:234.839906px;}
.y5b{bottom:235.739906px;}
.y75{bottom:242.579903px;}
.y98{bottom:244.199902px;}
.y103{bottom:244.919902px;}
.yb2{bottom:245.099902px;}
.y177{bottom:247.619901px;}
.y12c{bottom:247.979901px;}
.y8f{bottom:249.239900px;}
.y15e{bottom:251.939899px;}
.y1b6{bottom:254.459898px;}
.yea{bottom:257.879897px;}
.y21{bottom:258.239897px;}
.y199{bottom:259.679896px;}
.y91{bottom:261.659895px;}
.y14e{bottom:263.999894px;}
.yb3{bottom:268.319893px;}
.y117{bottom:268.679893px;}
.yd4{bottom:275.159890px;}
.y102{bottom:275.879890px;}
.yae{bottom:277.859889px;}
.y5a{bottom:278.759888px;}
.y12b{bottom:279.119888px;}
.y74{bottom:285.599886px;}
.y19a{bottom:287.219885px;}
.ye9{bottom:289.019884px;}
.y92{bottom:290.279884px;}
.y176{bottom:290.639884px;}
.yb4{bottom:291.719883px;}
.y8e{bottom:292.259883px;}
.y42{bottom:292.799883px;}
.y14d{bottom:294.959882px;}
.y1c4{bottom:297.659881px;}
.y116{bottom:299.819880px;}
.yd8{bottom:300.179880px;}
.y183{bottom:303.419879px;}
.y101{bottom:307.019877px;}
.y59{bottom:309.719876px;}
.y41{bottom:312.779875px;}
.y19b{bottom:314.579874px;}
.yb5{bottom:315.119874px;}
.y73{bottom:316.559873px;}
.yd3{bottom:318.359873px;}
.y93{bottom:318.719873px;}
.ye8{bottom:319.979872px;}
.yad{bottom:321.059872px;}
.y12a{bottom:322.139871px;}
.y1b5{bottom:328.619869px;}
.y115{bottom:330.779868px;}
.y40{bottom:332.759867px;}
.y175{bottom:333.659867px;}
.y8d{bottom:335.279866px;}
.y17a{bottom:337.439865px;}
.y100{bottom:337.979865px;}
.yb6{bottom:338.519865px;}
.y19c{bottom:342.119863px;}
.y94{bottom:347.159861px;}
.y72{bottom:347.699861px;}
.ye7{bottom:351.119860px;}
.y3f{bottom:352.739859px;}
.y58{bottom:352.919859px;}
.y1b4{bottom:359.759856px;}
.yd2{bottom:361.379855px;}
.y17b{bottom:361.559855px;}
.yb7{bottom:361.919855px;}
.yac{bottom:364.079854px;}
.y129{bottom:365.159854px;}
.y19d{bottom:369.479852px;}
.y3e{bottom:373.619851px;}
.y114{bottom:373.979850px;}
.y95{bottom:375.599850px;}
.y174{bottom:376.859849px;}
.y14c{bottom:377.219849px;}
.y8c{bottom:378.299849px;}
.y71{bottom:378.659849px;}
.yff{bottom:381.179848px;}
.ye6{bottom:382.079847px;}
.yb8{bottom:385.139846px;}
.y17c{bottom:385.679846px;}
.y15c{bottom:390.539844px;}
.y1c3{bottom:390.719844px;}
.y20{bottom:395.579842px;}
.y57{bottom:395.939842px;}
.y19e{bottom:397.019841px;}
.y1b3{bottom:402.779839px;}
.y96{bottom:404.219838px;}
.yd1{bottom:404.399838px;}
.yab{bottom:407.099837px;}
.y152{bottom:408.179837px;}
.yb9{bottom:408.539837px;}
.y17d{bottom:409.799836px;}
.yfe{bottom:412.139835px;}
.y113{bottom:412.859835px;}
.y136{bottom:417.719833px;}
.y173{bottom:419.879832px;}
.y8b{bottom:421.319831px;}
.y70{bottom:421.679831px;}
.y32{bottom:423.119831px;}
.y19f{bottom:424.379830px;}
.y121{bottom:427.259829px;}
.yba{bottom:431.939827px;}
.y97{bottom:432.659827px;}
.y1b2{bottom:433.739827px;}
.y17e{bottom:433.919826px;}
.y153{bottom:434.099826px;}
.ye5{bottom:434.279826px;}
.y12f{bottom:435.359826px;}
.y56{bottom:438.959824px;}
.y31{bottom:442.919823px;}
.y120{bottom:443.639823px;}
.yd0{bottom:447.419821px;}
.yaa{bottom:450.119820px;}
.yfd{bottom:451.199820px;}
.y1a3{bottom:452.639819px;}
.y6f{bottom:452.819819px;}
.y162{bottom:454.799818px;}
.ybb{bottom:455.339818px;}
.y17f{bottom:458.039817px;}
.y154{bottom:460.019816px;}
.y99{bottom:460.739816px;}
.y11a{bottom:461.279815px;}
.y172{bottom:462.899815px;}
.y8a{bottom:464.519814px;}
.y10d{bottom:464.699814px;}
.y130{bottom:474.239810px;}
.y30{bottom:474.779810px;}
.y1b1{bottom:476.759809px;}
.y55{bottom:481.979807px;}
.y106{bottom:482.159807px;}
.ye4{bottom:482.339807px;}
.ybd{bottom:483.419807px;}
.y6e{bottom:483.779806px;}
.y1f{bottom:484.319806px;}
.y155{bottom:485.939806px;}
.ycf{bottom:490.439804px;}
.ya9{bottom:493.139803px;}
.y2f{bottom:494.759802px;}
.yf4{bottom:495.659802px;}
.y163{bottom:501.599799px;}
.y11b{bottom:503.579799px;}
.y171{bottom:505.919798px;}
.y180{bottom:506.279797px;}
.y89{bottom:507.539797px;}
.y1b0{bottom:507.899797px;}
.y196{bottom:510.059796px;}
.y156{bottom:511.859795px;}
.yf3{bottom:512.219795px;}
.y131{bottom:513.119795px;}
.y6d{bottom:514.919794px;}
.y107{bottom:521.219792px;}
.y1e{bottom:521.579791px;}
.y2e{bottom:524.099790px;}
.y54{bottom:524.999790px;}
.y1c2{bottom:529.139788px;}
.yed{bottom:529.679788px;}
.y181{bottom:530.399788px;}
.yce{bottom:533.459787px;}
.ya8{bottom:536.159786px;}
.y157{bottom:537.959785px;}
.y1d{bottom:539.219784px;}
.y2d{bottom:541.379783px;}
.y195{bottom:541.919783px;}
.y11c{bottom:546.059782px;}
.y164{bottom:548.219781px;}
.y170{bottom:548.939780px;}
.y88{bottom:550.559780px;}
.y1af{bottom:550.919780px;}
.y132{bottom:551.999779px;}
.y182{bottom:554.519778px;}
.y1c{bottom:556.859777px;}
.y6c{bottom:557.939777px;}
.y2c{bottom:558.659777px;}
.y108{bottom:560.099776px;}
.y158{bottom:563.879774px;}
.y53{bottom:568.019773px;}
.yee{bottom:573.239771px;}
.y1b{bottom:573.419771px;}
.y194{bottom:573.779770px;}
.y1c1{bottom:575.219770px;}
.y2b{bottom:575.939770px;}
.ycd{bottom:576.479769px;}
.ya7{bottom:579.179768px;}
.y87{bottom:581.519767px;}
.y1ae{bottom:581.879767px;}
.y184{bottom:582.779767px;}
.y11d{bottom:588.539765px;}
.y6b{bottom:589.079764px;}
.y159{bottom:589.799764px;}
.y133{bottom:591.059764px;}
.y16f{bottom:591.959763px;}
.yd7{bottom:592.499763px;}
.y2a{bottom:593.039763px;}
.y165{bottom:595.019762px;}
.y109{bottom:598.979760px;}
.y193{bottom:605.459758px;}
.y1c0{bottom:606.179758px;}
.y1a{bottom:609.419756px;}
.y29{bottom:610.319756px;}
.y52{bottom:611.219756px;}
.y86{bottom:612.659755px;}
.y15a{bottom:615.719754px;}
.yef{bottom:616.619753px;}
.ycc{bottom:619.679752px;}
.y6a{bottom:620.039752px;}
.y1ad{bottom:625.079750px;}
.y28{bottom:627.599749px;}
.y134{bottom:629.939748px;}
.y11e{bottom:631.019748px;}
.y16e{bottom:634.979746px;}
.y192{bottom:637.319745px;}
.y10a{bottom:637.859745px;}
.ya6{bottom:641.279743px;}
.y15b{bottom:641.639743px;}
.y85{bottom:643.619743px;}
.y27{bottom:644.879742px;}
.y19{bottom:645.419742px;}
.y1bf{bottom:649.199740px;}
.y51{bottom:654.239738px;}
.y1ac{bottom:656.039738px;}
.yf0{bottom:659.999736px;}
.y26{bottom:662.159735px;}
.ycb{bottom:662.699735px;}
.y69{bottom:663.059735px;}
.y16d{bottom:666.839733px;}
.y135{bottom:668.819732px;}
.y191{bottom:669.179732px;}
.y15d{bottom:669.899732px;}
.ya5{bottom:672.419731px;}
.y11f{bottom:673.319731px;}
.y10b{bottom:676.919729px;}
.y25{bottom:679.439728px;}
.y1be{bottom:680.339728px;}
.y18{bottom:681.419727px;}
.y84{bottom:686.639725px;}
.y24{bottom:696.539721px;}
.y137{bottom:697.079721px;}
.y50{bottom:697.259721px;}
.y16c{bottom:698.699721px;}
.y1ab{bottom:699.059720px;}
.y17{bottom:699.419720px;}
.y190{bottom:700.859720px;}
.yf1{bottom:703.379719px;}
.yca{bottom:705.719718px;}
.y68{bottom:706.079718px;}
.y23{bottom:713.819714px;}
.ya4{bottom:715.439714px;}
.y10c{bottom:715.799714px;}
.y83{bottom:718.499713px;}
.y1bd{bottom:723.359711px;}
.y14b{bottom:727.499709px;}
.y16b{bottom:729.659708px;}
.y1aa{bottom:730.199708px;}
.y22{bottom:730.919708px;}
.y15{bottom:731.100600px;}
.y18f{bottom:732.719707px;}
.y67{bottom:737.219705px;}
.y4f{bottom:740.279704px;}
.y10e{bottom:744.059702px;}
.yf2{bottom:746.759701px;}
.yc9{bottom:748.739701px;}
.y82{bottom:750.359700px;}
.y1bc{bottom:754.319698px;}
.y128{bottom:754.679698px;}
.ya3{bottom:758.459697px;}
.y14a{bottom:759.179696px;}
.y16a{bottom:761.519695px;}
.y18e{bottom:763.679695px;}
.y13{bottom:765.299694px;}
.y14{bottom:765.479694px;}
.y66{bottom:768.179693px;}
.y4e{bottom:771.239692px;}
.y141{bottom:774.659690px;}
.yf5{bottom:775.019690px;}
.y1a9{bottom:775.559690px;}
.yc8{bottom:780.599688px;}
.y81{bottom:782.039687px;}
.ya2{bottom:790.319684px;}
.y149{bottom:791.039684px;}
.y169{bottom:792.479683px;}
.y1bb{bottom:797.339681px;}
.y127{bottom:797.699681px;}
.y65{bottom:799.319680px;}
.yfc{bottom:801.479679px;}
.y4d{bottom:802.379679px;}
.y140{bottom:806.519677px;}
.y18d{bottom:807.599677px;}
.y12{bottom:811.739675px;}
.yc7{bottom:812.279675px;}
.y80{bottom:813.899674px;}
.ya1{bottom:822.179671px;}
.y148{bottom:822.899671px;}
.y1a8{bottom:823.799670px;}
.y168{bottom:824.339670px;}
.y1ba{bottom:828.479669px;}
.ye3{bottom:832.619667px;}
.y4c{bottom:833.339667px;}
.y13f{bottom:838.199665px;}
.y18c{bottom:838.559665px;}
.y126{bottom:840.719664px;}
.y10{bottom:843.059663px;}
.yc6{bottom:844.139662px;}
.y64{bottom:844.679662px;}
.y7f{bottom:845.759662px;}
.y11{bottom:848.279661px;}
.ya0{bottom:853.859658px;}
.y147{bottom:854.579658px;}
.y167{bottom:855.299658px;}
.ye2{bottom:864.299654px;}
.y4b{bottom:864.479654px;}
.yfb{bottom:865.199654px;}
.y1a7{bottom:869.699652px;}
.y13e{bottom:870.059652px;}
.y1b9{bottom:871.499651px;}
.yc5{bottom:875.999650px;}
.y7e{bottom:877.439649px;}
.y18b{bottom:881.579647px;}
.y125{bottom:883.739647px;}
.ye{bottom:885.539646px;}
.y9f{bottom:885.719646px;}
.y146{bottom:886.439645px;}
.y166{bottom:887.159645px;}
.y63{bottom:890.579644px;}
.yf{bottom:890.759644px;}
.y4a{bottom:895.439642px;}
.ye1{bottom:896.159642px;}
.yfa{bottom:896.879641px;}
.y1a6{bottom:900.659640px;}
.y13d{bottom:901.919639px;}
.y1b8{bottom:902.639639px;}
.yc3{bottom:903.000600px;}
.yc2{bottom:906.959637px;}
.y7d{bottom:909.299636px;}
.y18a{bottom:912.719635px;}
.yd{bottom:916.859633px;}
.y9e{bottom:917.399633px;}
.y145{bottom:918.299633px;}
.y62{bottom:921.539631px;}
.y49{bottom:926.579629px;}
.y124{bottom:926.759629px;}
.ye0{bottom:928.019629px;}
.yf9{bottom:928.739629px;}
.y1a5{bottom:931.799627px;}
.y13c{bottom:933.599627px;}
.y7c{bottom:941.159624px;}
.y189{bottom:943.679623px;}
.y1b7{bottom:947.819621px;}
.y9d{bottom:949.259620px;}
.y142{bottom:949.979620px;}
.yc1{bottom:950.699620px;}
.y48{bottom:957.539617px;}
.yc{bottom:959.519616px;}
.ydf{bottom:959.699616px;}
.yf8{bottom:960.599616px;}
.y1a4{bottom:962.759615px;}
.y61{bottom:964.739614px;}
.y139{bottom:965.459614px;}
.y123{bottom:969.779612px;}
.y7b{bottom:972.119611px;}
.y188{bottom:974.819610px;}
.y143{bottom:976.800600px;}
.y9c{bottom:981.119608px;}
.y47{bottom:988.679605px;}
.yde{bottom:991.559603px;}
.y13a{bottom:992.100600px;}
.yf7{bottom:992.279603px;}
.yc0{bottom:993.899602px;}
.yb{bottom:995.699602px;}
.y138{bottom:996.419601px;}
.y187{bottom:1005.779598px;}
.y60{bottom:1007.759597px;}
.y9b{bottom:1012.079595px;}
.y122{bottom:1012.799595px;}
.y7a{bottom:1016.039594px;}
.y46{bottom:1019.639592px;}
.ydd{bottom:1023.419591px;}
.yf6{bottom:1024.139590px;}
.ybf{bottom:1024.859590px;}
.y35{bottom:1028.100600px;}
.y5e{bottom:1034.400600px;}
.y3c{bottom:1035.479586px;}
.y186{bottom:1036.919585px;}
.y45{bottom:1050.779580px;}
.y10f{bottom:1050.780600px;}
.y3a{bottom:1052.760600px;}
.y79{bottom:1053.119579px;}
.ydc{bottom:1055.099578px;}
.y9a{bottom:1055.999578px;}
.y39{bottom:1056.719577px;}
.y185{bottom:1067.879573px;}
.y44{bottom:1081.739567px;}
.y111{bottom:1081.920600px;}
.ydb{bottom:1086.239566px;}
.ybe{bottom:1086.959565px;}
.y38{bottom:1089.839564px;}
.y78{bottom:1099.019560px;}
.y37{bottom:1119.539552px;}
.y3d{bottom:1122.419551px;}
.y43{bottom:1127.099549px;}
.y77{bottom:1129.979548px;}
.y4{bottom:1151.579539px;}
.y7{bottom:1181.459527px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h3{height:6.120000px;}
.hb{height:14.040000px;}
.h11{height:18.180000px;}
.h15{height:20.520000px;}
.hf{height:21.960000px;}
.h9{height:27.014755px;}
.hc{height:33.706744px;}
.he{height:36.624009px;}
.h4{height:36.703110px;}
.h5{height:38.759750px;}
.hd{height:39.339828px;}
.h1{height:41.522679px;}
.h6{height:42.894123px;}
.h12{height:43.536076px;}
.ha{height:47.988262px;}
.h14{height:48.796855px;}
.h13{height:50.027324px;}
.h2{height:51.679667px;}
.h8{height:53.261697px;}
.h7{height:57.092321px;}
.h10{height:57.585914px;}
.h16{height:60.465210px;}
.h0{height:1263.000000px;}
.w9{width:4.320000px;}
.w4{width:7.020000px;}
.w8{width:7.740000px;}
.w5{width:8.100000px;}
.w2{width:10.620000px;}
.w6{width:11.340000px;}
.w3{width:113.580000px;}
.w7{width:784.440000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:85.139966px;}
.x1b{left:100.619960px;}
.x19{left:103.139959px;}
.x18{left:105.659958px;}
.x1{left:107.999957px;}
.x5{left:110.519956px;}
.x15{left:116.640000px;}
.x41{left:117.719953px;}
.x17{left:119.879952px;}
.x9{left:121.499951px;}
.x40{left:124.559950px;}
.x7{left:133.559947px;}
.x1c{left:149.219940px;}
.x5c{left:151.199940px;}
.x4d{left:152.459939px;}
.x1a{left:159.299936px;}
.x35{left:165.779934px;}
.x38{left:169.560000px;}
.x55{left:171.539931px;}
.x56{left:175.319930px;}
.x4e{left:183.959926px;}
.x31{left:185.219926px;}
.x5d{left:189.359924px;}
.x30{left:192.059923px;}
.x36{left:194.579922px;}
.x45{left:211.860102px;}
.x10{left:222.120136px;}
.x13{left:225.899910px;}
.x14{left:228.779908px;}
.x16{left:230.220000px;}
.x2d{left:233.101054px;}
.x32{left:235.979906px;}
.x1d{left:243.179980px;}
.x1e{left:244.259902px;}
.x23{left:246.600000px;}
.x4f{left:255.779949px;}
.xa{left:262.980084px;}
.x1f{left:265.859894px;}
.xe{left:268.919892px;}
.x8{left:275.760589px;}
.xf{left:278.639889px;}
.x57{left:281.159888px;}
.x20{left:284.759824px;}
.x3c{left:288.539885px;}
.x2a{left:294.839882px;}
.x58{left:297.359881px;}
.x22{left:301.319879px;}
.x2{left:302.579879px;}
.x4c{left:308.519877px;}
.x39{left:315.899846px;}
.x37{left:325.799870px;}
.x3d{left:328.679869px;}
.x33{left:329.759868px;}
.x21{left:343.439800px;}
.x42{left:361.799855px;}
.x43{left:363.599855px;}
.x27{left:364.859854px;}
.x2b{left:365.939854px;}
.x24{left:371.519797px;}
.x6{left:408.959836px;}
.x59{left:410.579836px;}
.x50{left:420.479853px;}
.xb{left:421.559831px;}
.x5a{left:425.159830px;}
.xc{left:446.032322px;}
.x44{left:450.359820px;}
.x2c{left:455.399818px;}
.x11{left:458.639817px;}
.x2e{left:464.221020px;}
.x12{left:483.299807px;}
.x3a{left:485.999859px;}
.x5b{left:523.259791px;}
.x4a{left:540.899784px;}
.x25{left:543.239783px;}
.x5e{left:545.399782px;}
.x3f{left:552.058947px;}
.x28{left:582.479767px;}
.x51{left:585.359800px;}
.x46{left:587.520000px;}
.x47{left:603.899758px;}
.x34{left:623.700707px;}
.x4b{left:627.299749px;}
.x2f{left:628.921223px;}
.xd{left:637.379745px;}
.x3b{left:644.219686px;}
.x26{left:648.720000px;}
.x3{left:666.179734px;}
.x29{left:668.159702px;}
.x54{left:670.499161px;}
.x49{left:697.499711px;}
.x52{left:709.020000px;}
.x48{left:727.560000px;}
.x53{left:747.360000px;}
.x3e{left:806.760000px;}
@media print{
.v1{vertical-align:-7.039997pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016533pt;}
.ls6{letter-spacing:0.162287pt;}
.lsd{letter-spacing:0.211375pt;}
.lse{letter-spacing:0.649823pt;}
.ls5{letter-spacing:7.852861pt;}
.ls7{letter-spacing:10.408636pt;}
.ls4{letter-spacing:55.235925pt;}
.ls10{letter-spacing:55.722111pt;}
.ls2{letter-spacing:64.942824pt;}
.ls1{letter-spacing:117.453785pt;}
.ls9{letter-spacing:238.229771pt;}
.ls11{letter-spacing:269.608425pt;}
.lsb{letter-spacing:284.977486pt;}
.ls12{letter-spacing:322.551711pt;}
.lsa{letter-spacing:395.122509pt;}
.lsf{letter-spacing:585.317099pt;}
.lsc{letter-spacing:1303.433038pt;}
.ls0{letter-spacing:1319.442477pt;}
.wsd{word-spacing:-352.983699pt;}
.ws0{word-spacing:-41.279983pt;}
.wsb{word-spacing:-40.787358pt;}
.ws9{word-spacing:-30.431988pt;}
.ws5{word-spacing:-28.816521pt;}
.ws8{word-spacing:-15.999994pt;}
.ws6{word-spacing:-14.767354pt;}
.ws3{word-spacing:-14.463994pt;}
.ws4{word-spacing:-13.343995pt;}
.ws2{word-spacing:-13.279995pt;}
.ws1{word-spacing:-8.639997pt;}
.ws7{word-spacing:0.000000pt;}
.wsa{word-spacing:40.384015pt;}
.wsc{word-spacing:76.863809pt;}
._7d{margin-left:-323.191551pt;}
._3{margin-left:-87.871965pt;}
._1f{margin-left:-7.859786pt;}
._54{margin-left:-6.830267pt;}
._16{margin-left:-5.802822pt;}
._2c{margin-left:-4.814560pt;}
._2{margin-left:-3.923372pt;}
._4{margin-left:-2.304464pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._d{width:1.991694pt;}
._7{width:2.897152pt;}
._6{width:3.981432pt;}
._5{width:4.981812pt;}
._a{width:5.940916pt;}
._1c{width:6.896321pt;}
._9{width:7.970675pt;}
._8{width:8.953949pt;}
._f{width:9.901382pt;}
._c{width:10.993092pt;}
._b{width:12.215169pt;}
._1e{width:13.254574pt;}
._15{width:14.349692pt;}
._1b{width:16.939522pt;}
._e{width:17.945948pt;}
._76{width:19.052038pt;}
._13{width:20.836489pt;}
._14{width:22.461695pt;}
._11{width:23.632260pt;}
._10{width:24.876101pt;}
._12{width:26.201121pt;}
._7e{width:27.521529pt;}
._19{width:30.135525pt;}
._1a{width:32.014979pt;}
._1d{width:37.804924pt;}
._73{width:40.650398pt;}
._20{width:47.958106pt;}
._3c{width:57.563656pt;}
._18{width:58.834776pt;}
._17{width:60.087529pt;}
._34{width:65.424056pt;}
._65{width:91.679710pt;}
._4b{width:94.705466pt;}
._72{width:101.422185pt;}
._7a{width:103.522998pt;}
._6c{width:106.009868pt;}
._75{width:111.911785pt;}
._62{width:113.551861pt;}
._47{width:117.546320pt;}
._6e{width:121.378823pt;}
._43{width:125.627841pt;}
._35{width:127.123971pt;}
._74{width:129.227254pt;}
._5e{width:135.586883pt;}
._2a{width:139.488472pt;}
._42{width:141.755200pt;}
._63{width:146.128151pt;}
._49{width:153.935938pt;}
._4a{width:156.895942pt;}
._7c{width:162.832001pt;}
._36{width:173.201039pt;}
._29{width:174.688074pt;}
._77{width:178.211051pt;}
._68{width:181.037073pt;}
._64{width:187.876106pt;}
._7b{width:191.962016pt;}
._58{width:196.406105pt;}
._2e{width:199.926093pt;}
._55{width:203.791958pt;}
._23{width:206.230035pt;}
._67{width:207.510674pt;}
._71{width:210.274714pt;}
._30{width:212.002330pt;}
._57{width:213.914512pt;}
._3f{width:215.835752pt;}
._22{width:231.640355pt;}
._6d{width:239.510944pt;}
._5f{width:245.914782pt;}
._4c{width:252.977497pt;}
._3a{width:258.477016pt;}
._56{width:275.463902pt;}
._79{width:283.106921pt;}
._52{width:284.977166pt;}
._44{width:287.419547pt;}
._27{width:301.391036pt;}
._38{width:315.373278pt;}
._3b{width:316.889512pt;}
._3d{width:327.358200pt;}
._66{width:330.616520pt;}
._37{width:333.072079pt;}
._6b{width:342.489897pt;}
._2b{width:345.922482pt;}
._5d{width:357.858851pt;}
._78{width:361.314894pt;}
._40{width:369.147434pt;}
._31{width:373.218806pt;}
._6a{width:378.009507pt;}
._6f{width:381.894377pt;}
._3e{width:386.853881pt;}
._5b{width:393.378461pt;}
._70{width:395.042625pt;}
._24{width:402.702472pt;}
._28{width:412.025589pt;}
._61{width:413.039948pt;}
._5a{width:428.962467pt;}
._33{width:439.025135pt;}
._21{width:445.390980pt;}
._59{width:451.513470pt;}
._60{width:455.025264pt;}
._46{width:456.315167pt;}
._5c{width:483.513124pt;}
._25{width:505.945448pt;}
._69{width:507.139653pt;}
._2f{width:521.955042pt;}
._39{width:525.156960pt;}
._26{width:537.945742pt;}
._2d{width:553.314657pt;}
._4f{width:554.547552pt;}
._41{width:562.939345pt;}
._32{width:585.314326pt;}
._45{width:594.938999pt;}
._48{width:626.939269pt;}
._4d{width:632.263777pt;}
._51{width:643.925087pt;}
._50{width:727.446745pt;}
._53{width:755.361784pt;}
._4e{width:764.755993pt;}
.fs4{font-size:34.559986pt;}
.fs5{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.y6{bottom:-9.759991pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y16{bottom:2.399206pt;}
.y3b{bottom:3.519091pt;}
.yc4{bottom:3.519144pt;}
.y112{bottom:3.839080pt;}
.y110{bottom:3.839092pt;}
.y5f{bottom:3.839097pt;}
.y13b{bottom:3.839112pt;}
.y144{bottom:3.839118pt;}
.y36{bottom:4.319099pt;}
.yda{bottom:4.320034pt;}
.ya{bottom:29.546922pt;}
.yd9{bottom:44.106880pt;}
.y8{bottom:48.426914pt;}
.y9{bottom:50.186913pt;}
.y161{bottom:141.226610pt;}
.y197{bottom:142.026610pt;}
.y5d{bottom:143.626609pt;}
.yec{bottom:144.746609pt;}
.y1c5{bottom:147.146608pt;}
.y151{bottom:151.786606pt;}
.y1a2{bottom:153.066605pt;}
.y179{bottom:154.186605pt;}
.y34{bottom:154.826605pt;}
.y119{bottom:162.346602pt;}
.y105{bottom:162.506602pt;}
.y12e{bottom:165.226601pt;}
.yd6{bottom:168.106599pt;}
.y160{bottom:168.746599pt;}
.yb0{bottom:170.506598pt;}
.y5c{bottom:171.306598pt;}
.y1a1{bottom:176.266596pt;}
.y150{bottom:179.466595pt;}
.ybc{bottom:181.386594pt;}
.y178{bottom:181.866594pt;}
.yeb{bottom:182.986593pt;}
.y90{bottom:183.306593pt;}
.y76{bottom:187.946591pt;}
.y104{bottom:190.026591pt;}
.y1a0{bottom:190.986590pt;}
.y12d{bottom:192.906590pt;}
.y15f{bottom:196.426588pt;}
.yb1{bottom:197.066588pt;}
.y33{bottom:197.706588pt;}
.y118{bottom:200.586586pt;}
.yd5{bottom:206.346584pt;}
.y198{bottom:206.506584pt;}
.y14f{bottom:206.986584pt;}
.yaf{bottom:208.746583pt;}
.y5b{bottom:209.546583pt;}
.y75{bottom:215.626580pt;}
.y98{bottom:217.066580pt;}
.y103{bottom:217.706580pt;}
.yb2{bottom:217.866580pt;}
.y177{bottom:220.106579pt;}
.y12c{bottom:220.426578pt;}
.y8f{bottom:221.546578pt;}
.y15e{bottom:223.946577pt;}
.y1b6{bottom:226.186576pt;}
.yea{bottom:229.226575pt;}
.y21{bottom:229.546575pt;}
.y199{bottom:230.826574pt;}
.y91{bottom:232.586574pt;}
.y14e{bottom:234.666573pt;}
.yb3{bottom:238.506571pt;}
.y117{bottom:238.826571pt;}
.yd4{bottom:244.586569pt;}
.y102{bottom:245.226569pt;}
.yae{bottom:246.986568pt;}
.y5a{bottom:247.786568pt;}
.y12b{bottom:248.106567pt;}
.y74{bottom:253.866565pt;}
.y19a{bottom:255.306565pt;}
.ye9{bottom:256.906564pt;}
.y92{bottom:258.026563pt;}
.y176{bottom:258.346563pt;}
.yb4{bottom:259.306563pt;}
.y8e{bottom:259.786563pt;}
.y42{bottom:260.266563pt;}
.y14d{bottom:262.186562pt;}
.y1c4{bottom:264.586561pt;}
.y116{bottom:266.506560pt;}
.yd8{bottom:266.826560pt;}
.y183{bottom:269.706559pt;}
.y101{bottom:272.906558pt;}
.y59{bottom:275.306557pt;}
.y41{bottom:278.026555pt;}
.y19b{bottom:279.626555pt;}
.yb5{bottom:280.106555pt;}
.y73{bottom:281.386554pt;}
.yd3{bottom:282.986553pt;}
.y93{bottom:283.306553pt;}
.ye8{bottom:284.426553pt;}
.yad{bottom:285.386553pt;}
.y12a{bottom:286.346552pt;}
.y1b5{bottom:292.106550pt;}
.y115{bottom:294.026549pt;}
.y40{bottom:295.786548pt;}
.y175{bottom:296.586548pt;}
.y8d{bottom:298.026547pt;}
.y17a{bottom:299.946547pt;}
.y100{bottom:300.426546pt;}
.yb6{bottom:300.906546pt;}
.y19c{bottom:304.106545pt;}
.y94{bottom:308.586543pt;}
.y72{bottom:309.066543pt;}
.ye7{bottom:312.106542pt;}
.y3f{bottom:313.546541pt;}
.y58{bottom:313.706541pt;}
.y1b4{bottom:319.786539pt;}
.yd2{bottom:321.226538pt;}
.y17b{bottom:321.386538pt;}
.yb7{bottom:321.706538pt;}
.yac{bottom:323.626537pt;}
.y129{bottom:324.586537pt;}
.y19d{bottom:328.426535pt;}
.y3e{bottom:332.106534pt;}
.y114{bottom:332.426534pt;}
.y95{bottom:333.866533pt;}
.y174{bottom:334.986533pt;}
.y14c{bottom:335.306533pt;}
.y8c{bottom:336.266532pt;}
.y71{bottom:336.586532pt;}
.yff{bottom:338.826531pt;}
.ye6{bottom:339.626531pt;}
.yb8{bottom:342.346530pt;}
.y17c{bottom:342.826530pt;}
.y15c{bottom:347.146528pt;}
.y1c3{bottom:347.306528pt;}
.y20{bottom:351.626526pt;}
.y57{bottom:351.946526pt;}
.y19e{bottom:352.906526pt;}
.y1b3{bottom:358.026523pt;}
.y96{bottom:359.306523pt;}
.yd1{bottom:359.466523pt;}
.yab{bottom:361.866522pt;}
.y152{bottom:362.826522pt;}
.yb9{bottom:363.146521pt;}
.y17d{bottom:364.266521pt;}
.yfe{bottom:366.346520pt;}
.y113{bottom:366.986520pt;}
.y136{bottom:371.306518pt;}
.y173{bottom:373.226517pt;}
.y8b{bottom:374.506517pt;}
.y70{bottom:374.826517pt;}
.y32{bottom:376.106516pt;}
.y19f{bottom:377.226516pt;}
.y121{bottom:379.786515pt;}
.yba{bottom:383.946513pt;}
.y97{bottom:384.586513pt;}
.y1b2{bottom:385.546512pt;}
.y17e{bottom:385.706512pt;}
.y153{bottom:385.866512pt;}
.ye5{bottom:386.026512pt;}
.y12f{bottom:386.986512pt;}
.y56{bottom:390.186511pt;}
.y31{bottom:393.706509pt;}
.y120{bottom:394.346509pt;}
.yd0{bottom:397.706508pt;}
.yaa{bottom:400.106507pt;}
.yfd{bottom:401.066506pt;}
.y1a3{bottom:402.346506pt;}
.y6f{bottom:402.506506pt;}
.y162{bottom:404.266505pt;}
.ybb{bottom:404.746505pt;}
.y17f{bottom:407.146504pt;}
.y154{bottom:408.906503pt;}
.y99{bottom:409.546503pt;}
.y11a{bottom:410.026503pt;}
.y172{bottom:411.466502pt;}
.y8a{bottom:412.906502pt;}
.y10d{bottom:413.066501pt;}
.y130{bottom:421.546498pt;}
.y30{bottom:422.026498pt;}
.y1b1{bottom:423.786497pt;}
.y55{bottom:428.426495pt;}
.y106{bottom:428.586495pt;}
.ye4{bottom:428.746495pt;}
.ybd{bottom:429.706495pt;}
.y6e{bottom:430.026495pt;}
.y1f{bottom:430.506494pt;}
.y155{bottom:431.946494pt;}
.ycf{bottom:435.946492pt;}
.ya9{bottom:438.346491pt;}
.y2f{bottom:439.786491pt;}
.yf4{bottom:440.586490pt;}
.y163{bottom:445.866488pt;}
.y11b{bottom:447.626488pt;}
.y171{bottom:449.706487pt;}
.y180{bottom:450.026487pt;}
.y89{bottom:451.146486pt;}
.y1b0{bottom:451.466486pt;}
.y196{bottom:453.386485pt;}
.y156{bottom:454.986485pt;}
.yf3{bottom:455.306485pt;}
.y131{bottom:456.106484pt;}
.y6d{bottom:457.706484pt;}
.y107{bottom:463.306481pt;}
.y1e{bottom:463.626481pt;}
.y2e{bottom:465.866480pt;}
.y54{bottom:466.666480pt;}
.y1c2{bottom:470.346479pt;}
.yed{bottom:470.826478pt;}
.y181{bottom:471.466478pt;}
.yce{bottom:474.186477pt;}
.ya8{bottom:476.586476pt;}
.y157{bottom:478.186475pt;}
.y1d{bottom:479.306475pt;}
.y2d{bottom:481.226474pt;}
.y195{bottom:481.706474pt;}
.y11c{bottom:485.386473pt;}
.y164{bottom:487.306472pt;}
.y170{bottom:487.946471pt;}
.y88{bottom:489.386471pt;}
.y1af{bottom:489.706471pt;}
.y132{bottom:490.666470pt;}
.y182{bottom:492.906470pt;}
.y1c{bottom:494.986469pt;}
.y6c{bottom:495.946468pt;}
.y2c{bottom:496.586468pt;}
.y108{bottom:497.866468pt;}
.y158{bottom:501.226466pt;}
.y53{bottom:504.906465pt;}
.yee{bottom:509.546463pt;}
.y1b{bottom:509.706463pt;}
.y194{bottom:510.026463pt;}
.y1c1{bottom:511.306462pt;}
.y2b{bottom:511.946462pt;}
.ycd{bottom:512.426462pt;}
.ya7{bottom:514.826461pt;}
.y87{bottom:516.906460pt;}
.y1ae{bottom:517.226460pt;}
.y184{bottom:518.026459pt;}
.y11d{bottom:523.146457pt;}
.y6b{bottom:523.626457pt;}
.y159{bottom:524.266457pt;}
.y133{bottom:525.386457pt;}
.y16f{bottom:526.186456pt;}
.yd7{bottom:526.666456pt;}
.y2a{bottom:527.146456pt;}
.y165{bottom:528.906455pt;}
.y109{bottom:532.426454pt;}
.y193{bottom:538.186451pt;}
.y1c0{bottom:538.826451pt;}
.y1a{bottom:541.706450pt;}
.y29{bottom:542.506450pt;}
.y52{bottom:543.306449pt;}
.y86{bottom:544.586449pt;}
.y15a{bottom:547.306448pt;}
.yef{bottom:548.106447pt;}
.ycc{bottom:550.826446pt;}
.y6a{bottom:551.146446pt;}
.y1ad{bottom:555.626444pt;}
.y28{bottom:557.866444pt;}
.y134{bottom:559.946443pt;}
.y11e{bottom:560.906442pt;}
.y16e{bottom:564.426441pt;}
.y192{bottom:566.506440pt;}
.y10a{bottom:566.986440pt;}
.ya6{bottom:570.026439pt;}
.y15b{bottom:570.346439pt;}
.y85{bottom:572.106438pt;}
.y27{bottom:573.226437pt;}
.y19{bottom:573.706437pt;}
.y1bf{bottom:577.066436pt;}
.y51{bottom:581.546434pt;}
.y1ac{bottom:583.146433pt;}
.yf0{bottom:586.666432pt;}
.y26{bottom:588.586431pt;}
.ycb{bottom:589.066431pt;}
.y69{bottom:589.386431pt;}
.y16d{bottom:592.746430pt;}
.y135{bottom:594.506429pt;}
.y191{bottom:594.826429pt;}
.y15d{bottom:595.466428pt;}
.ya5{bottom:597.706428pt;}
.y11f{bottom:598.506427pt;}
.y10b{bottom:601.706426pt;}
.y25{bottom:603.946425pt;}
.y1be{bottom:604.746425pt;}
.y18{bottom:605.706424pt;}
.y84{bottom:610.346423pt;}
.y24{bottom:619.146419pt;}
.y137{bottom:619.626419pt;}
.y50{bottom:619.786419pt;}
.y16c{bottom:621.066418pt;}
.y1ab{bottom:621.386418pt;}
.y17{bottom:621.706418pt;}
.y190{bottom:622.986417pt;}
.yf1{bottom:625.226417pt;}
.yca{bottom:627.306416pt;}
.y68{bottom:627.626416pt;}
.y23{bottom:634.506413pt;}
.ya4{bottom:635.946412pt;}
.y10c{bottom:636.266412pt;}
.y83{bottom:638.666411pt;}
.y1bd{bottom:642.986409pt;}
.y14b{bottom:646.666408pt;}
.y16b{bottom:648.586407pt;}
.y1aa{bottom:649.066407pt;}
.y22{bottom:649.706407pt;}
.y15{bottom:649.867200pt;}
.y18f{bottom:651.306406pt;}
.y67{bottom:655.306405pt;}
.y4f{bottom:658.026403pt;}
.y10e{bottom:661.386402pt;}
.yf2{bottom:663.786401pt;}
.yc9{bottom:665.546400pt;}
.y82{bottom:666.986400pt;}
.y1bc{bottom:670.506398pt;}
.y128{bottom:670.826398pt;}
.ya3{bottom:674.186397pt;}
.y14a{bottom:674.826397pt;}
.y16a{bottom:676.906396pt;}
.y18e{bottom:678.826395pt;}
.y13{bottom:680.266395pt;}
.y14{bottom:680.426394pt;}
.y66{bottom:682.826394pt;}
.y4e{bottom:685.546392pt;}
.y141{bottom:688.586391pt;}
.yf5{bottom:688.906391pt;}
.y1a9{bottom:689.386391pt;}
.yc8{bottom:693.866389pt;}
.y81{bottom:695.146389pt;}
.ya2{bottom:702.506386pt;}
.y149{bottom:703.146385pt;}
.y169{bottom:704.426385pt;}
.y1bb{bottom:708.746383pt;}
.y127{bottom:709.066383pt;}
.y65{bottom:710.506382pt;}
.yfc{bottom:712.426382pt;}
.y4d{bottom:713.226381pt;}
.y140{bottom:716.906380pt;}
.y18d{bottom:717.866380pt;}
.y12{bottom:721.546378pt;}
.yc7{bottom:722.026378pt;}
.y80{bottom:723.466377pt;}
.ya1{bottom:730.826374pt;}
.y148{bottom:731.466374pt;}
.y1a8{bottom:732.266374pt;}
.y168{bottom:732.746374pt;}
.y1ba{bottom:736.426372pt;}
.ye3{bottom:740.106371pt;}
.y4c{bottom:740.746370pt;}
.y13f{bottom:745.066369pt;}
.y18c{bottom:745.386369pt;}
.y126{bottom:747.306368pt;}
.y10{bottom:749.386367pt;}
.yc6{bottom:750.346367pt;}
.y64{bottom:750.826366pt;}
.y7f{bottom:751.786366pt;}
.y11{bottom:754.026365pt;}
.ya0{bottom:758.986363pt;}
.y147{bottom:759.626363pt;}
.y167{bottom:760.266363pt;}
.ye2{bottom:768.266359pt;}
.y4b{bottom:768.426359pt;}
.yfb{bottom:769.066359pt;}
.y1a7{bottom:773.066357pt;}
.y13e{bottom:773.386357pt;}
.y1b9{bottom:774.666357pt;}
.yc5{bottom:778.666355pt;}
.y7e{bottom:779.946355pt;}
.y18b{bottom:783.626353pt;}
.y125{bottom:785.546352pt;}
.ye{bottom:787.146352pt;}
.y9f{bottom:787.306352pt;}
.y146{bottom:787.946351pt;}
.y166{bottom:788.586351pt;}
.y63{bottom:791.626350pt;}
.yf{bottom:791.786350pt;}
.y4a{bottom:795.946348pt;}
.ye1{bottom:796.586348pt;}
.yfa{bottom:797.226348pt;}
.y1a6{bottom:800.586346pt;}
.y13d{bottom:801.706346pt;}
.y1b8{bottom:802.346346pt;}
.yc3{bottom:802.667200pt;}
.yc2{bottom:806.186344pt;}
.y7d{bottom:808.266343pt;}
.y18a{bottom:811.306342pt;}
.yd{bottom:814.986341pt;}
.y9e{bottom:815.466340pt;}
.y145{bottom:816.266340pt;}
.y62{bottom:819.146339pt;}
.y49{bottom:823.626337pt;}
.y124{bottom:823.786337pt;}
.ye0{bottom:824.906337pt;}
.yf9{bottom:825.546336pt;}
.y1a5{bottom:828.266335pt;}
.y13c{bottom:829.866335pt;}
.y7c{bottom:836.586332pt;}
.y189{bottom:838.826331pt;}
.y1b7{bottom:842.506330pt;}
.y9d{bottom:843.786329pt;}
.y142{bottom:844.426329pt;}
.yc1{bottom:845.066329pt;}
.y48{bottom:851.146326pt;}
.yc{bottom:852.906326pt;}
.ydf{bottom:853.066325pt;}
.yf8{bottom:853.866325pt;}
.y1a4{bottom:855.786324pt;}
.y61{bottom:857.546324pt;}
.y139{bottom:858.186323pt;}
.y123{bottom:862.026322pt;}
.y7b{bottom:864.106321pt;}
.y188{bottom:866.506320pt;}
.y143{bottom:868.267200pt;}
.y9c{bottom:872.106318pt;}
.y47{bottom:878.826315pt;}
.yde{bottom:881.386314pt;}
.y13a{bottom:881.867200pt;}
.yf7{bottom:882.026314pt;}
.yc0{bottom:883.466313pt;}
.yb{bottom:885.066313pt;}
.y138{bottom:885.706312pt;}
.y187{bottom:894.026309pt;}
.y60{bottom:895.786308pt;}
.y9b{bottom:899.626307pt;}
.y122{bottom:900.266307pt;}
.y7a{bottom:903.146305pt;}
.y46{bottom:906.346304pt;}
.ydd{bottom:909.706303pt;}
.yf6{bottom:910.346303pt;}
.ybf{bottom:910.986302pt;}
.y35{bottom:913.867200pt;}
.y5e{bottom:919.467200pt;}
.y3c{bottom:920.426298pt;}
.y186{bottom:921.706298pt;}
.y45{bottom:934.026293pt;}
.y10f{bottom:934.027200pt;}
.y3a{bottom:935.787200pt;}
.y79{bottom:936.106292pt;}
.ydc{bottom:937.866292pt;}
.y9a{bottom:938.666291pt;}
.y39{bottom:939.306291pt;}
.y185{bottom:949.226287pt;}
.y44{bottom:961.546282pt;}
.y111{bottom:961.707200pt;}
.ydb{bottom:965.546280pt;}
.ybe{bottom:966.186280pt;}
.y38{bottom:968.746279pt;}
.y78{bottom:976.906276pt;}
.y37{bottom:995.146269pt;}
.y3d{bottom:997.706268pt;}
.y43{bottom:1001.866266pt;}
.y77{bottom:1004.426265pt;}
.y4{bottom:1023.626257pt;}
.y7{bottom:1050.186247pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h3{height:5.440000pt;}
.hb{height:12.480000pt;}
.h11{height:16.160000pt;}
.h15{height:18.240000pt;}
.hf{height:19.520000pt;}
.h9{height:24.013115pt;}
.hc{height:29.961551pt;}
.he{height:32.554674pt;}
.h4{height:32.624987pt;}
.h5{height:34.453111pt;}
.hd{height:34.968736pt;}
.h1{height:36.909048pt;}
.h6{height:38.128110pt;}
.h12{height:38.698735pt;}
.ha{height:42.656233pt;}
.h14{height:43.374983pt;}
.h13{height:44.468732pt;}
.h2{height:45.937482pt;}
.h8{height:47.343731pt;}
.h7{height:50.748730pt;}
.h10{height:51.187480pt;}
.h16{height:53.746854pt;}
.h0{height:1122.666667pt;}
.w9{width:3.840000pt;}
.w4{width:6.240000pt;}
.w8{width:6.880000pt;}
.w5{width:7.200000pt;}
.w2{width:9.440000pt;}
.w6{width:10.080000pt;}
.w3{width:100.960000pt;}
.w7{width:697.280000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:75.679970pt;}
.x1b{left:89.439964pt;}
.x19{left:91.679963pt;}
.x18{left:93.919962pt;}
.x1{left:95.999962pt;}
.x5{left:98.239961pt;}
.x15{left:103.680000pt;}
.x41{left:104.639958pt;}
.x17{left:106.559957pt;}
.x9{left:107.999957pt;}
.x40{left:110.719956pt;}
.x7{left:118.719953pt;}
.x1c{left:132.639947pt;}
.x5c{left:134.399946pt;}
.x4d{left:135.519946pt;}
.x1a{left:141.599943pt;}
.x35{left:147.359941pt;}
.x38{left:150.720000pt;}
.x55{left:152.479939pt;}
.x56{left:155.839938pt;}
.x4e{left:163.519935pt;}
.x31{left:164.639934pt;}
.x5d{left:168.319933pt;}
.x30{left:170.719932pt;}
.x36{left:172.959931pt;}
.x45{left:188.320090pt;}
.x10{left:197.440121pt;}
.x13{left:200.799920pt;}
.x14{left:203.359919pt;}
.x16{left:204.640000pt;}
.x2d{left:207.200936pt;}
.x32{left:209.759916pt;}
.x1d{left:216.159982pt;}
.x1e{left:217.119913pt;}
.x23{left:219.200000pt;}
.x4f{left:227.359955pt;}
.xa{left:233.760075pt;}
.x1f{left:236.319905pt;}
.xe{left:239.039904pt;}
.x8{left:245.120524pt;}
.xf{left:247.679901pt;}
.x57{left:249.919900pt;}
.x20{left:253.119844pt;}
.x3c{left:256.479897pt;}
.x2a{left:262.079895pt;}
.x58{left:264.319894pt;}
.x22{left:267.839893pt;}
.x2{left:268.959892pt;}
.x4c{left:274.239890pt;}
.x39{left:280.799863pt;}
.x37{left:289.599884pt;}
.x3d{left:292.159883pt;}
.x33{left:293.119883pt;}
.x21{left:305.279822pt;}
.x42{left:321.599871pt;}
.x43{left:323.199871pt;}
.x27{left:324.319870pt;}
.x2b{left:325.279870pt;}
.x24{left:330.239820pt;}
.x6{left:363.519855pt;}
.x59{left:364.959854pt;}
.x50{left:373.759869pt;}
.xb{left:374.719850pt;}
.x5a{left:377.919849pt;}
.xc{left:396.473175pt;}
.x44{left:400.319840pt;}
.x2c{left:404.799838pt;}
.x11{left:407.679837pt;}
.x2e{left:412.640906pt;}
.x12{left:429.599828pt;}
.x3a{left:431.999875pt;}
.x5b{left:465.119814pt;}
.x4a{left:480.799808pt;}
.x25{left:482.879807pt;}
.x5e{left:484.799806pt;}
.x3f{left:490.719064pt;}
.x28{left:517.759793pt;}
.x51{left:520.319822pt;}
.x46{left:522.240000pt;}
.x47{left:536.799785pt;}
.x34{left:554.400629pt;}
.x4b{left:557.599777pt;}
.x2f{left:559.041087pt;}
.xd{left:566.559773pt;}
.x3b{left:572.639721pt;}
.x26{left:576.640000pt;}
.x3{left:592.159763pt;}
.x29{left:593.919735pt;}
.x54{left:595.999254pt;}
.x49{left:619.999743pt;}
.x52{left:630.240000pt;}
.x48{left:646.720000pt;}
.x53{left:664.320000pt;}
.x3e{left:717.120000pt;}
}




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