
    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_4a760335b4d59bca79f654aa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_eeea62e91041c384f0a2d505.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100586;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_17f7b5ca4c60bb7f390c54ab.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_08df154c93eb73eb4394f298.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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;}
.m1{transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m7{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-1.566000px;}
.ls15{letter-spacing:-1.211040px;}
.ls1d{letter-spacing:-0.927360px;}
.ls1e{letter-spacing:-0.728640px;}
.ls21{letter-spacing:-0.702000px;}
.ls1c{letter-spacing:-0.662400px;}
.ls1f{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.334080px;}
.ls2e{letter-spacing:-0.331200px;}
.ls17{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.264960px;}
.ls13{letter-spacing:-0.250560px;}
.ls16{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.198720px;}
.ls1a{letter-spacing:-0.066240px;}
.ls12{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.066240px;}
.ls11{letter-spacing:0.331200px;}
.ls10{letter-spacing:0.397440px;}
.lse{letter-spacing:0.794880px;}
.ls22{letter-spacing:0.861120px;}
.ls23{letter-spacing:0.927360px;}
.ls24{letter-spacing:0.993600px;}
.ls9{letter-spacing:91.411200px;}
.ls31{letter-spacing:97.968960px;}
.ls6{letter-spacing:99.293760px;}
.ls7{letter-spacing:102.208320px;}
.ls27{letter-spacing:130.360320px;}
.ls1{letter-spacing:176.520840px;}
.ls3{letter-spacing:226.739520px;}
.ls0{letter-spacing:232.740000px;}
.ls25{letter-spacing:336.234240px;}
.ls30{letter-spacing:344.646720px;}
.lsa{letter-spacing:362.200320px;}
.lsd{letter-spacing:365.446080px;}
.ls4{letter-spacing:429.168960px;}
.ls8{letter-spacing:446.457600px;}
.ls2d{letter-spacing:462.024000px;}
.ls5{letter-spacing:525.415680px;}
.ls2{letter-spacing:563.215200px;}
.ls2f{letter-spacing:593.444160px;}
.ls29{letter-spacing:646.436160px;}
.lsb{letter-spacing:658.823040px;}
.ls26{letter-spacing:795.674880px;}
.ls2b{letter-spacing:837.472320px;}
.ls32{letter-spacing:847.408320px;}
.ls28{letter-spacing:882.912960px;}
.lsc{letter-spacing:1694.485440px;}
.ls2a{letter-spacing:1866.047040px;}
.ls2c{letter-spacing:1952.755200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-17.487360px;}
.ws0{word-spacing:-16.626240px;}
.ws2{word-spacing:-16.493760px;}
.ws25{word-spacing:-16.361280px;}
.ws24{word-spacing:-16.228800px;}
.ws23{word-spacing:-15.897600px;}
.wsa{word-spacing:-4.371840px;}
.ws6{word-spacing:-3.643200px;}
.ws33{word-spacing:-3.510720px;}
.ws34{word-spacing:-3.312000px;}
.ws8{word-spacing:-2.914560px;}
.ws2b{word-spacing:-2.782080px;}
.ws12{word-spacing:-2.649600px;}
.ws2e{word-spacing:-2.252160px;}
.ws29{word-spacing:-2.119680px;}
.ws13{word-spacing:-1.523520px;}
.ws14{word-spacing:-1.391040px;}
.ws18{word-spacing:-1.258560px;}
.ws10{word-spacing:-0.794880px;}
.ws1c{word-spacing:-0.596160px;}
.ws2f{word-spacing:-0.331200px;}
.ws1b{word-spacing:-0.270000px;}
.ws11{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
.ws16{word-spacing:0.066240px;}
.ws7{word-spacing:0.198720px;}
.ws20{word-spacing:0.264960px;}
.ws26{word-spacing:0.334080px;}
.wsf{word-spacing:0.662400px;}
.ws1a{word-spacing:0.728640px;}
.wsd{word-spacing:0.794880px;}
.ws9{word-spacing:0.927360px;}
.wse{word-spacing:0.993600px;}
.ws5{word-spacing:1.188000px;}
.ws4{word-spacing:1.296000px;}
.ws27{word-spacing:1.656000px;}
.ws22{word-spacing:1.854720px;}
.ws17{word-spacing:2.119680px;}
.ws15{word-spacing:2.252160px;}
.ws21{word-spacing:2.384640px;}
.wsc{word-spacing:2.848320px;}
.wsb{word-spacing:2.980800px;}
.ws19{word-spacing:3.113280px;}
.ws32{word-spacing:4.239360px;}
.ws2d{word-spacing:4.371840px;}
.ws28{word-spacing:4.504320px;}
.ws35{word-spacing:4.968000px;}
.ws1f{word-spacing:5.829120px;}
.ws1d{word-spacing:5.961600px;}
.ws1e{word-spacing:6.160320px;}
.ws30{word-spacing:6.425280px;}
.ws36{word-spacing:6.690240px;}
.ws2a{word-spacing:7.286400px;}
.ws31{word-spacing:8.015040px;}
.ws2c{word-spacing:8.809920px;}
._3c{margin-left:-21.097080px;}
._3d{margin-left:-16.624800px;}
._3e{margin-left:-11.491200px;}
._73{margin-left:-2.868120px;}
._2{margin-left:-1.127520px;}
._6{width:1.344600px;}
._5{width:2.614176px;}
._3f{width:4.913640px;}
._35{width:30.205440px;}
._72{width:39.565152px;}
._6b{width:41.711328px;}
._70{width:48.911616px;}
._20{width:51.090912px;}
._e{width:60.477120px;}
._5b{width:64.054080px;}
._57{width:67.564800px;}
._c{width:73.393920px;}
._62{width:74.844576px;}
._5f{width:76.374720px;}
._15{width:89.265024px;}
._b{width:92.139840px;}
._23{width:94.286016px;}
._6c{width:97.054848px;}
._26{width:98.611488px;}
._32{width:103.665600px;}
._29{width:106.527168px;}
._22{width:129.565440px;}
._6f{width:130.943232px;}
._6d{width:135.301824px;}
._53{width:138.931776px;}
._68{width:141.899328px;}
._71{width:147.615840px;}
._1b{width:151.186176px;}
._5c{width:156.915936px;}
._4f{width:164.884608px;}
._21{width:167.010912px;}
._5e{width:173.482560px;}
._56{width:182.789280px;}
._f{width:185.717088px;}
._34{width:190.042560px;}
._1a{width:192.943872px;}
._39{width:194.394528px;}
._19{width:197.971488px;}
._1c{width:203.058720px;}
._50{width:207.357696px;}
._52{width:211.709664px;}
._6e{width:213.080832px;}
._16{width:219.605472px;}
._14{width:221.778144px;}
._2b{width:228.965184px;}
._55{width:231.051744px;}
._49{width:233.933184px;}
._18{width:242.623872px;}
._58{width:244.087776px;}
._17{width:246.187584px;}
._24{width:247.644864px;}
._27{width:249.810912px;}
._d{width:253.368000px;}
._66{width:255.534048px;}
._11{width:260.634528px;}
._2d{width:261.979200px;}
._42{width:275.757120px;}
._63{width:277.134912px;}
._10{width:285.103584px;}
._41{width:290.131200px;}
._43{width:304.551648px;}
._25{width:312.473952px;}
._61{width:315.348768px;}
._a{width:324.046080px;}
._47{width:336.962880px;}
._33{width:338.420160px;}
._4a{width:349.177536px;}
._2c{width:358.557120px;}
._9{width:364.253760px;}
._31{width:370.811520px;}
._1f{width:372.931200px;}
._64{width:389.530944px;}
._4b{width:397.440000px;}
._8{width:400.222080px;}
._54{width:406.687104px;}
._5a{width:439.171200px;}
._12{width:455.068800px;}
._60{width:501.171840px;}
._3a{width:509.716800px;}
._2f{width:516.936960px;}
._40{width:521.971200px;}
._4c{width:535.616640px;}
._7{width:548.665920px;}
._28{width:553.633920px;}
._13{width:591.854400px;}
._45{width:616.296960px;}
._5d{width:666.049824px;}
._2a{width:674.641152px;}
._1e{width:726.586560px;}
._2e{width:740.165760px;}
._69{width:750.830400px;}
._3b{width:761.760000px;}
._1d{width:786.931200px;}
._30{width:804.948480px;}
._59{width:823.701024px;}
._37{width:848.733120px;}
._36{width:886.953600px;}
._3{width:913.750560px;}
._51{width:951.802560px;}
._4{width:995.516640px;}
._6a{width:1094.351040px;}
._46{width:1138.930560px;}
._0{width:1141.551360px;}
._65{width:1179.469440px;}
._1{width:1193.876640px;}
._67{width:1362.291840px;}
._44{width:1453.126752px;}
._4e{width:1457.280000px;}
._48{width:1524.911040px;}
._4d{width:1576.445760px;}
._38{width:1974.150720px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(23,54,93);}
.fc0{color:transparent;}
.fs0{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:65.697840px;}
.y5{bottom:65.700000px;}
.y4d{bottom:65.703600px;}
.y71{bottom:98.492400px;}
.y24{bottom:102.077280px;}
.y4c{bottom:102.085920px;}
.y70{bottom:118.828080px;}
.y23{bottom:122.412960px;}
.y4b{bottom:122.421600px;}
.y22{bottom:142.930800px;}
.y4a{bottom:142.939440px;}
.y6f{bottom:151.948080px;}
.y21{bottom:163.266480px;}
.y49{bottom:163.275120px;}
.y92{bottom:172.283760px;}
.y20{bottom:183.602160px;}
.y48{bottom:183.610800px;}
.y6e{bottom:192.619440px;}
.y1f{bottom:204.120000px;}
.y47{bottom:204.128640px;}
.y6d{bottom:212.955120px;}
.y1e{bottom:224.455680px;}
.y46{bottom:224.464320px;}
.y6c{bottom:233.108640px;}
.y1d{bottom:244.791360px;}
.y45{bottom:244.800000px;}
.y6b{bottom:253.444320px;}
.y1c{bottom:265.491360px;}
.y43{bottom:265.497840px;}
.y44{bottom:265.500000px;}
.y6a{bottom:273.780000px;}
.y91{bottom:273.784320px;}
.y69{bottom:294.120000px;}
.y68{bottom:294.145200px;}
.y90{bottom:294.152400px;}
.y1b{bottom:299.157840px;}
.y42{bottom:299.164320px;}
.y67{bottom:314.480880px;}
.y8f{bottom:314.488080px;}
.y1a{bottom:319.493520px;}
.y41{bottom:319.500000px;}
.y40{bottom:319.502160px;}
.y66{bottom:334.816560px;}
.y8e{bottom:334.823760px;}
.y3f{bottom:340.020000px;}
.y19{bottom:340.027920px;}
.y3e{bottom:340.028640px;}
.y18{bottom:360.363600px;}
.y3d{bottom:360.364320px;}
.y65{bottom:367.936560px;}
.y8d{bottom:367.943760px;}
.y3c{bottom:380.700000px;}
.y17{bottom:380.732400px;}
.y3b{bottom:380.738160px;}
.y64{bottom:388.272240px;}
.y8c{bottom:388.279440px;}
.y3a{bottom:401.256000px;}
.y63{bottom:408.607920px;}
.y8b{bottom:408.615120px;}
.y16{bottom:421.585920px;}
.y39{bottom:421.591680px;}
.y62{bottom:428.943600px;}
.y8a{bottom:428.950800px;}
.y15{bottom:441.921600px;}
.y38{bottom:441.927360px;}
.y61{bottom:449.097120px;}
.y89{bottom:449.104320px;}
.y14{bottom:462.439440px;}
.y37{bottom:462.445200px;}
.y60{bottom:469.432800px;}
.y88{bottom:469.440000px;}
.y87{bottom:469.444320px;}
.y13{bottom:482.775120px;}
.y36{bottom:482.780880px;}
.y5f{bottom:489.768480px;}
.y86{bottom:489.780000px;}
.y85{bottom:489.784320px;}
.ya4{bottom:490.530240px;}
.y12{bottom:503.292960px;}
.y35{bottom:503.298720px;}
.ya3{bottom:508.895280px;}
.y84{bottom:510.120000px;}
.y5e{bottom:510.170400px;}
.y83{bottom:510.178320px;}
.y11{bottom:537.125040px;}
.y34{bottom:537.130800px;}
.ya2{bottom:542.909520px;}
.y5d{bottom:543.290400px;}
.y82{bottom:543.298320px;}
.y10{bottom:557.460720px;}
.y33{bottom:557.466480px;}
.y5c{bottom:563.626080px;}
.y81{bottom:563.634000px;}
.yb2{bottom:576.739440px;}
.ya1{bottom:576.741600px;}
.yf{bottom:577.796400px;}
.y32{bottom:577.802160px;}
.y5b{bottom:583.961760px;}
.y80{bottom:583.969680px;}
.yb1{bottom:597.075120px;}
.ya0{bottom:597.077280px;}
.y31{bottom:598.320000px;}
.y30{bottom:598.328640px;}
.ye{bottom:598.330800px;}
.y5a{bottom:604.297440px;}
.y7f{bottom:604.305360px;}
.yb0{bottom:617.410800px;}
.y9f{bottom:617.412960px;}
.y2f{bottom:618.664320px;}
.yd{bottom:618.666480px;}
.y59{bottom:624.633120px;}
.y7e{bottom:624.641040px;}
.yaf{bottom:637.746480px;}
.y9e{bottom:637.748640px;}
.y2e{bottom:639.000000px;}
.yc{bottom:639.002160px;}
.y58{bottom:644.968800px;}
.y7d{bottom:644.976720px;}
.yae{bottom:657.900000px;}
.yad{bottom:657.935250px;}
.y9d{bottom:657.935280px;}
.y2d{bottom:659.539440px;}
.yb{bottom:659.541600px;}
.y57{bottom:665.122320px;}
.y7c{bottom:665.130240px;}
.yac{bottom:678.270930px;}
.y9c{bottom:678.270960px;}
.y2c{bottom:679.875120px;}
.ya{bottom:679.877280px;}
.y56{bottom:685.458000px;}
.y7b{bottom:685.465920px;}
.yab{bottom:698.606610px;}
.y9b{bottom:698.606640px;}
.y2b{bottom:700.210800px;}
.y9{bottom:700.212960px;}
.y55{bottom:705.793680px;}
.y7a{bottom:705.801600px;}
.yaa{bottom:718.942290px;}
.y9a{bottom:718.942320px;}
.y2a{bottom:720.728640px;}
.y8{bottom:720.730800px;}
.y54{bottom:726.129360px;}
.y79{bottom:726.137280px;}
.ya9{bottom:739.277970px;}
.y99{bottom:739.278000px;}
.y29{bottom:741.064320px;}
.y7{bottom:741.066480px;}
.y53{bottom:746.465040px;}
.y78{bottom:746.472960px;}
.ya8{bottom:759.613650px;}
.y98{bottom:759.613680px;}
.y28{bottom:761.400000px;}
.y6{bottom:761.402160px;}
.y52{bottom:779.402880px;}
.y77{bottom:779.410800px;}
.ya7{bottom:779.949330px;}
.y97{bottom:779.949360px;}
.y27{bottom:799.380000px;}
.y51{bottom:799.920720px;}
.y76{bottom:799.928640px;}
.ya6{bottom:800.285010px;}
.y96{bottom:800.285040px;}
.y50{bottom:820.256400px;}
.y75{bottom:820.264320px;}
.ya5{bottom:820.620690px;}
.y95{bottom:820.620720px;}
.y26{bottom:828.900000px;}
.y74{bottom:840.600000px;}
.y4f{bottom:840.608640px;}
.y73{bottom:840.612240px;}
.y94{bottom:840.956400px;}
.y25{bottom:858.060000px;}
.y4e{bottom:861.126480px;}
.y72{bottom:861.130080px;}
.y93{bottom:861.292080px;}
.y4{bottom:907.920000px;}
.y3{bottom:927.540000px;}
.y2{bottom:943.740000px;}
.y1{bottom:958.319850px;}
.h3{height:34.969922px;}
.h2{height:34.990313px;}
.h5{height:45.219727px;}
.h4{height:45.246094px;}
.h6{height:55.469531px;}
.h7{height:55.501875px;}
.h9{height:56.019375px;}
.ha{height:65.010937px;}
.h8{height:75.410156px;}
.h0{height:1020.600030px;}
.h1{height:1020.750000px;}
.w0{width:722.880015px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:89.280000px;}
.x9{left:102.234270px;}
.xa{left:104.370510px;}
.x40{left:105.827790px;}
.x13{left:108.929760px;}
.x33{left:111.756270px;}
.x4d{left:118.980000px;}
.xe{left:128.735520px;}
.x44{left:135.205920px;}
.x1c{left:136.253760px;}
.x56{left:140.256030px;}
.x42{left:141.300000px;}
.x51{left:147.062850px;}
.x1{left:154.977000px;}
.x37{left:158.571390px;}
.x41{left:162.347070px;}
.x39{left:166.669230px;}
.x6{left:170.280000px;}
.x47{left:178.063200px;}
.x34{left:184.289070px;}
.x3b{left:185.762910px;}
.x19{left:189.013920px;}
.x4a{left:190.440000px;}
.x1b{left:192.408720px;}
.x1e{left:205.060560px;}
.x57{left:209.559630px;}
.x18{left:214.400400px;}
.xd{left:217.265280px;}
.x4b{left:220.146450px;}
.x22{left:222.840000px;}
.x45{left:227.014560px;}
.x15{left:233.113200px;}
.x38{left:235.591950px;}
.x2a{left:245.520000px;}
.x35{left:248.922750px;}
.x54{left:260.299470px;}
.x52{left:261.359310px;}
.x46{left:266.261760px;}
.x3a{left:268.032990px;}
.x1a{left:274.331040px;}
.x2c{left:279.180000px;}
.xb{left:302.582400px;}
.x2b{left:306.180000px;}
.x2d{left:309.066450px;}
.x43{left:317.895840px;}
.x16{left:325.269600px;}
.x24{left:329.220000px;}
.x23{left:334.260750px;}
.x10{left:342.392640px;}
.x32{left:349.738590px;}
.x7{left:351.180000px;}
.x25{left:358.015650px;}
.x20{left:367.920000px;}
.x4{left:371.516850px;}
.x8{left:372.957150px;}
.x55{left:389.235630px;}
.x3f{left:392.001150px;}
.x2e{left:397.980000px;}
.x1d{left:412.888560px;}
.xc{left:418.916400px;}
.x53{left:442.028910px;}
.x12{left:447.896400px;}
.x2f{left:449.632050px;}
.x26{left:451.800000px;}
.x30{left:461.340000px;}
.x3d{left:463.871550px;}
.x4e{left:468.360000px;}
.x48{left:473.040000px;}
.x21{left:485.822100px;}
.x17{left:488.170320px;}
.x14{left:491.416080px;}
.x28{left:492.660000px;}
.xf{left:498.818400px;}
.x3{left:503.287500px;}
.x27{left:520.560000px;}
.x29{left:522.364350px;}
.x3e{left:531.900030px;}
.x4f{left:535.502100px;}
.x1f{left:538.098720px;}
.x49{left:541.800000px;}
.x31{left:543.424350px;}
.x36{left:545.148030px;}
.x58{left:549.000000px;}
.x11{left:552.257520px;}
.x3c{left:558.826590px;}
.x50{left:576.720000px;}
.x59{left:596.160000px;}
.x4c{left:611.460000px;}
.x2{left:633.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-1.392000pt;}
.ls15{letter-spacing:-1.076480pt;}
.ls1d{letter-spacing:-0.824320pt;}
.ls1e{letter-spacing:-0.647680pt;}
.ls21{letter-spacing:-0.624000pt;}
.ls1c{letter-spacing:-0.588800pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.296960pt;}
.ls2e{letter-spacing:-0.294400pt;}
.ls17{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.235520pt;}
.ls13{letter-spacing:-0.222720pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.176640pt;}
.ls1a{letter-spacing:-0.058880pt;}
.ls12{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.058880pt;}
.ls11{letter-spacing:0.294400pt;}
.ls10{letter-spacing:0.353280pt;}
.lse{letter-spacing:0.706560pt;}
.ls22{letter-spacing:0.765440pt;}
.ls23{letter-spacing:0.824320pt;}
.ls24{letter-spacing:0.883200pt;}
.ls9{letter-spacing:81.254400pt;}
.ls31{letter-spacing:87.083520pt;}
.ls6{letter-spacing:88.261120pt;}
.ls7{letter-spacing:90.851840pt;}
.ls27{letter-spacing:115.875840pt;}
.ls1{letter-spacing:156.907413pt;}
.ls3{letter-spacing:201.546240pt;}
.ls0{letter-spacing:206.880000pt;}
.ls25{letter-spacing:298.874880pt;}
.ls30{letter-spacing:306.352640pt;}
.lsa{letter-spacing:321.955840pt;}
.lsd{letter-spacing:324.840960pt;}
.ls4{letter-spacing:381.483520pt;}
.ls8{letter-spacing:396.851200pt;}
.ls2d{letter-spacing:410.688000pt;}
.ls5{letter-spacing:467.036160pt;}
.ls2{letter-spacing:500.635733pt;}
.ls2f{letter-spacing:527.505920pt;}
.ls29{letter-spacing:574.609920pt;}
.lsb{letter-spacing:585.620480pt;}
.ls26{letter-spacing:707.266560pt;}
.ls2b{letter-spacing:744.419840pt;}
.ls32{letter-spacing:753.251840pt;}
.ls28{letter-spacing:784.811520pt;}
.lsc{letter-spacing:1506.209280pt;}
.ls2a{letter-spacing:1658.708480pt;}
.ls2c{letter-spacing:1735.782400pt;}
.ws1{word-spacing:-15.544320pt;}
.ws0{word-spacing:-14.778880pt;}
.ws2{word-spacing:-14.661120pt;}
.ws25{word-spacing:-14.543360pt;}
.ws24{word-spacing:-14.425600pt;}
.ws23{word-spacing:-14.131200pt;}
.wsa{word-spacing:-3.886080pt;}
.ws6{word-spacing:-3.238400pt;}
.ws33{word-spacing:-3.120640pt;}
.ws34{word-spacing:-2.944000pt;}
.ws8{word-spacing:-2.590720pt;}
.ws2b{word-spacing:-2.472960pt;}
.ws12{word-spacing:-2.355200pt;}
.ws2e{word-spacing:-2.001920pt;}
.ws29{word-spacing:-1.884160pt;}
.ws13{word-spacing:-1.354240pt;}
.ws14{word-spacing:-1.236480pt;}
.ws18{word-spacing:-1.118720pt;}
.ws10{word-spacing:-0.706560pt;}
.ws1c{word-spacing:-0.529920pt;}
.ws2f{word-spacing:-0.294400pt;}
.ws1b{word-spacing:-0.240000pt;}
.ws11{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
.ws16{word-spacing:0.058880pt;}
.ws7{word-spacing:0.176640pt;}
.ws20{word-spacing:0.235520pt;}
.ws26{word-spacing:0.296960pt;}
.wsf{word-spacing:0.588800pt;}
.ws1a{word-spacing:0.647680pt;}
.wsd{word-spacing:0.706560pt;}
.ws9{word-spacing:0.824320pt;}
.wse{word-spacing:0.883200pt;}
.ws5{word-spacing:1.056000pt;}
.ws4{word-spacing:1.152000pt;}
.ws27{word-spacing:1.472000pt;}
.ws22{word-spacing:1.648640pt;}
.ws17{word-spacing:1.884160pt;}
.ws15{word-spacing:2.001920pt;}
.ws21{word-spacing:2.119680pt;}
.wsc{word-spacing:2.531840pt;}
.wsb{word-spacing:2.649600pt;}
.ws19{word-spacing:2.767360pt;}
.ws32{word-spacing:3.768320pt;}
.ws2d{word-spacing:3.886080pt;}
.ws28{word-spacing:4.003840pt;}
.ws35{word-spacing:4.416000pt;}
.ws1f{word-spacing:5.181440pt;}
.ws1d{word-spacing:5.299200pt;}
.ws1e{word-spacing:5.475840pt;}
.ws30{word-spacing:5.711360pt;}
.ws36{word-spacing:5.946880pt;}
.ws2a{word-spacing:6.476800pt;}
.ws31{word-spacing:7.124480pt;}
.ws2c{word-spacing:7.831040pt;}
._3c{margin-left:-18.752960pt;}
._3d{margin-left:-14.777600pt;}
._3e{margin-left:-10.214400pt;}
._73{margin-left:-2.549440pt;}
._2{margin-left:-1.002240pt;}
._6{width:1.195200pt;}
._5{width:2.323712pt;}
._3f{width:4.367680pt;}
._35{width:26.849280pt;}
._72{width:35.169024pt;}
._6b{width:37.076736pt;}
._70{width:43.476992pt;}
._20{width:45.414144pt;}
._e{width:53.757440pt;}
._5b{width:56.936960pt;}
._57{width:60.057600pt;}
._c{width:65.239040pt;}
._62{width:66.528512pt;}
._5f{width:67.888640pt;}
._15{width:79.346688pt;}
._b{width:81.902080pt;}
._23{width:83.809792pt;}
._6c{width:86.270976pt;}
._26{width:87.654656pt;}
._32{width:92.147200pt;}
._29{width:94.690816pt;}
._22{width:115.169280pt;}
._6f{width:116.393984pt;}
._6d{width:120.268288pt;}
._53{width:123.494912pt;}
._68{width:126.132736pt;}
._71{width:131.214080pt;}
._1b{width:134.387712pt;}
._5c{width:139.480832pt;}
._4f{width:146.564096pt;}
._21{width:148.454144pt;}
._5e{width:154.206720pt;}
._56{width:162.479360pt;}
._f{width:165.081856pt;}
._34{width:168.926720pt;}
._1a{width:171.505664pt;}
._39{width:172.795136pt;}
._19{width:175.974656pt;}
._1c{width:180.496640pt;}
._50{width:184.317952pt;}
._52{width:188.186368pt;}
._6e{width:189.405184pt;}
._16{width:195.204864pt;}
._14{width:197.136128pt;}
._2b{width:203.524608pt;}
._55{width:205.379328pt;}
._49{width:207.940608pt;}
._18{width:215.665664pt;}
._58{width:216.966912pt;}
._17{width:218.833408pt;}
._24{width:220.128768pt;}
._27{width:222.054144pt;}
._d{width:225.216000pt;}
._66{width:227.141376pt;}
._11{width:231.675136pt;}
._2d{width:232.870400pt;}
._42{width:245.117440pt;}
._63{width:246.342144pt;}
._10{width:253.425408pt;}
._41{width:257.894400pt;}
._43{width:270.712576pt;}
._25{width:277.754624pt;}
._61{width:280.310016pt;}
._a{width:288.040960pt;}
._47{width:299.522560pt;}
._33{width:300.817920pt;}
._4a{width:310.380032pt;}
._2c{width:318.717440pt;}
._9{width:323.781120pt;}
._31{width:329.610240pt;}
._1f{width:331.494400pt;}
._64{width:346.249728pt;}
._4b{width:353.280000pt;}
._8{width:355.752960pt;}
._54{width:361.499648pt;}
._5a{width:390.374400pt;}
._12{width:404.505600pt;}
._60{width:445.486080pt;}
._3a{width:453.081600pt;}
._2f{width:459.499520pt;}
._40{width:463.974400pt;}
._4c{width:476.103680pt;}
._7{width:487.703040pt;}
._28{width:492.119040pt;}
._13{width:526.092800pt;}
._45{width:547.819520pt;}
._5d{width:592.044288pt;}
._2a{width:599.681024pt;}
._1e{width:645.854720pt;}
._2e{width:657.925120pt;}
._69{width:667.404800pt;}
._3b{width:677.120000pt;}
._1d{width:699.494400pt;}
._30{width:715.509760pt;}
._59{width:732.178688pt;}
._37{width:754.429440pt;}
._36{width:788.403200pt;}
._3{width:812.222720pt;}
._51{width:846.046720pt;}
._4{width:884.903680pt;}
._6a{width:972.756480pt;}
._46{width:1012.382720pt;}
._0{width:1014.712320pt;}
._65{width:1048.417280pt;}
._1{width:1061.223680pt;}
._67{width:1210.926080pt;}
._44{width:1291.668224pt;}
._4e{width:1295.360000pt;}
._48{width:1355.476480pt;}
._4d{width:1401.285120pt;}
._38{width:1754.800640pt;}
.fs0{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:58.398080pt;}
.y5{bottom:58.400000pt;}
.y4d{bottom:58.403200pt;}
.y71{bottom:87.548800pt;}
.y24{bottom:90.735360pt;}
.y4c{bottom:90.743040pt;}
.y70{bottom:105.624960pt;}
.y23{bottom:108.811520pt;}
.y4b{bottom:108.819200pt;}
.y22{bottom:127.049600pt;}
.y4a{bottom:127.057280pt;}
.y6f{bottom:135.064960pt;}
.y21{bottom:145.125760pt;}
.y49{bottom:145.133440pt;}
.y92{bottom:153.141120pt;}
.y20{bottom:163.201920pt;}
.y48{bottom:163.209600pt;}
.y6e{bottom:171.217280pt;}
.y1f{bottom:181.440000pt;}
.y47{bottom:181.447680pt;}
.y6d{bottom:189.293440pt;}
.y1e{bottom:199.516160pt;}
.y46{bottom:199.523840pt;}
.y6c{bottom:207.207680pt;}
.y1d{bottom:217.592320pt;}
.y45{bottom:217.600000pt;}
.y6b{bottom:225.283840pt;}
.y1c{bottom:235.992320pt;}
.y43{bottom:235.998080pt;}
.y44{bottom:236.000000pt;}
.y6a{bottom:243.360000pt;}
.y91{bottom:243.363840pt;}
.y69{bottom:261.440000pt;}
.y68{bottom:261.462400pt;}
.y90{bottom:261.468800pt;}
.y1b{bottom:265.918080pt;}
.y42{bottom:265.923840pt;}
.y67{bottom:279.538560pt;}
.y8f{bottom:279.544960pt;}
.y1a{bottom:283.994240pt;}
.y41{bottom:284.000000pt;}
.y40{bottom:284.001920pt;}
.y66{bottom:297.614720pt;}
.y8e{bottom:297.621120pt;}
.y3f{bottom:302.240000pt;}
.y19{bottom:302.247040pt;}
.y3e{bottom:302.247680pt;}
.y18{bottom:320.323200pt;}
.y3d{bottom:320.323840pt;}
.y65{bottom:327.054720pt;}
.y8d{bottom:327.061120pt;}
.y3c{bottom:338.400000pt;}
.y17{bottom:338.428800pt;}
.y3b{bottom:338.433920pt;}
.y64{bottom:345.130880pt;}
.y8c{bottom:345.137280pt;}
.y3a{bottom:356.672000pt;}
.y63{bottom:363.207040pt;}
.y8b{bottom:363.213440pt;}
.y16{bottom:374.743040pt;}
.y39{bottom:374.748160pt;}
.y62{bottom:381.283200pt;}
.y8a{bottom:381.289600pt;}
.y15{bottom:392.819200pt;}
.y38{bottom:392.824320pt;}
.y61{bottom:399.197440pt;}
.y89{bottom:399.203840pt;}
.y14{bottom:411.057280pt;}
.y37{bottom:411.062400pt;}
.y60{bottom:417.273600pt;}
.y88{bottom:417.280000pt;}
.y87{bottom:417.283840pt;}
.y13{bottom:429.133440pt;}
.y36{bottom:429.138560pt;}
.y5f{bottom:435.349760pt;}
.y86{bottom:435.360000pt;}
.y85{bottom:435.363840pt;}
.ya4{bottom:436.026880pt;}
.y12{bottom:447.371520pt;}
.y35{bottom:447.376640pt;}
.ya3{bottom:452.351360pt;}
.y84{bottom:453.440000pt;}
.y5e{bottom:453.484800pt;}
.y83{bottom:453.491840pt;}
.y11{bottom:477.444480pt;}
.y34{bottom:477.449600pt;}
.ya2{bottom:482.586240pt;}
.y5d{bottom:482.924800pt;}
.y82{bottom:482.931840pt;}
.y10{bottom:495.520640pt;}
.y33{bottom:495.525760pt;}
.y5c{bottom:501.000960pt;}
.y81{bottom:501.008000pt;}
.yb2{bottom:512.657280pt;}
.ya1{bottom:512.659200pt;}
.yf{bottom:513.596800pt;}
.y32{bottom:513.601920pt;}
.y5b{bottom:519.077120pt;}
.y80{bottom:519.084160pt;}
.yb1{bottom:530.733440pt;}
.ya0{bottom:530.735360pt;}
.y31{bottom:531.840000pt;}
.y30{bottom:531.847680pt;}
.ye{bottom:531.849600pt;}
.y5a{bottom:537.153280pt;}
.y7f{bottom:537.160320pt;}
.yb0{bottom:548.809600pt;}
.y9f{bottom:548.811520pt;}
.y2f{bottom:549.923840pt;}
.yd{bottom:549.925760pt;}
.y59{bottom:555.229440pt;}
.y7e{bottom:555.236480pt;}
.yaf{bottom:566.885760pt;}
.y9e{bottom:566.887680pt;}
.y2e{bottom:568.000000pt;}
.yc{bottom:568.001920pt;}
.y58{bottom:573.305600pt;}
.y7d{bottom:573.312640pt;}
.yae{bottom:584.800000pt;}
.yad{bottom:584.831333pt;}
.y9d{bottom:584.831360pt;}
.y2d{bottom:586.257280pt;}
.yb{bottom:586.259200pt;}
.y57{bottom:591.219840pt;}
.y7c{bottom:591.226880pt;}
.yac{bottom:602.907493pt;}
.y9c{bottom:602.907520pt;}
.y2c{bottom:604.333440pt;}
.ya{bottom:604.335360pt;}
.y56{bottom:609.296000pt;}
.y7b{bottom:609.303040pt;}
.yab{bottom:620.983653pt;}
.y9b{bottom:620.983680pt;}
.y2b{bottom:622.409600pt;}
.y9{bottom:622.411520pt;}
.y55{bottom:627.372160pt;}
.y7a{bottom:627.379200pt;}
.yaa{bottom:639.059813pt;}
.y9a{bottom:639.059840pt;}
.y2a{bottom:640.647680pt;}
.y8{bottom:640.649600pt;}
.y54{bottom:645.448320pt;}
.y79{bottom:645.455360pt;}
.ya9{bottom:657.135973pt;}
.y99{bottom:657.136000pt;}
.y29{bottom:658.723840pt;}
.y7{bottom:658.725760pt;}
.y53{bottom:663.524480pt;}
.y78{bottom:663.531520pt;}
.ya8{bottom:675.212133pt;}
.y98{bottom:675.212160pt;}
.y28{bottom:676.800000pt;}
.y6{bottom:676.801920pt;}
.y52{bottom:692.802560pt;}
.y77{bottom:692.809600pt;}
.ya7{bottom:693.288293pt;}
.y97{bottom:693.288320pt;}
.y27{bottom:710.560000pt;}
.y51{bottom:711.040640pt;}
.y76{bottom:711.047680pt;}
.ya6{bottom:711.364453pt;}
.y96{bottom:711.364480pt;}
.y50{bottom:729.116800pt;}
.y75{bottom:729.123840pt;}
.ya5{bottom:729.440613pt;}
.y95{bottom:729.440640pt;}
.y26{bottom:736.800000pt;}
.y74{bottom:747.200000pt;}
.y4f{bottom:747.207680pt;}
.y73{bottom:747.210880pt;}
.y94{bottom:747.516800pt;}
.y25{bottom:762.720000pt;}
.y4e{bottom:765.445760pt;}
.y72{bottom:765.448960pt;}
.y93{bottom:765.592960pt;}
.y4{bottom:807.040000pt;}
.y3{bottom:824.480000pt;}
.y2{bottom:838.880000pt;}
.y1{bottom:851.839867pt;}
.h3{height:31.084375pt;}
.h2{height:31.102500pt;}
.h5{height:40.195312pt;}
.h4{height:40.218750pt;}
.h6{height:49.306250pt;}
.h7{height:49.335000pt;}
.h9{height:49.795000pt;}
.ha{height:57.787500pt;}
.h8{height:67.031250pt;}
.h0{height:907.200027pt;}
.h1{height:907.333333pt;}
.w0{width:642.560013pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:79.360000pt;}
.x9{left:90.874907pt;}
.xa{left:92.773787pt;}
.x40{left:94.069147pt;}
.x13{left:96.826453pt;}
.x33{left:99.338907pt;}
.x4d{left:105.760000pt;}
.xe{left:114.431573pt;}
.x44{left:120.183040pt;}
.x1c{left:121.114453pt;}
.x56{left:124.672027pt;}
.x42{left:125.600000pt;}
.x51{left:130.722533pt;}
.x1{left:137.757333pt;}
.x37{left:140.952347pt;}
.x41{left:144.308507pt;}
.x39{left:148.150427pt;}
.x6{left:151.360000pt;}
.x47{left:158.278400pt;}
.x34{left:163.812507pt;}
.x3b{left:165.122587pt;}
.x19{left:168.012373pt;}
.x4a{left:169.280000pt;}
.x1b{left:171.029973pt;}
.x1e{left:182.276053pt;}
.x57{left:186.275227pt;}
.x18{left:190.578133pt;}
.xd{left:193.124693pt;}
.x4b{left:195.685733pt;}
.x22{left:198.080000pt;}
.x45{left:201.790720pt;}
.x15{left:207.211733pt;}
.x38{left:209.415067pt;}
.x2a{left:218.240000pt;}
.x35{left:221.264667pt;}
.x54{left:231.377307pt;}
.x52{left:232.319387pt;}
.x46{left:236.677120pt;}
.x3a{left:238.251547pt;}
.x1a{left:243.849813pt;}
.x2c{left:248.160000pt;}
.xb{left:268.962133pt;}
.x2b{left:272.160000pt;}
.x2d{left:274.725733pt;}
.x43{left:282.574080pt;}
.x16{left:289.128533pt;}
.x24{left:292.640000pt;}
.x23{left:297.120667pt;}
.x10{left:304.349013pt;}
.x32{left:310.878747pt;}
.x7{left:312.160000pt;}
.x25{left:318.236133pt;}
.x20{left:327.040000pt;}
.x4{left:330.237200pt;}
.x8{left:331.517467pt;}
.x55{left:345.987227pt;}
.x3f{left:348.445467pt;}
.x2e{left:353.760000pt;}
.x1d{left:367.012053pt;}
.xc{left:372.370133pt;}
.x53{left:392.914587pt;}
.x12{left:398.130133pt;}
.x2f{left:399.672933pt;}
.x26{left:401.600000pt;}
.x30{left:410.080000pt;}
.x3d{left:412.330267pt;}
.x4e{left:416.320000pt;}
.x48{left:420.480000pt;}
.x21{left:431.841867pt;}
.x17{left:433.929173pt;}
.x14{left:436.814293pt;}
.x28{left:437.920000pt;}
.xf{left:443.394133pt;}
.x3{left:447.366667pt;}
.x27{left:462.720000pt;}
.x29{left:464.323867pt;}
.x3e{left:472.800027pt;}
.x4f{left:476.001867pt;}
.x1f{left:478.309973pt;}
.x49{left:481.600000pt;}
.x31{left:483.043867pt;}
.x36{left:484.576027pt;}
.x58{left:488.000000pt;}
.x11{left:490.895573pt;}
.x3c{left:496.734747pt;}
.x50{left:512.640000pt;}
.x59{left:529.920000pt;}
.x4c{left:543.520000pt;}
.x2{left:563.200000pt;}
}

