
/* 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_164b0fcaae9f.woff")format("woff");}.ff1{font-family:ff1;line-height:0.720000;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("fonts/font_0001_5842a93a0aea.woff")format("woff");}.ff2{font-family:ff2;line-height:1.128500;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("fonts/font_0002_631ca27a47d8.woff")format("woff");}.ff3{font-family:ff3;line-height:1.171738;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("fonts/font_0003_40c3dbcefa17.woff")format("woff");}.ff4{font-family:ff4;line-height:1.041000;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("fonts/font_0004_5d367b73be75.woff")format("woff");}.ff5{font-family:ff5;line-height:1.122500;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("fonts/font_0005_3966baef3e87.woff")format("woff");}.ff6{font-family:ff6;line-height:1.220000;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("fonts/font_0006_ea043083c296.woff")format("woff");}.ff7{font-family:ff7;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.985964px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982059px;}
.v3{vertical-align:68.311895px;}
.v4{vertical-align:86.311895px;}
.ls4{letter-spacing:-1.800000px;}
.ls7{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.108000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.489204px;}
.lsa{letter-spacing:0.810000px;}
.ls2{letter-spacing:0.840000px;}
.ls0{letter-spacing:1.080000px;}
.ls6{letter-spacing:1.680000px;}
.ls9{letter-spacing:2.916000px;}
.ls8{letter-spacing:284.666386px;}
.ls5{letter-spacing:286.083622px;}
.lsc{letter-spacing:674.430042px;}
.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;}
}
.ws0{word-spacing:-49.680000px;}
.ws6{word-spacing:-24.864000px;}
.wsc{word-spacing:-15.282000px;}
.ws1{word-spacing:-12.432000px;}
.ws8{word-spacing:-11.592000px;}
.ws9{word-spacing:-11.130000px;}
.wsa{word-spacing:-8.745000px;}
.ws7{word-spacing:-1.680000px;}
.ws4{word-spacing:-1.080000px;}
.ws5{word-spacing:-0.840000px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:0.108000px;}
.wsb{word-spacing:0.216000px;}
.ws3{word-spacing:1.800000px;}
._0{margin-left:-102.240001px;}
._2{margin-left:-49.625980px;}
._3{margin-left:-21.510011px;}
._a{margin-left:-11.575174px;}
._c{margin-left:-9.616800px;}
._8{margin-left:-7.650000px;}
._e{margin-left:-6.558000px;}
._4{margin-left:-5.400000px;}
._d{margin-left:-4.179000px;}
._7{margin-left:-3.150000px;}
._5{margin-left:-1.620000px;}
._6{width:1.080000px;}
._b{width:2.240400px;}
._9{width:13.759200px;}
._1{width:322.325993px;}
.fc1{color:transparent;}
.fc3{color:rgb(100,99,239);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:24.485999px;}
.fs2{font-size:31.482000px;}
.fs6{font-size:33.000000px;}
.fs4{font-size:42.000000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:84.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y164{bottom:33.630287px;}
.yce{bottom:33.652824px;}
.y12f{bottom:33.729170px;}
.y110{bottom:33.733793px;}
.yed{bottom:33.756320px;}
.y95{bottom:33.796649px;}
.y46{bottom:33.814796px;}
.y20{bottom:33.981152px;}
.y2{bottom:34.015649px;}
.y163{bottom:48.445787px;}
.y1f{bottom:48.985652px;}
.ycd{bottom:53.052324px;}
.y12e{bottom:53.128670px;}
.y10f{bottom:53.133293px;}
.yec{bottom:53.155820px;}
.y94{bottom:53.196149px;}
.y45{bottom:53.214296px;}
.y162{bottom:63.261287px;}
.y1e{bottom:63.990152px;}
.ycc{bottom:72.451824px;}
.y12d{bottom:72.528170px;}
.y10e{bottom:72.532793px;}
.y5d{bottom:72.532824px;}
.yeb{bottom:72.555320px;}
.y93{bottom:72.595649px;}
.y44{bottom:72.613796px;}
.y161{bottom:78.076787px;}
.y1d{bottom:78.994652px;}
.ycb{bottom:91.851324px;}
.y12c{bottom:91.927670px;}
.y10d{bottom:91.932293px;}
.y5c{bottom:91.932324px;}
.yea{bottom:91.954820px;}
.y92{bottom:91.995149px;}
.y43{bottom:92.013296px;}
.y160{bottom:92.892287px;}
.y1c{bottom:93.999152px;}
.y1b{bottom:109.003652px;}
.yca{bottom:111.250824px;}
.y12b{bottom:111.327170px;}
.y10c{bottom:111.331793px;}
.y5b{bottom:111.331824px;}
.y91{bottom:111.394649px;}
.y42{bottom:111.412796px;}
.y15f{bottom:122.533787px;}
.y1a{bottom:124.008152px;}
.yc9{bottom:130.650324px;}
.y12a{bottom:130.726670px;}
.y10b{bottom:130.731293px;}
.y5a{bottom:130.731324px;}
.ye9{bottom:130.740320px;}
.y90{bottom:130.794149px;}
.y41{bottom:130.812296px;}
.y15e{bottom:137.349287px;}
.y19{bottom:139.012652px;}
.yc8{bottom:150.049824px;}
.y129{bottom:150.126170px;}
.y10a{bottom:150.130793px;}
.y59{bottom:150.130824px;}
.ye8{bottom:150.139820px;}
.y8f{bottom:150.193649px;}
.y40{bottom:150.211796px;}
.y15d{bottom:152.164787px;}
.y18{bottom:154.017152px;}
.yc7{bottom:169.449324px;}
.y128{bottom:169.525670px;}
.y109{bottom:169.530293px;}
.y58{bottom:169.530324px;}
.ye7{bottom:169.539320px;}
.y8e{bottom:169.593149px;}
.y15c{bottom:181.806287px;}
.y17{bottom:187.512154px;}
.yc6{bottom:188.848824px;}
.y127{bottom:188.925170px;}
.y108{bottom:188.929793px;}
.y57{bottom:188.929824px;}
.ye6{bottom:188.938820px;}
.y8d{bottom:188.992649px;}
.y3f{bottom:189.001797px;}
.y15b{bottom:196.621787px;}
.y16{bottom:199.011300px;}
.yc5{bottom:208.248324px;}
.y126{bottom:208.324670px;}
.y107{bottom:208.329293px;}
.y56{bottom:208.329324px;}
.ye5{bottom:208.338320px;}
.y8c{bottom:208.392149px;}
.y15a{bottom:211.437287px;}
.y15{bottom:217.512154px;}
.yc4{bottom:227.647824px;}
.y125{bottom:227.724170px;}
.y106{bottom:227.728793px;}
.y55{bottom:227.728824px;}
.ye4{bottom:227.737820px;}
.y8b{bottom:227.791649px;}
.y14{bottom:232.512154px;}
.y159{bottom:241.078787px;}
.y13{bottom:244.011300px;}
.yc3{bottom:247.047324px;}
.y3e{bottom:247.056346px;}
.y124{bottom:247.123670px;}
.y105{bottom:247.128293px;}
.y54{bottom:247.128324px;}
.y158{bottom:255.894287px;}
.y12{bottom:262.512154px;}
.yc2{bottom:266.446824px;}
.y3d{bottom:266.455846px;}
.y123{bottom:266.523170px;}
.ye3{bottom:266.523320px;}
.y104{bottom:266.527793px;}
.y53{bottom:266.527824px;}
.y8a{bottom:266.581650px;}
.y157{bottom:270.709787px;}
.y11{bottom:277.512291px;}
.y156{bottom:285.525287px;}
.yc1{bottom:285.846324px;}
.y3c{bottom:285.855346px;}
.y122{bottom:285.922670px;}
.ye2{bottom:285.922820px;}
.y103{bottom:285.927293px;}
.y155{bottom:300.340787px;}
.yc0{bottom:305.245824px;}
.y3b{bottom:305.254846px;}
.y121{bottom:305.322170px;}
.ye1{bottom:305.322320px;}
.y102{bottom:305.326793px;}
.y78{bottom:305.371811px;}
.ybf{bottom:324.645324px;}
.y3a{bottom:324.654346px;}
.y89{bottom:324.721782px;}
.ye0{bottom:324.721820px;}
.y101{bottom:324.726293px;}
.y154{bottom:329.982287px;}
.ybe{bottom:344.044824px;}
.y39{bottom:344.053846px;}
.y120{bottom:344.107670px;}
.y88{bottom:344.121282px;}
.ydf{bottom:344.121320px;}
.y100{bottom:344.125793px;}
.y153{bottom:344.797787px;}
.y73{bottom:349.309373px;}
.y152{bottom:359.613287px;}
.y7e{bottom:362.416208px;}
.y7c{bottom:362.548208px;}
.y72{bottom:362.812373px;}
.ybd{bottom:363.444324px;}
.y38{bottom:363.453346px;}
.y11f{bottom:363.507170px;}
.y87{bottom:363.520782px;}
.yff{bottom:363.525293px;}
.y67{bottom:367.957373px;}
.y7d{bottom:372.918458px;}
.y7b{bottom:373.050458px;}
.y151{bottom:374.428787px;}
.y66{bottom:381.460373px;}
.ybc{bottom:382.843824px;}
.y37{bottom:382.852846px;}
.y11e{bottom:382.906670px;}
.yde{bottom:382.906820px;}
.y138{bottom:382.915633px;}
.y86{bottom:382.920282px;}
.yfe{bottom:382.924793px;}
.y150{bottom:389.244287px;}
.y71{bottom:389.807873px;}
.ybb{bottom:402.243324px;}
.y36{bottom:402.252346px;}
.y11d{bottom:402.306170px;}
.ydd{bottom:402.306320px;}
.y137{bottom:402.315133px;}
.y85{bottom:402.319782px;}
.yfd{bottom:402.324293px;}
.y6f{bottom:402.880373px;}
.y63{bottom:402.901369px;}
.y70{bottom:403.310873px;}
.y14f{bottom:404.059787px;}
.y77{bottom:416.541299px;}
.y7a{bottom:416.635208px;}
.yba{bottom:421.642824px;}
.y35{bottom:421.651846px;}
.y11c{bottom:421.705670px;}
.ydc{bottom:421.705820px;}
.y136{bottom:421.714633px;}
.y84{bottom:421.719282px;}
.yfc{bottom:421.723793px;}
.y76{bottom:427.043549px;}
.y14e{bottom:433.701287px;}
.yb9{bottom:441.042324px;}
.y34{bottom:441.051346px;}
.y11b{bottom:441.105170px;}
.ydb{bottom:441.105320px;}
.y135{bottom:441.114133px;}
.y83{bottom:441.118782px;}
.yfb{bottom:441.123293px;}
.y14d{bottom:448.516787px;}
.y6e{bottom:456.881873px;}
.y62{bottom:456.902869px;}
.yb8{bottom:460.441824px;}
.y33{bottom:460.450846px;}
.y11a{bottom:460.504670px;}
.yda{bottom:460.504820px;}
.y134{bottom:460.513633px;}
.y82{bottom:460.518282px;}
.yfa{bottom:460.522793px;}
.y14c{bottom:463.332287px;}
.y6d{bottom:470.384873px;}
.y10{bottom:471.283950px;}
.y75{bottom:472.682549px;}
.yb7{bottom:479.841324px;}
.y32{bottom:479.850346px;}
.y119{bottom:479.904170px;}
.y133{bottom:479.913133px;}
.y81{bottom:479.917782px;}
.yf9{bottom:479.922293px;}
.y74{bottom:483.184799px;}
.y6c{bottom:483.887873px;}
.yf{bottom:489.283950px;}
.y79{bottom:492.433960px;}
.y14b{bottom:492.973787px;}
.y6b{bottom:497.390873px;}
.yb6{bottom:499.240824px;}
.y31{bottom:499.249846px;}
.yd9{bottom:499.290320px;}
.y118{bottom:499.303670px;}
.y132{bottom:499.312633px;}
.y80{bottom:499.317282px;}
.yf8{bottom:499.321793px;}
.ye{bottom:507.283950px;}
.y14a{bottom:507.789287px;}
.y6a{bottom:510.893873px;}
.y61{bottom:510.904369px;}
.yb5{bottom:518.640324px;}
.y30{bottom:518.649346px;}
.yd8{bottom:518.689820px;}
.y117{bottom:518.703170px;}
.y131{bottom:518.712133px;}
.y7f{bottom:518.716782px;}
.y149{bottom:522.604787px;}
.y60{bottom:524.407369px;}
.yd{bottom:525.283950px;}
.y148{bottom:537.420287px;}
.yb4{bottom:538.039824px;}
.y2f{bottom:538.048846px;}
.yd7{bottom:538.089320px;}
.y116{bottom:538.102670px;}
.yf7{bottom:538.111633px;}
.yc{bottom:543.283950px;}
.y69{bottom:551.392373px;}
.y5f{bottom:551.402869px;}
.y65{bottom:552.463366px;}
.yb3{bottom:557.439324px;}
.y2e{bottom:557.448346px;}
.yd6{bottom:557.488820px;}
.y115{bottom:557.502170px;}
.y96{bottom:557.506805px;}
.yb{bottom:561.283950px;}
.y68{bottom:564.895373px;}
.y5e{bottom:564.905869px;}
.y64{bottom:565.966366px;}
.y147{bottom:567.061787px;}
.yb2{bottom:576.838824px;}
.y2d{bottom:576.847846px;}
.yd5{bottom:576.888320px;}
.y130{bottom:576.901657px;}
.y114{bottom:576.901670px;}
.ya{bottom:579.283950px;}
.y146{bottom:581.877287px;}
.yb1{bottom:596.238324px;}
.y2c{bottom:596.247346px;}
.yf6{bottom:596.278824px;}
.yd4{bottom:596.287820px;}
.y145{bottom:596.692787px;}
.y9{bottom:597.283950px;}
.y9b{bottom:606.265366px;}
.ya7{bottom:606.685368px;}
.y8{bottom:615.283950px;}
.y52{bottom:615.637824px;}
.y2b{bottom:615.646846px;}
.yf5{bottom:615.678324px;}
.y113{bottom:615.687170px;}
.yd3{bottom:615.687320px;}
.yb0{bottom:620.836179px;}
.y144{bottom:626.334287px;}
.y7{bottom:633.283950px;}
.y51{bottom:635.037324px;}
.y2a{bottom:635.046346px;}
.y112{bottom:635.086670px;}
.y143{bottom:641.149787px;}
.ya6{bottom:647.183868px;}
.y6{bottom:651.283950px;}
.y50{bottom:654.436824px;}
.y29{bottom:654.445846px;}
.yf4{bottom:654.463824px;}
.yd2{bottom:654.472820px;}
.y142{bottom:655.965287px;}
.ya5{bottom:660.686868px;}
.y5{bottom:669.283950px;}
.y141{bottom:670.780787px;}
.y4f{bottom:673.836324px;}
.y28{bottom:673.845346px;}
.yf3{bottom:673.863324px;}
.yd1{bottom:673.872320px;}
.y111{bottom:673.876785px;}
.y9f{bottom:677.413368px;}
.y9e{bottom:690.916368px;}
.yad{bottom:692.611180px;}
.y4e{bottom:693.235824px;}
.y27{bottom:693.244846px;}
.yf2{bottom:693.262824px;}
.yd0{bottom:693.271820px;}
.y140{bottom:700.422287px;}
.yac{bottom:703.113430px;}
.y4d{bottom:712.635324px;}
.y26{bottom:712.644346px;}
.yf1{bottom:712.662324px;}
.yab{bottom:713.615680px;}
.ya4{bottom:714.257868px;}
.y13f{bottom:715.237787px;}
.yaf{bottom:721.527429px;}
.ya3{bottom:727.760868px;}
.y4{bottom:727.853850px;}
.y13e{bottom:730.053287px;}
.yae{bottom:732.029679px;}
.y4c{bottom:732.034824px;}
.y25{bottom:732.043846px;}
.ycf{bottom:732.061661px;}
.y13d{bottom:744.868787px;}
.y4b{bottom:751.434324px;}
.y24{bottom:751.443346px;}
.yf0{bottom:751.447824px;}
.y9a{bottom:754.766862px;}
.y13c{bottom:759.684287px;}
.ya2{bottom:768.259368px;}
.y99{bottom:768.269862px;}
.y4a{bottom:770.833824px;}
.y23{bottom:770.842846px;}
.yef{bottom:770.847324px;}
.y3{bottom:777.353850px;}
.yaa{bottom:783.567430px;}
.y13b{bottom:789.325787px;}
.y49{bottom:790.233324px;}
.y22{bottom:790.242346px;}
.yee{bottom:790.246824px;}
.ya9{bottom:794.069680px;}
.y13a{bottom:804.141287px;}
.ya8{bottom:804.571930px;}
.ya1{bottom:808.757868px;}
.y98{bottom:808.768362px;}
.y48{bottom:809.632824px;}
.y21{bottom:809.641846px;}
.y9d{bottom:809.828866px;}
.y139{bottom:818.956787px;}
.ya0{bottom:822.260868px;}
.y97{bottom:822.271362px;}
.y9c{bottom:823.331866px;}
.y1{bottom:826.853850px;}
.y47{bottom:829.032324px;}
.h8{height:24.506992px;}
.h5{height:24.507036px;}
.h6{height:24.507585px;}
.hd{height:30.046500px;}
.hc{height:38.241000px;}
.h7{height:38.493000px;}
.ha{height:41.580000px;}
.h9{height:48.639867px;}
.h3{height:49.491000px;}
.he{height:51.246000px;}
.hb{height:76.986000px;}
.h2{height:129.600000px;}
.h4{height:164.970000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.x0{left:0.000000px;}
.x1{left:30.826500px;}
.x2{left:34.015649px;}
.xe{left:69.295359px;}
.xf{left:71.668359px;}
.x10{left:78.881859px;}
.xd{left:81.118359px;}
.x3{left:127.036512px;}
.x4{left:131.102406px;}
.x5{left:141.606896px;}
.x1d{left:155.515497px;}
.x1c{left:165.943497px;}
.x29{left:168.406190px;}
.x2a{left:175.619690px;}
.x28{left:177.856190px;}
.x6{left:227.870406px;}
.xa{left:242.114850px;}
.x9{left:243.595350px;}
.xb{left:245.002350px;}
.xc{left:249.790350px;}
.x8{left:255.124350px;}
.x7{left:256.436850px;}
.x31{left:260.567380px;}
.x1f{left:326.942246px;}
.x1e{left:333.121496px;}
.x26{left:336.721190px;}
.x25{left:338.201690px;}
.x27{left:344.396690px;}
.x24{left:349.730690px;}
.x23{left:351.043190px;}
.x19{left:367.652858px;}
.x1b{left:374.645858px;}
.x18{left:379.475858px;}
.x1a{left:382.069358px;}
.x20{left:384.129318px;}
.x2e{left:419.883129px;}
.x32{left:425.138379px;}
.x30{left:426.342879px;}
.x2f{left:429.585129px;}
.x2d{left:435.797379px;}
.x21{left:441.050262px;}
.x22{left:447.930765px;}
.x2b{left:485.768690px;}
.x2c{left:496.289690px;}
.x11{left:498.650859px;}
.x14{left:500.792859px;}
.x13{left:502.273359px;}
.x16{left:503.669858px;}
.x17{left:508.457858px;}
.x12{left:513.802359px;}
.x15{left:525.814358px;}
@media print{
.v2{vertical-align:-12.431968pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984052pt;}
.v3{vertical-align:60.721684pt;}
.v4{vertical-align:76.721684pt;}
.ls4{letter-spacing:-1.600000pt;}
.ls7{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.434848pt;}
.lsa{letter-spacing:0.720000pt;}
.ls2{letter-spacing:0.746667pt;}
.ls0{letter-spacing:0.960000pt;}
.ls6{letter-spacing:1.493333pt;}
.ls9{letter-spacing:2.592000pt;}
.ls8{letter-spacing:253.036787pt;}
.ls5{letter-spacing:254.296553pt;}
.lsc{letter-spacing:599.493371pt;}
.ws0{word-spacing:-44.160000pt;}
.ws6{word-spacing:-22.101333pt;}
.wsc{word-spacing:-13.584000pt;}
.ws1{word-spacing:-11.050667pt;}
.ws8{word-spacing:-10.304000pt;}
.ws9{word-spacing:-9.893333pt;}
.wsa{word-spacing:-7.773333pt;}
.ws7{word-spacing:-1.493333pt;}
.ws4{word-spacing:-0.960000pt;}
.ws5{word-spacing:-0.746667pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:0.096000pt;}
.wsb{word-spacing:0.192000pt;}
.ws3{word-spacing:1.600000pt;}
._0{margin-left:-90.880001pt;}
._2{margin-left:-44.111982pt;}
._3{margin-left:-19.120010pt;}
._a{margin-left:-10.289043pt;}
._c{margin-left:-8.548267pt;}
._8{margin-left:-6.800000pt;}
._e{margin-left:-5.829333pt;}
._4{margin-left:-4.800000pt;}
._d{margin-left:-3.714667pt;}
._7{margin-left:-2.800000pt;}
._5{margin-left:-1.440000pt;}
._6{width:0.960000pt;}
._b{width:1.991467pt;}
._9{width:12.230400pt;}
._1{width:286.511993pt;}
.fs3{font-size:21.765333pt;}
.fs2{font-size:27.984000pt;}
.fs6{font-size:29.333333pt;}
.fs4{font-size:37.333333pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:74.666667pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y164{bottom:29.893589pt;}
.yce{bottom:29.913621pt;}
.y12f{bottom:29.981484pt;}
.y110{bottom:29.985593pt;}
.yed{bottom:30.005618pt;}
.y95{bottom:30.041466pt;}
.y46{bottom:30.057596pt;}
.y20{bottom:30.205468pt;}
.y2{bottom:30.236132pt;}
.y163{bottom:43.062922pt;}
.y1f{bottom:43.542802pt;}
.ycd{bottom:47.157621pt;}
.y12e{bottom:47.225484pt;}
.y10f{bottom:47.229593pt;}
.yec{bottom:47.249618pt;}
.y94{bottom:47.285466pt;}
.y45{bottom:47.301596pt;}
.y162{bottom:56.232255pt;}
.y1e{bottom:56.880135pt;}
.ycc{bottom:64.401621pt;}
.y12d{bottom:64.469484pt;}
.y10e{bottom:64.473593pt;}
.y5d{bottom:64.473621pt;}
.yeb{bottom:64.493618pt;}
.y93{bottom:64.529466pt;}
.y44{bottom:64.545596pt;}
.y161{bottom:69.401589pt;}
.y1d{bottom:70.217468pt;}
.ycb{bottom:81.645621pt;}
.y12c{bottom:81.713484pt;}
.y10d{bottom:81.717593pt;}
.y5c{bottom:81.717621pt;}
.yea{bottom:81.737618pt;}
.y92{bottom:81.773466pt;}
.y43{bottom:81.789596pt;}
.y160{bottom:82.570922pt;}
.y1c{bottom:83.554802pt;}
.y1b{bottom:96.892135pt;}
.yca{bottom:98.889621pt;}
.y12b{bottom:98.957484pt;}
.y10c{bottom:98.961593pt;}
.y5b{bottom:98.961621pt;}
.y91{bottom:99.017466pt;}
.y42{bottom:99.033596pt;}
.y15f{bottom:108.918922pt;}
.y1a{bottom:110.229468pt;}
.yc9{bottom:116.133621pt;}
.y12a{bottom:116.201484pt;}
.y10b{bottom:116.205593pt;}
.y5a{bottom:116.205621pt;}
.ye9{bottom:116.213618pt;}
.y90{bottom:116.261466pt;}
.y41{bottom:116.277596pt;}
.y15e{bottom:122.088255pt;}
.y19{bottom:123.566802pt;}
.yc8{bottom:133.377621pt;}
.y129{bottom:133.445484pt;}
.y10a{bottom:133.449593pt;}
.y59{bottom:133.449621pt;}
.ye8{bottom:133.457618pt;}
.y8f{bottom:133.505466pt;}
.y40{bottom:133.521596pt;}
.y15d{bottom:135.257589pt;}
.y18{bottom:136.904135pt;}
.yc7{bottom:150.621621pt;}
.y128{bottom:150.689484pt;}
.y109{bottom:150.693593pt;}
.y58{bottom:150.693621pt;}
.ye7{bottom:150.701618pt;}
.y8e{bottom:150.749466pt;}
.y15c{bottom:161.605589pt;}
.y17{bottom:166.677470pt;}
.yc6{bottom:167.865621pt;}
.y127{bottom:167.933484pt;}
.y108{bottom:167.937593pt;}
.y57{bottom:167.937621pt;}
.ye6{bottom:167.945618pt;}
.y8d{bottom:167.993466pt;}
.y3f{bottom:168.001597pt;}
.y15b{bottom:174.774922pt;}
.y16{bottom:176.898933pt;}
.yc5{bottom:185.109621pt;}
.y126{bottom:185.177484pt;}
.y107{bottom:185.181593pt;}
.y56{bottom:185.181621pt;}
.ye5{bottom:185.189618pt;}
.y8c{bottom:185.237466pt;}
.y15a{bottom:187.944255pt;}
.y15{bottom:193.344137pt;}
.yc4{bottom:202.353621pt;}
.y125{bottom:202.421484pt;}
.y106{bottom:202.425593pt;}
.y55{bottom:202.425621pt;}
.ye4{bottom:202.433618pt;}
.y8b{bottom:202.481466pt;}
.y14{bottom:206.677470pt;}
.y159{bottom:214.292255pt;}
.y13{bottom:216.898933pt;}
.yc3{bottom:219.597621pt;}
.y3e{bottom:219.605641pt;}
.y124{bottom:219.665484pt;}
.y105{bottom:219.669593pt;}
.y54{bottom:219.669621pt;}
.y158{bottom:227.461589pt;}
.y12{bottom:233.344137pt;}
.yc2{bottom:236.841621pt;}
.y3d{bottom:236.849641pt;}
.y123{bottom:236.909484pt;}
.ye3{bottom:236.909618pt;}
.y104{bottom:236.913593pt;}
.y53{bottom:236.913621pt;}
.y8a{bottom:236.961466pt;}
.y157{bottom:240.630922pt;}
.y11{bottom:246.677592pt;}
.y156{bottom:253.800255pt;}
.yc1{bottom:254.085621pt;}
.y3c{bottom:254.093641pt;}
.y122{bottom:254.153484pt;}
.ye2{bottom:254.153618pt;}
.y103{bottom:254.157593pt;}
.y155{bottom:266.969589pt;}
.yc0{bottom:271.329621pt;}
.y3b{bottom:271.337641pt;}
.y121{bottom:271.397484pt;}
.ye1{bottom:271.397618pt;}
.y102{bottom:271.401593pt;}
.y78{bottom:271.441610pt;}
.ybf{bottom:288.573621pt;}
.y3a{bottom:288.581641pt;}
.y89{bottom:288.641584pt;}
.ye0{bottom:288.641618pt;}
.y101{bottom:288.645593pt;}
.y154{bottom:293.317589pt;}
.ybe{bottom:305.817621pt;}
.y39{bottom:305.825641pt;}
.y120{bottom:305.873484pt;}
.y88{bottom:305.885584pt;}
.ydf{bottom:305.885618pt;}
.y100{bottom:305.889593pt;}
.y153{bottom:306.486922pt;}
.y73{bottom:310.497221pt;}
.y152{bottom:319.656255pt;}
.y7e{bottom:322.147741pt;}
.y7c{bottom:322.265074pt;}
.y72{bottom:322.499887pt;}
.ybd{bottom:323.061621pt;}
.y38{bottom:323.069641pt;}
.y11f{bottom:323.117484pt;}
.y87{bottom:323.129584pt;}
.yff{bottom:323.133593pt;}
.y67{bottom:327.073221pt;}
.y7d{bottom:331.483074pt;}
.y7b{bottom:331.600407pt;}
.y151{bottom:332.825589pt;}
.y66{bottom:339.075887pt;}
.ybc{bottom:340.305621pt;}
.y37{bottom:340.313641pt;}
.y11e{bottom:340.361484pt;}
.yde{bottom:340.361618pt;}
.y138{bottom:340.369452pt;}
.y86{bottom:340.373584pt;}
.yfe{bottom:340.377593pt;}
.y150{bottom:345.994922pt;}
.y71{bottom:346.495887pt;}
.ybb{bottom:357.549621pt;}
.y36{bottom:357.557641pt;}
.y11d{bottom:357.605484pt;}
.ydd{bottom:357.605618pt;}
.y137{bottom:357.613452pt;}
.y85{bottom:357.617584pt;}
.yfd{bottom:357.621593pt;}
.y6f{bottom:358.115887pt;}
.y63{bottom:358.134550pt;}
.y70{bottom:358.498554pt;}
.y14f{bottom:359.164255pt;}
.y77{bottom:370.258933pt;}
.y7a{bottom:370.342407pt;}
.yba{bottom:374.793621pt;}
.y35{bottom:374.801641pt;}
.y11c{bottom:374.849484pt;}
.ydc{bottom:374.849618pt;}
.y136{bottom:374.857452pt;}
.y84{bottom:374.861584pt;}
.yfc{bottom:374.865593pt;}
.y76{bottom:379.594266pt;}
.y14e{bottom:385.512255pt;}
.yb9{bottom:392.037621pt;}
.y34{bottom:392.045641pt;}
.y11b{bottom:392.093484pt;}
.ydb{bottom:392.093618pt;}
.y135{bottom:392.101452pt;}
.y83{bottom:392.105584pt;}
.yfb{bottom:392.109593pt;}
.y14d{bottom:398.681589pt;}
.y6e{bottom:406.117221pt;}
.y62{bottom:406.135883pt;}
.yb8{bottom:409.281621pt;}
.y33{bottom:409.289641pt;}
.y11a{bottom:409.337484pt;}
.yda{bottom:409.337618pt;}
.y134{bottom:409.345452pt;}
.y82{bottom:409.349584pt;}
.yfa{bottom:409.353593pt;}
.y14c{bottom:411.850922pt;}
.y6d{bottom:418.119887pt;}
.y10{bottom:418.919067pt;}
.y75{bottom:420.162266pt;}
.yb7{bottom:426.525621pt;}
.y32{bottom:426.533641pt;}
.y119{bottom:426.581484pt;}
.y133{bottom:426.589452pt;}
.y81{bottom:426.593584pt;}
.yf9{bottom:426.597593pt;}
.y74{bottom:429.497599pt;}
.y6c{bottom:430.122554pt;}
.yf{bottom:434.919067pt;}
.y79{bottom:437.719076pt;}
.y14b{bottom:438.198922pt;}
.y6b{bottom:442.125221pt;}
.yb6{bottom:443.769621pt;}
.y31{bottom:443.777641pt;}
.yd9{bottom:443.813618pt;}
.y118{bottom:443.825484pt;}
.y132{bottom:443.833452pt;}
.y80{bottom:443.837584pt;}
.yf8{bottom:443.841593pt;}
.ye{bottom:450.919067pt;}
.y14a{bottom:451.368255pt;}
.y6a{bottom:454.127887pt;}
.y61{bottom:454.137216pt;}
.yb5{bottom:461.013621pt;}
.y30{bottom:461.021641pt;}
.yd8{bottom:461.057618pt;}
.y117{bottom:461.069484pt;}
.y131{bottom:461.077452pt;}
.y7f{bottom:461.081584pt;}
.y149{bottom:464.537589pt;}
.y60{bottom:466.139883pt;}
.yd{bottom:466.919067pt;}
.y148{bottom:477.706922pt;}
.yb4{bottom:478.257621pt;}
.y2f{bottom:478.265641pt;}
.yd7{bottom:478.301618pt;}
.y116{bottom:478.313484pt;}
.yf7{bottom:478.321452pt;}
.yc{bottom:482.919067pt;}
.y69{bottom:490.126554pt;}
.y5f{bottom:490.135883pt;}
.y65{bottom:491.078547pt;}
.yb3{bottom:495.501621pt;}
.y2e{bottom:495.509641pt;}
.yd6{bottom:495.545618pt;}
.y115{bottom:495.557484pt;}
.y96{bottom:495.561605pt;}
.yb{bottom:498.919067pt;}
.y68{bottom:502.129221pt;}
.y5e{bottom:502.138550pt;}
.y64{bottom:503.081214pt;}
.y147{bottom:504.054922pt;}
.yb2{bottom:512.745621pt;}
.y2d{bottom:512.753641pt;}
.yd5{bottom:512.789618pt;}
.y130{bottom:512.801473pt;}
.y114{bottom:512.801484pt;}
.ya{bottom:514.919067pt;}
.y146{bottom:517.224255pt;}
.yb1{bottom:529.989621pt;}
.y2c{bottom:529.997641pt;}
.yf6{bottom:530.025621pt;}
.yd4{bottom:530.033618pt;}
.y145{bottom:530.393589pt;}
.y9{bottom:530.919067pt;}
.y9b{bottom:538.902548pt;}
.ya7{bottom:539.275883pt;}
.y8{bottom:546.919067pt;}
.y52{bottom:547.233621pt;}
.y2b{bottom:547.241641pt;}
.yf5{bottom:547.269621pt;}
.y113{bottom:547.277484pt;}
.yd3{bottom:547.277618pt;}
.yb0{bottom:551.854381pt;}
.y144{bottom:556.741589pt;}
.y7{bottom:562.919067pt;}
.y51{bottom:564.477621pt;}
.y2a{bottom:564.485641pt;}
.y112{bottom:564.521484pt;}
.y143{bottom:569.910922pt;}
.ya6{bottom:575.274549pt;}
.y6{bottom:578.919067pt;}
.y50{bottom:581.721621pt;}
.y29{bottom:581.729641pt;}
.yf4{bottom:581.745621pt;}
.yd2{bottom:581.753618pt;}
.y142{bottom:583.080255pt;}
.ya5{bottom:587.277216pt;}
.y5{bottom:594.919067pt;}
.y141{bottom:596.249589pt;}
.y4f{bottom:598.965621pt;}
.y28{bottom:598.973641pt;}
.yf3{bottom:598.989621pt;}
.yd1{bottom:598.997618pt;}
.y111{bottom:599.001587pt;}
.y9f{bottom:602.145216pt;}
.y9e{bottom:614.147883pt;}
.yad{bottom:615.654382pt;}
.y4e{bottom:616.209621pt;}
.y27{bottom:616.217641pt;}
.yf2{bottom:616.233621pt;}
.yd0{bottom:616.241618pt;}
.y140{bottom:622.597589pt;}
.yac{bottom:624.989715pt;}
.y4d{bottom:633.453621pt;}
.y26{bottom:633.461641pt;}
.yf1{bottom:633.477621pt;}
.yab{bottom:634.325049pt;}
.ya4{bottom:634.895883pt;}
.y13f{bottom:635.766922pt;}
.yaf{bottom:641.357715pt;}
.ya3{bottom:646.898549pt;}
.y4{bottom:646.981200pt;}
.y13e{bottom:648.936255pt;}
.yae{bottom:650.693048pt;}
.y4c{bottom:650.697621pt;}
.y25{bottom:650.705641pt;}
.ycf{bottom:650.721476pt;}
.y13d{bottom:662.105589pt;}
.y4b{bottom:667.941621pt;}
.y24{bottom:667.949641pt;}
.yf0{bottom:667.953621pt;}
.y9a{bottom:670.903878pt;}
.y13c{bottom:675.274922pt;}
.ya2{bottom:682.897216pt;}
.y99{bottom:682.906544pt;}
.y4a{bottom:685.185621pt;}
.y23{bottom:685.193641pt;}
.yef{bottom:685.197621pt;}
.y3{bottom:690.981200pt;}
.yaa{bottom:696.504382pt;}
.y13b{bottom:701.622922pt;}
.y49{bottom:702.429621pt;}
.y22{bottom:702.437641pt;}
.yee{bottom:702.441621pt;}
.ya9{bottom:705.839715pt;}
.y13a{bottom:714.792255pt;}
.ya8{bottom:715.175049pt;}
.ya1{bottom:718.895883pt;}
.y98{bottom:718.905211pt;}
.y48{bottom:719.673621pt;}
.y21{bottom:719.681641pt;}
.y9d{bottom:719.847881pt;}
.y139{bottom:727.961589pt;}
.ya0{bottom:730.898549pt;}
.y97{bottom:730.907878pt;}
.y9c{bottom:731.850548pt;}
.y1{bottom:734.981200pt;}
.y47{bottom:736.917621pt;}
.h8{height:21.783993pt;}
.h5{height:21.784032pt;}
.h6{height:21.784520pt;}
.hd{height:26.708000pt;}
.hc{height:33.992000pt;}
.h7{height:34.216000pt;}
.ha{height:36.960000pt;}
.h9{height:43.235437pt;}
.h3{height:43.992000pt;}
.he{height:45.552000pt;}
.hb{height:68.432000pt;}
.h2{height:115.200000pt;}
.h4{height:146.640000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.x0{left:0.000000pt;}
.x1{left:27.401333pt;}
.x2{left:30.236132pt;}
.xe{left:61.595874pt;}
.xf{left:63.705208pt;}
.x10{left:70.117208pt;}
.xd{left:72.105208pt;}
.x3{left:112.921344pt;}
.x4{left:116.535472pt;}
.x5{left:125.872797pt;}
.x1d{left:138.235997pt;}
.x1c{left:147.505330pt;}
.x29{left:149.694391pt;}
.x2a{left:156.106391pt;}
.x28{left:158.094391pt;}
.x6{left:202.551472pt;}
.xa{left:215.213200pt;}
.x9{left:216.529200pt;}
.xb{left:217.779867pt;}
.xc{left:222.035867pt;}
.x8{left:226.777200pt;}
.x7{left:227.943867pt;}
.x31{left:231.615449pt;}
.x1f{left:290.615330pt;}
.x1e{left:296.107996pt;}
.x26{left:299.307724pt;}
.x25{left:300.623724pt;}
.x27{left:306.130391pt;}
.x24{left:310.871724pt;}
.x23{left:312.038391pt;}
.x19{left:326.802540pt;}
.x1b{left:333.018540pt;}
.x18{left:337.311873pt;}
.x1a{left:339.617207pt;}
.x20{left:341.448283pt;}
.x2e{left:373.229448pt;}
.x32{left:377.900781pt;}
.x30{left:378.971448pt;}
.x2f{left:381.853448pt;}
.x2d{left:387.375448pt;}
.x21{left:392.044678pt;}
.x22{left:398.160680pt;}
.x2b{left:431.794391pt;}
.x2c{left:441.146391pt;}
.x11{left:443.245208pt;}
.x14{left:445.149208pt;}
.x13{left:446.465208pt;}
.x16{left:447.706540pt;}
.x17{left:451.962540pt;}
.x12{left:456.713208pt;}
.x15{left:467.390540pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
